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) · 695 Bytes
/
tox.ini
File metadata and controls
37 lines (32 loc) · 695 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{312,313,314}-pyqt5_515
; qt 6.8
py{312}-pyqt6_68
py{312}-pyside6_68
; qt 6-newest
py{312,313,314}-{pyqt6,pyside6}
[base]
deps =
pytest
pytest-qt
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_515: PyQt5
pyqt6_68: PyQt6~=6.8.0
pyqt6_68: PyQt6-Qt6~=6.8.0
pyside6_68: PySide6-Essentials~=6.8.0
pyqt6: PyQt6
pyside6: PySide6-Essentials
commands=
python -c "import pyqtgraph as pg; pg.systemInfo()"
pytest -n auto {posargs:}