forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
46 lines (40 loc) · 733 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
[tox]
envlist =
py27,py35,py36,py37,py27-cffi,pypy,pypy3,py27-libuv,lint
[testenv]
usedevelop = true
extras =
test
events
dnspython
deps =
cffi
whitelist_externals =
*
commands =
python -m gevent.tests
[testenv:lint]
skip_install = true
skipsdist = true
basepython =
python3
deps =
cffi
pylint
commands =
pylint --rcfile=.pylintrc src/gevent
[testenv:py27-cffi]
basepython =
python2.7
setenv =
GEVENT_LOOP=libev-cffi
[testenv:py27-libuv]
basepython =
python2.7
setenv =
GEVENT_LOOP=libuv-cffi
[testenv:leak]
basepython =
python2.7
commands =
GEVENTTEST_LEAKCHECK=1 python -mgevent.tests --config known_failures.py --quiet --ignore tests_that_dont_do_leakchecks.txt