Fix extracting tox env with -dev Python versions

This commit is contained in:
Bruno Alla 2024-09-10 19:06:24 +01:00
parent 6f80b58220
commit 209300ddf2
No known key found for this signature in database

View File

@ -37,7 +37,7 @@ jobs:
run: python -m pip install --upgrade codecov tox
- name: Run tox targets for ${{ matrix.python-version }}
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d . | cut -f 1 -d '-')
- name: Run extra tox targets
if: ${{ matrix.python-version == '3.9' }}