forked from projectcalico/felix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
25 lines (23 loc) · 932 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
[tox]
envlist = py26, py27, pypy
[testenv]
deps =
nose
mock==1.0.1
coverage==4.0a5
unittest2
git+https://github.com/projectcalico/python-posix-spawn.git@1f74fbedb569d4e45f11e9e32d3dca74623f432c#egg=posix-spawn
git+https://github.com/projectcalico/python-etcd.git@3f14a002c9a75df3242de3d81a91a2e6bd32c5a8#egg=python-etcd
commands=nosetests --with-coverage
[testenv:pypy]
# Pypy doesn't test code coverage because it slows PyPy way down. Also, Neutron
# doesn't support PyPy so we don't care if those tests fail.
commands=nosetests calico/felix/test calico/test
deps =
nose
mock==1.0.1
coverage==4.0a5
unittest2
git+https://github.com/projectcalico/python-posix-spawn.git@1f74fbedb569d4e45f11e9e32d3dca74623f432c#egg=posix-spawn
git+https://github.com/projectcalico/python-etcd.git@3f14a002c9a75df3242de3d81a91a2e6bd32c5a8#egg=python-etcd
gevent>=1.1a2, !=1.1b1, !=1.1b2, !=1.1b4