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 dde2379 commit 6f321a5Copy full SHA for 6f321a5
.github/workflows/run-tests.yaml
@@ -52,7 +52,9 @@ jobs:
52
env:
53
FORCE_COLOR: 1
54
PYTEST_CI_ARGS: --cov-report=xml --cov-report=html --junitxml=test_artifacts/test_report.xml --color=yes
55
- run: tox ${{ matrix.python-version == '3.12' && '--skip-missing-interpreters=true' || '' }}
+ run: |
56
+ TOX_ENV=$(echo "py${{ matrix.python-version }}" | tr -d .)
57
+ tox -e $TOX_ENV
58
59
- name: Upload coverage reports to Codecov
60
uses: codecov/codecov-action@v3
0 commit comments