Skip to content

Commit 3e0321b

Browse files
committed
cov file
1 parent 9338780 commit 3e0321b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/database.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ jobs:
174174
- name: Upload coverage to Codecov
175175
uses: codecov/codecov-action@v1
176176
with:
177-
files: /tmp/test_coverage.xml
178177
flags: unittests
179178
name: codecov-pandas
180179
fail_ci_if_error: true

.github/workflows/posix.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
- master
99
- 1.2.x
1010

11+
env:
12+
PYTEST_WORKERS: "auto"
13+
PANDAS_CI: 1
14+
1115
jobs:
1216
pytest:
1317
runs-on: ubuntu-latest
@@ -24,7 +28,6 @@ jobs:
2428
fail-fast: true
2529
env:
2630
COVERAGE: true
27-
PYTEST_WORKERS: "auto"
2831
ENV_FILE: ${{ matrix.env-file[0] }}
2932
PATTERN: ${{ matrix.env-file[1] }}
3033
EXTRA_APT: ${{ matrix.env-file[2] }}
@@ -76,7 +79,6 @@ jobs:
7679
- name: Upload coverage to Codecov
7780
uses: codecov/codecov-action@v1
7881
with:
79-
files: /tmp/test_coverage.xml
8082
flags: unittests
8183
name: codecov-pandas
8284
fail_ci_if_error: true

ci/run_tests.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ if [[ "not network" == *"$PATTERN"* ]]; then
1010
fi
1111

1212
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"
1514
fi
1615

1716
# If no X server is found, we use xvfb to emulate it

0 commit comments

Comments
 (0)