This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
tox.ini
114 lines (96 loc) · 1.65 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
; tox configuration file for running tests similar to buildbot builders.
[tox]
envlist =
py27-twisted12
py27-twisted13
py27-twisted14
py27-twisted15
py35-twisted16
pypy-twisted12
pypy-twisted13
pypy-twisted14
pypy-twisted15
pypy-twisted16
pypy3-twisted16
[testenv]
deps =
six
coverage
twisted>=15.0, <16.0
commands =
coverage erase
coverage run --source=./twistar {envbindir}/trial --rterrors {posargs:twistar}
[testenv:py26-twisted12]
deps =
six
coverage
twisted>=12.0, <13.0
[testenv:py26-twisted13]
deps =
six
coverage
twisted>=13.0, <14.0
[testenv:py26-twisted14]
deps =
six
coverage
twisted>=14.0, <15.0
[testenv:py26-twisted15]
deps =
six
coverage
twisted>=15.0, <15.5
[testenv:py27-twisted12]
deps =
six
coverage
twisted>=12.0, <13.0
[testenv:py27-twisted13]
deps =
six
coverage
twisted>=13.0, <14.0
[testenv:py27-twisted14]
deps =
six
coverage
twisted>=14.0, <15.0
[testenv:py27-twisted15]
deps =
six
coverage
twisted>=15.0, <16.0
[testenv:py27-twisted16]
deps =
six
coverage
twisted>=16.0, <17.0
[testenv:py35-twisted16]
deps =
six
coverage
twisted>=16.0, <17.0
[testenv:pypy-twisted12]
deps =
coverage
twisted>=12.0, <13.0
[testenv:pypy-twisted13]
deps =
coverage
twisted>=13.0, <14.0
[testenv:pypy-twisted14]
deps =
coverage
twisted>=14.0, <15.0
[testenv:pypy-twisted15]
deps =
coverage
twisted>=15.0, <16.0
[testenv:pypy-twisted16]
deps =
coverage
twisted>=16.0, <17.0
[testenv:pypy3-twisted16]
deps =
coverage
twisted>=16.0, <17.0