forked from pyqtgraph/pyqtgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (32 loc) · 721 Bytes
/
tox.ini
File metadata and controls
37 lines (32 loc) · 721 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
36
37
[tox]
envlist =
; qt 5.15.x
py{37,38,39}-{pyqt5,pyside2}_515
; qt 5.12.x
py{37}-{pyqt5,pyside2}_512
; py38-pyside2_512 doesn't work due to PYSIDE-1140
py38-pyqt5_512
; qt 6
py{37,38,39}-{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}
pyside2_512: pyside2==5.12.6
pyqt5_512: pyqt5==5.12.3
pyside2_515: pyside2
pyqt5_515: pyqt5
pyqt6: pyqt6
pyside6: pyside6
commands=
python -c "import pyqtgraph as pg; pg.systemInfo()"
pytest -n auto {posargs:}