summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 92865014387945b3114d6adde2d6eaa9a4fa0473 (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
[tox]
envlist = py26,py27,py32,py33,py34,pypy,flake8

[base]
deps=pytest
    pytest-cov
	sqlalchemy
	pymongo
    redis
    tornado
    twisted
    pytz
    tzlocal

[py2base]
deps={[base]deps}
    mock
    trollius
    funcsigs

[py3base]
deps={[base]deps}
    cython  # needed for compiling the gevent py3k fork
    https://github.com/fantix/gevent/archive/master.zip

[testenv]
commands=py.test -rsx

[testenv:py26]
deps={[py2base]deps}
    gevent

[testenv:py27]
deps={[py2base]deps}
    gevent

[testenv:pypy]
deps={[py2base]deps}

[testenv:py32]
deps={[py3base]deps}
    trollius
    funcsigs
    mock

[testenv:py33]
deps={[py3base]deps}
    asyncio

[testenv:py34]
deps={[py3base]deps}

[testenv:flake8]
deps=flake8
commands=flake8 apscheduler tests
usedevelop=true