forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
55 lines (48 loc) · 732 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
[tox]
envlist =
py27,py33,py34,py35,py27-cffi,pypy,lint
[testenv]
deps =
greenlet
cython >= 0.24
coverage >= 4.0
psutil
cffi
whitelist_externals =
*
commands =
make toxtest
[testenv:py33]
# On OS X, at least, the binary wheel for 1.5.2 is broken
deps =
greenlet
cython
coverage
psutil
cffi==1.5.1
[testenv:py27-full]
basepython = python2.7
commands =
make fulltoxtest
[testenv:pypy]
deps =
[testenv:lint]
basepython =
python2.7
deps =
{[testenv]deps}
prospector
commands =
make lint
[testenv:py27-cffi]
basepython =
python2.7
setenv =
GEVENT_CORE_CFFI_ONLY=1
commands =
make toxtest
[testenv:leak]
basepython =
python2.7
commands =
make leaktest