forked from apache/libcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
71 lines (61 loc) · 1.64 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
64
65
66
67
68
69
70
71
[tox]
envlist = py25,py26,py27,pypy,py32,py33,py34,lint
setenv =
PIP_USE_MIRRORS=1
[testenv]
deps = backports.ssl_match_hostname
mock
unittest2
lockfile
paramiko
commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
python setup.py test
[testenv:py25]
setenv = PIP_INSECURE=1
deps = backports.ssl_match_hostname
mock
unittest2
lockfile
ssl
simplejson
paramiko
[testenv:pypy]
deps = backports.ssl_match_hostname
mock
unittest2
lockfile
[testenv:py32]
deps = mock
lockfile
[testenv:py33]
deps = mock
lockfile
[testenv:py34]
# At some point we can switch to use the stdlib provided mock module on
# Python3.4+
deps = mock
lockfile
[testenv:docs]
deps = sphinx
pysphere
basepython = python2.7
changedir = docs
commands = python ../contrib/generate_provider_feature_matrix_table.py
sphinx-apidoc -d 2 ../libcloud/ -o apidocs/
sphinx-build -b html -d {envtmpdir}/doctrees . _build/html
[testenv:scrape-ec2-prices]
deps = requests
demjson
basepython = python2.7
commands = python contrib/scrape-ec2-prices.py
[testenv:pylint]
depds = pylint
commands = pylint --rcfile=.pylintrc -E libcloud/
[testenv:lint]
deps = -r{toxinidir}/requirements-tests.txt
commands = flake8 --ignore=E402 --exclude="test" libcloud/
flake8 --ignore=E402 --max-line-length=160 libcloud/test/
flake8 --ignore=E402 demos/
flake8 --ignore=E402,E902 docs/examples/
flake8 --ignore=E402,E902 --max-line-length=160 contrib/
python -mjson.tool libcloud/data/pricing.json