forked from kentfrazier/Exhibitionist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
80 lines (68 loc) · 1.74 KB
/
tox.ini
File metadata and controls
80 lines (68 loc) · 1.74 KB
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
[tox]
envlist = py26, py27, py32, py33
[testenv]
deps =
tornado >= 2.4.1
# waiting on https://github.com/Lawouach/WebSocket-for-Python/pull/81
# ws4py
git+git://github.com/y-p/WebSocket-for-Python@7219233
coverage
nose
six
requests
# cd to anything but the default {toxinidir} which
# forces us to be explicit about where the test suite lives
# and ensure the package is imported from site-packages
# and not the current directory, by misstake.
changedir = {envdir}
commands =
nosetests {toxworkdir}/../exhibitionist
#nosetests --with-coverage {toxworkdir}/../exhibitionist
# cleanup the temp. build dir created by the tox build
/bin/rm -rf {toxinidir}/build
# quietly rollback the install, for next time
# pip uninstall exhibitionist -qy
[testenv:py26]
deps =
tornado >= 2.4.1
# waiting on https://github.com/Lawouach/WebSocket-for-Python/pull/81
# ws4py
git+git://github.com/y-p/WebSocket-for-Python@7219233
nose
six
requests
gevent
grequests
coverage
[testenv:py27]
deps =
tornado >= 2.4.1
# waiting on https://github.com/Lawouach/WebSocket-for-Python/pull/81
# ws4py
git+git://github.com/y-p/WebSocket-for-Python@7219233
nose
six
requests
gevent
grequests
coverage
[testenv:py32]
deps =
tornado >= 2.4.1
# waiting on https://github.com/Lawouach/WebSocket-for-Python/pull/81
# ws4py
git+git://github.com/y-p/WebSocket-for-Python@7219233
nose
six
requests
coverage
[testenv:py33]
deps =
tornado >= 2.4.1
# waiting on https://github.com/Lawouach/WebSocket-for-Python/pull/81
# ws4py
git+git://github.com/y-p/WebSocket-for-Python@7219233
nose
six
requests
coverage