We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ede2f commit 2b58db6Copy full SHA for 2b58db6
2 files changed
.github/workflows/test.yml
@@ -28,4 +28,8 @@ jobs:
28
python -m pip install tox tox-gh-actions==2.1.0
29
- name: Run test via Tox
30
run: tox --skip-missing-interpreters
31
- - uses: codecov/codecov-action@v1
+ env:
32
+ COVERAGE_XML_PATH: ${{ runner.temp }}
33
+ - uses: codecov/codecov-action@v2
34
+ with:
35
+ directory: ${{ runner.temp }}
tox.ini
@@ -13,7 +13,7 @@ deps =
13
whitelist_externals = make
14
commands = make clean-cldr test
15
setenv =
16
- PYTEST_FLAGS=--cov=babel
+ PYTEST_FLAGS=--cov=babel --cov-report=xml:{env:COVERAGE_XML_PATH:.coverage_cache}/coverage.{envname}.xml
17
passenv =
18
BABEL_*
19
PYTEST_*
0 commit comments