forked from pyqtgraph/pyqtgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
49 lines (41 loc) · 862 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
41
42
43
44
45
46
47
48
49
[tox]
envlist =
; qt latest
py{37,38}-{pyqt5,pyside2}_latest
; qt 5.12.x (LTS)
py{36,37}-{pyqt5,pyside2}_512
; qt 5.9.7 (LTS)
py36-{pyqt5,pyside2}_59_conda
; qt 4.8.7
py27-{pyqt4,pyside}_conda
[base]
deps =
pytest
numpy
scipy
pyopengl
flake8
six
coverage
[testenv]
passenv = DISPLAY XAUTHORITY
setenv = PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
deps=
{[base]deps}
pytest-cov
h5py
pyside2_512: pyside2>=5.12,<5.13
pyqt5_512: pyqt5>=5.12,<5.13
pyside2_latest: pyside2
pyqt5_latest: pyqt5
conda_deps=
pyside2_59_conda: pyside2=5.9
pyqt5_59_conda: pyqt=5.9
pyqt4_conda: pyqt=4
pyside_conda: pyside
conda_channels=
conda-forge
free
commands=
python -c "import pyqtgraph as pg; pg.systemInfo()"
pytest {posargs:}