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 b06ee75 commit 0a69ff1Copy full SHA for 0a69ff1
.github/workflows/ci-tests.yml
@@ -65,7 +65,13 @@ jobs:
65
python-version: ${{ matrix.py }}
66
architecture: ${{ matrix.architecture }}
67
- run: pip install tox
68
- - name: Running tox
+ - name: Running tox with specific toxenv
69
+ if: ${{ matrix.toxenv != '' }}
70
+ env:
71
+ TOXENV: ${{ matrix.toxenv }}
72
+ run: tox
73
+ - name: Running tox for current python version
74
+ if: ${{ matrix.toxenv == '' }}
75
run: tox -e py
76
coverage:
77
runs-on: ubuntu-latest
0 commit comments