blob: d9b976bf3f0a15c7668ee9ba8d4ccf9ab17a7653 (
plain)
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
|
[tox]
envlist = py26,py27,py32,py33,py34,pypy,pypy3,flake8
skip_missing_interpreters = true
[testenv]
commands = py.test {posargs}
deps = pytest
sqlalchemy
pymongo
redis
tornado
gevent
[testenv:py2x]
deps = {[testenv]deps}
mock
trollius
funcsigs
[testenv:py26]
deps = {[testenv:py2x]deps}
twisted < 15.0
[testenv:py27]
deps = {[testenv:py2x]deps}
twisted
[testenv:py32]
deps={[testenv]deps}
mock
trollius
funcsigs
[testenv:py33]
deps = {[testenv]deps}
asyncio
twisted
[testenv:py34]
deps = {[testenv]deps}
twisted
[testenv:py35]
deps = {[testenv]deps}
twisted
[testenv:pypy]
deps = {[testenv:py2x]deps}
twisted
[testenv:pypy3]
deps = {[testenv]deps}
mock
twisted
[testenv:flake8]
deps = flake8
commands = flake8 apscheduler tests
skip_install = true
|