Chore: Fix tox (#718)

This commit is contained in:
Jim Brännlund 2023-08-20 18:21:52 +02:00 committed by GitHub
parent 112c48f457
commit eaacc0fc3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 18 deletions

View File

@ -89,22 +89,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
include:
- os: ubuntu-latest
python-version: "3.10"
with-coverage: true
- os: ubuntu-latest
python-version: pypy3.9
tox-env: py3.9
- os: windows-latest
python-version: pypy3.9
tox-env: py3.9
- os: macos-latest
python-version: pypy3.9
tox-env: py3.9
- os: ubuntu-latest
python-version: 3.11-dev
tox-env: devel
@ -175,12 +165,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
include:
- python-version: "3.10"
with-coverage: true
- python-version: pypy3.9
tox-env: py3.9
- python-version: 3.11-dev
tox-env: devel
@ -247,10 +235,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
include:
- python-version: pypy3.9
tox-env: py3.9
- python-version: 3.11-dev
tox-env: devel

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py{3.7, 3.8, 3.9, 3.10, py3.9}, docs, linting
envlist = {3.7, 3.8, 3.9, 3.10, 3.10-cov, pypy3.9}, docs, linting
isolated_build = True
[testenv]