forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
56 lines (47 loc) · 741 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
[tox]
envlist =
py27,py34,py35,py36,py37,py27-cffi,pypy,pypy3,py27-libuv,lint
[testenv]
deps =
greenlet
cython >= 0.24
coverage >= 4.0
psutil
cffi
whitelist_externals =
*
commands =
make basictest
[testenv:py27-full]
basepython = python2.7
commands =
make alltoxtest
[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 basictest
[testenv:py27-libuv]
basepython =
python2.7
setenv =
GEVENT_CORE_CFFI_ONLY=libuv
commands =
make basictest
[testenv:leak]
basepython =
python2.7
commands =
make leaktest