-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
tox.ini
50 lines (44 loc) · 1.14 KB
/
tox.ini
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
isolated_build = true
envlist = py39, py310, py311, py312, style, doc
[testenv:{py39,py310,py311,py312}]
deps =
-rtest/requirements.txt
coverage
pytest-timeout
pyautogui; sys_platform != "win32"
pywin32; sys_platform == "win32"
passenv = DISPLAY,XAUTHORITY
setenv =
DISPLAY = :0
QT_DEBUG_PLUGINS = 1
commands =
coverage run --rcfile=pyproject.toml --module pytest
coverage report --rcfile=pyproject.toml
[testenv:style]
deps =
black
ruff
commands =
black --config pyproject.toml --check .
ruff check ./src
[testenv:doc]
deps =
-rdoc/requirements.txt
commands =
sphinx-build -b html doc doc/_build/html
[gh-actions]
python =
3.9: py39, style, doc
3.10: py310
3.11: py311
3.12: py312
[pytest]
python_classes =
testpaths = test
addopts = -vv --color=yes --code-highlight=yes --junitxml=test-reports/unit-tests-results.xml
timeout = 600