blob: 50a12cbf2b19e302f94aa395df32506c7b69d5a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[tox]
env_list =
py{36, 37, 38, 39, 310, 311}
minversion = 4.4.8
[testenv]
description = run the tests with all dependencies installed
package = wheel
wheel_build_env = .pkg
deps =
lxml
html5lib
soupsieve>=1.2
pytest>=6
commands =
pytest {tty:--color=yes} {posargs}
[testenv:oldpy]
description = run the tests on a very old version of Python without any dependencies installed
basepython = py36
package = wheel
wheel_build_env = .pkg
deps =
pytest>=6
commands =
pytest {tty:--color=yes} {posargs}
|