forked from wal-e/wal-e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
42 lines (37 loc) · 777 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
41
42
[tox]
skipsdist=True
[testenv:py27]
basepython = python2.7
# Oldest sensitive dependencies supported with WAL-E 0.9.
[testenv:0.9-oldest]
basepython = python2.7
deps =
boto==2.24.0
azure==0.7.0
python-swiftclient==1.8.0
python-keystoneclient==1.7.1
gevent==1.0.2
{[base]deps}
[testenv:boto-tip-2.7]
basepython = python2.7
deps =
git+git://github.com/boto/boto.git#egg=boto
{[base]deps}
[base]
deps =
pytest
pytest-capturelog
pytest-cov
pytest-flakes
pytest-pep8
pytest-xdist
[testenv]
deps = {[base]deps}
commands =
pip install -e .
py.test \
--flakes \
--pep8 \
--basetemp={envtmpdir} \
--confcutdir=.. \
[]