forked from pyqtgraph/pyqtgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
40 lines (34 loc) · 790 Bytes
/
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
[tox]
envlist =
; qt 5.15.x
py{38,39,310}-{pyqt5,pyside2}_515
; py38-pyside2_512 doesn't work due to PYSIDE-1140
py38-pyqt5_512
; qt 6.2
py{38,39,310}-{pyqt6,pyside6}_62
; qt 6-newest
py{38,39,310}-{pyqt6,pyside6}
[base]
deps =
pytest
pytest-xdist
numpy
scipy
pyopengl
h5py
[testenv]
passenv = DISPLAY XAUTHORITY, PYTHON_VERSION
setenv = PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
deps=
{[base]deps}
pyqt5_512: pyqt5~=5.12.0
pyside2_515: pyside2
pyqt5_515: pyqt5
pyqt6_62: pyqt6~=6.2.0
pyqt6_62: PyQt6-Qt6~=6.2.0
pyside6_62: pyside6~=6.2.0
pyqt6: pyqt6
pyside6: pyside6
commands=
python -c "import pyqtgraph as pg; pg.systemInfo()"
pytest -n auto {posargs:}