Skip to content

Commit 0a69ff1

Browse files
committed
use toxenv when it's defined to fix issues on pypy windows
1 parent b06ee75 commit 0a69ff1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ jobs:
6565
python-version: ${{ matrix.py }}
6666
architecture: ${{ matrix.architecture }}
6767
- run: pip install tox
68-
- name: Running tox
68+
- 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 == '' }}
6975
run: tox -e py
7076
coverage:
7177
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)