File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 59
59
tox --verbose --verbose -e
60
60
"${{ matrix.python-version }}-unit" -vv
61
61
62
+ - name : Upload test results to Codecov
63
+ if : ${{ !cancelled() }} # Run even if tests fail
64
+ uses : codecov/test-results-action@v1
65
+ with :
66
+ token : ${{ secrets.CODECOV_TOKEN }}
67
+
62
68
- uses : codecov/codecov-action@v5
63
69
with :
64
70
fail_ci_if_error : false # optional (default = false)
Original file line number Diff line number Diff line change 42
42
integration: -r{toxinidir}/requirements/test-integration.txt
43
43
44
44
commands =
45
- unit: python -bb -m pytest -rxs -xv --cov =kombu --cov-report =xml --no-cov-on-fail --cov-report term {posargs}
45
+ unit: python -bb -m pytest -rxs -xv --cov =kombu --cov-report =xml --no-cov-on-fail --cov-report term -- junitxml =junit.xml -o junit_family =legacy {posargs}
46
46
integration-py-amqp: pytest -xv -E py-amqp t/integration -n auto --reruns 2 --reruns-delay 1 {posargs}
47
47
integration-redis: pytest -xv -E redis t/integration -n auto --reruns 2 --reruns-delay 1 {posargs}
48
48
integration-mongodb: pytest -xv -E mongodb t/integration -n auto --reruns 2 --reruns-delay 1 {posargs}
You can’t perform that action at this time.
0 commit comments