forked from Asvel/pygs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
58 lines (45 loc) · 996 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
50
51
52
53
54
55
56
57
58
[testenv]
deps =
pytest
# for colored debug output
colorama
commands =
py.test {posargs}
# allow site-packages because PyQt cannot be installed by pip in a virtualenv
sitepackages = True
[testenv:py27-pyqt4]
basepython = python2.7
setenv = QT_SELECT=4
[testenv:py27-pyqt5]
basepython = python2.7
setenv = QT_SELECT=5
[testenv:py32-pyqt4]
basepython = python3.2
setenv = QT_SELECT=4
[testenv:py32-pyqt5]
basepython = python3.2
setenv = QT_SELECT=5
[testenv:py33-pyqt4]
basepython = python3.3
setenv = QT_SELECT=4
[testenv:py33-pyqt5]
basepython = python3.3
setenv = QT_SELECT=5
[testenv:py34-pyqt4]
basepython = python3.4
setenv = QT_SELECT=4
[testenv:py34-pyqt5]
basepython = python3.4
setenv = QT_SELECT=5
[testenv:py35-pyqt4]
basepython = python3.5
setenv = QT_SELECT=4
[testenv:py35-pyqt5]
basepython = python3.5
setenv = QT_SELECT=5
[testenv:py36-pyqt4]
basepython = python3.6
setenv = QT_SELECT=4
[testenv:py36-pyqt5]
basepython = python3.6
setenv = QT_SELECT=5