Skip to content

Commit 6f321a5

Browse files
committed
fix: tox github action command
1 parent dde2379 commit 6f321a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run-tests.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ jobs:
5252
env:
5353
FORCE_COLOR: 1
5454
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' || '' }}
55+
run: |
56+
TOX_ENV=$(echo "py${{ matrix.python-version }}" | tr -d .)
57+
tox -e $TOX_ENV
5658
5759
- name: Upload coverage reports to Codecov
5860
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)