Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ script:
# we add or remove a tox environment.
matrix:
include:
- env: TOXENV=py36,py37,py38,py39,py310,black,mypy
- env: TOXENV=py36,py37,py38,py39,py310,py311,black,mypy
arch: amd64
- env: TOXENV=py36,py38,py39,py310
# Arm is slow so we use two separated jobs for it
- env: TOXENV=py36,py37,py38
arch: arm64
- env: TOXENV=py36,py37,py38,py39,py310
- env: TOXENV=py39,py310,py311
arch: arm64
- env: TOXENV=py36,py37,py38,py39,py310,py311
arch: ppc64le
- env: TOXENV=py36,py37,py38,py39,py310
- env: TOXENV=py36,py37,py38,py39,py310,py311
arch: s390x
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = black,mypy,py{36,37,38,39,310}
envlist = black,mypy,py{36,37,38,39,310,311}
skipsdist = True

[testenv]
Expand All @@ -12,7 +12,7 @@ deps =

[testenv:black]
deps=black
commands=black --check --diff .
commands=black --check --diff --extend-exclude=".tox|test" ./

[testenv:mypy]
deps=mypy
Expand Down