We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05cd9b4 commit 7ccbe66Copy full SHA for 7ccbe66
.github/workflows/continuous_integration.yml
@@ -50,6 +50,11 @@ jobs:
50
uses: codecov/codecov-action@v5
51
with:
52
file: coverage.xml
53
+ - name: Upload test results to Codecov
54
+ if: ${{ !cancelled() }}
55
+ uses: codecov/test-results-action@v1
56
+ with:
57
+ token: ${{ secrets.CODECOV_TOKEN }}
58
59
linting:
60
name: Linting
tox.ini
@@ -45,7 +45,7 @@ allowlist_externals = flit
45
commands = flit publish --setup-py
46
47
[pytest]
48
-addopts = -v --cov-branch --cov=arrow --cov-fail-under=99 --cov-report=term-missing --cov-report=xml
+addopts = -v --cov-branch --cov=arrow --cov-fail-under=99 --cov-report=term-missing --cov-report=xml --junitxml=junit.xml -o junit_family=legacy
49
testpaths = tests
[isort]
0 commit comments