forked from wal-e/wal-e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
54 lines (49 loc) · 982 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
43
44
45
46
47
48
49
50
51
52
53
54
[tox]
skipsdist=True
# Oldest sensitive dependencies supported with WAL-E 1.0.
[testenv:v1.0-oldest]
basepython = python3.4
deps =
azure-storage==0.20.3
azure==1.0.3
boto==2.40.0
gcloud==0.17.0
gevent==1.1.1
python-keystoneclient==3.0.0
python-swiftclient==3.0.0
{[base]deps}
[testenv:py34]
deps =
# All optional cloud dependencies.
boto
azure
gcloud
python-keystoneclient
python-swiftclient
{[base]deps}
[testenv:py35]
deps =
# All optional cloud dependencies.
boto
azure
gcloud
python-keystoneclient
python-swiftclient
{[base]deps}
[base]
deps =
pytest
pytest-catchlog
pytest-cov
pytest-flake8
pytest-xdist
[testenv]
passenv = WALE_* AWS_* WABS_* GOOGLE_* SWIFT_*
deps = {[base]deps}
commands =
pip install -e .
py.test \
--flake8 \
--basetemp={envtmpdir} \
--confcutdir=.. \
[]