Skip to content

Commit

Permalink
use toxenv when it's defined to fix issues on pypy windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Feb 27, 2024
1 parent b06ee75 commit 0a69ff1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@ jobs:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
- run: pip install tox
- name: Running tox
- name: Running tox with specific toxenv
if: ${{ matrix.toxenv != '' }}
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
- name: Running tox for current python version
if: ${{ matrix.toxenv == '' }}
run: tox -e py
coverage:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0a69ff1

Please sign in to comment.