Skip to content

Commit

Permalink
Switch to only testing trio in one environment
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith committed Apr 27, 2021
1 parent a5f696b commit 2a2a90c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[tox]
envlist = py27, py35, py36, py37, py38, py39, py39-notrio, pep8, pypy
envlist = py27, py35, py36, py37, py38, py39, py39-trio, pep8, pypy

[testenv]
usedevelop = True
sitepackages = False
deps =
.[doc]
pytest
trio
typeguard;python_version>='3.0'
commands =
py{27,py}: pytest --ignore='tenacity/tests/test_asyncio.py' {posargs}
py3{5,6,7,8,9}: pytest {posargs}
py3{5,6,7,8,9}: sphinx-build -a -E -W -b doctest doc/source doc/build
py3{5,6,7,8,9}: sphinx-build -a -E -W -b html doc/source doc/build

[testenv:py39-notrio]
[testenv:py39-trio]
deps =
.[doc]
pytest
trio
typeguard;python_version>='3.0'
commands = pytest {posargs}

Expand Down

0 comments on commit 2a2a90c

Please sign in to comment.