forked from wal-e/wal-e
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
40 lines (34 loc) · 745 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
[tox]
[testenv:py26]
basepython = python2.6
[testenv:py27]
basepython = python2.7
# Oldest sensitive dependencies supported with WAL-E 0.6.
[testenv:0.6-oldest]
basepython = python2.6
deps = boto==2.0.0
gevent==0.13.1
{[base]deps}
# Oldest sensitive dependencies supported with WAL-E 0.7.
[testenv:0.7-oldest]
basepython = python2.6
deps =
boto==2.2.1
gevent==0.13.1
{[base]deps}
[base]
deps =
pytest-capturelog
pytest-flakes
pytest-pep8
pytest-xdist
[testenv]
deps = {[base]deps}
commands =
python setup.py develop
py.test \
--flakes \
--pep8 \
--basetemp={envtmpdir} \
--confcutdir=.. \
[]