forked from wal-e/wal-e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
63 lines (57 loc) · 1.16 KB
/
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
55
56
57
58
59
60
61
62
63
[tox]
skipsdist=True
# Oldest sensitive dependencies supported with WAL-E 1.0.
[testenv:v1.0-oldest]
basepython = python3.4
deps =
azure-storage-blob==1.1.0
azure==3.0.0
boto==2.40.0
google-cloud-storage==1.4.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
google-cloud-storage
python-keystoneclient
python-swiftclient
{[base]deps}
[testenv:py35]
deps =
# All optional cloud dependencies.
boto
azure
google-cloud-storage
python-keystoneclient
python-swiftclient
{[base]deps}
[testenv:py36]
deps =
# All optional cloud dependencies.
boto
azure
google-cloud-storage
python-keystoneclient
python-swiftclient
{[base]deps}
[base]
deps =
pytest
pytest-cov
pytest-flake8
pytest-xdist
[testenv]
passenv = BOTO_CONFIG WALE_* AWS_* WABS_* GOOGLE_* SWIFT_*
deps = {[base]deps}
commands =
pip install -e .
py.test \
--flake8 \
--basetemp={envtmpdir} \
--confcutdir=.. \
[]