-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (31 loc) · 646 Bytes
/
tox.ini
File metadata and controls
35 lines (31 loc) · 646 Bytes
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
[tox]
envlist = py{39,310,311,312,313}-{pyqt5,pyside6,pyqt6},py39-pyside60,py39-pyqt61
[testenv]
deps=
pytest
pyside6: pyside6
pyside60: pyside6<6.1
pyqt5: pyqt5
pyqt6: pyqt6
pyqt61: pyqt6<6.2
pyqt61: pyqt6-sip<13.6
commands=
pytest --color=yes {posargs}
setenv=
pyside6: PYTEST_QT_API=pyside6
pyqt5: PYTEST_QT_API=pyqt5
pyqt6: PYTEST_QT_API=pyqt6
QT_QPA_PLATFORM=offscreen
passenv=
DISPLAY
XAUTHORITY
COLUMNS
[testenv:docs]
usedevelop = True
deps =
sphinx
sphinx_rtd_theme
commands =
sphinx-build -W --keep-going -b html docs docs/_build
[flake8]
max-line-length = 120