File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,6 @@ jobs:
174
174
- name : Upload coverage to Codecov
175
175
uses : codecov/codecov-action@v1
176
176
with :
177
- files : /tmp/test_coverage.xml
178
177
flags : unittests
179
178
name : codecov-pandas
180
179
fail_ci_if_error : true
Original file line number Diff line number Diff line change 8
8
- master
9
9
- 1.2.x
10
10
11
+ env :
12
+ PYTEST_WORKERS : " auto"
13
+ PANDAS_CI : 1
14
+
11
15
jobs :
12
16
pytest :
13
17
runs-on : ubuntu-latest
24
28
fail-fast : true
25
29
env :
26
30
COVERAGE : true
27
- PYTEST_WORKERS : " auto"
28
31
ENV_FILE : ${{ matrix.env-file[0] }}
29
32
PATTERN : ${{ matrix.env-file[1] }}
30
33
EXTRA_APT : ${{ matrix.env-file[2] }}
76
79
- name : Upload coverage to Codecov
77
80
uses : codecov/codecov-action@v1
78
81
with :
79
- files : /tmp/test_coverage.xml
80
82
flags : unittests
81
83
name : codecov-pandas
82
84
fail_ci_if_error : true
Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ if [[ "not network" == *"$PATTERN"* ]]; then
10
10
fi
11
11
12
12
if [ " $COVERAGE " ]; then
13
- COVERAGE_FNAME=" /tmp/test_coverage.xml"
14
- COVERAGE=" -s --cov=pandas --cov-report=xml:$COVERAGE_FNAME "
13
+ COVERAGE=" -s --cov=pandas --cov-report=xml"
15
14
fi
16
15
17
16
# If no X server is found, we use xvfb to emulate it
You can’t perform that action at this time.
0 commit comments