make tox use expected python version

This commit is contained in:
Cyril Jouve 2021-10-17 18:58:53 +02:00
parent 4a46aa39a5
commit 71ac1a17d8
No known key found for this signature in database
GPG Key ID: 226875D8A3B15FA6
2 changed files with 2 additions and 2 deletions

View File

@ -54,5 +54,5 @@ jobs:
- name: Install tox - name: Install tox
run: pip install tox run: pip install tox
- name: Run tests - name: Run tests
run: tox -e ${{ matrix.python }} run: tox -e py$(sed -e 's/\.//' <<< ${{ matrix.python }})
timeout-minutes: 5 timeout-minutes: 5

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = {3.6,3.7,3.8,3.9,3.10} envlist = py{36,37,38,39,310}
[testenv] [testenv]
commands = make check commands = make check