blob: 49603ef64bdbe4ef3e0ca35c928bcea3e1926e56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[tox]
envlist = py38,py39,py310,py311
skipsdist=True
[testenv]
passenv=DISPLAY # Necessary for the spawned GeckoDriver process to connect to
# the appropriate display.
deps =
-r{toxinidir}/../../tools/requirements_pytest.txt
-r{toxinidir}/requirements.txt
commands = pytest -vv {posargs}
|