forked from lucemia/gcloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
77 lines (69 loc) · 1.45 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
72
73
74
75
76
77
[tox]
envlist =
py26,py27,py33,py34,cover,docs,lint
[testenv]
install_command =
{toxinidir}/scripts/custom_pip_install.sh {opts} {packages}
commands =
nosetests
deps =
nose
unittest2
protobuf==3.0.0-alpha-1
[testenv:cover]
basepython =
python2.7
commands =
nosetests --with-xunit --with-xcoverage --cover-package=gcloud --nocapture --cover-erase --cover-tests --cover-branches --cover-min-percentage=100
deps =
nose
unittest2
protobuf==3.0.0-alpha-1
coverage
nosexcover
[testenv:coveralls]
basepython = {[testenv:cover]basepython}
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[testenv:docs]
basepython =
python2.7
commands =
python -c "import shutil; shutil.rmtree('docs/_build', ignore_errors=True)"
sphinx-build -W -b html -d docs/_build/doctrees docs docs/_build/html
deps =
Sphinx
[pep8]
exclude = gcloud/datastore/_datastore_v1_pb2.py,docs/conf.py,*.egg/,.*/,_gcloud_vendor/
verbose = 1
[testenv:lint]
basepython =
python2.7
commands =
pep8
python run_pylint.py
deps =
pep8
pylint
unittest2
protobuf==3.0.0-alpha-1
[testenv:regression]
basepython =
python2.7
commands =
{toxinidir}/scripts/run_regression.sh
deps =
unittest2
protobuf==3.0.0-alpha-1
[testenv:regression3]
basepython =
python3.4
commands =
{toxinidir}/scripts/run_regression.sh
deps =
unittest2
protobuf==3.0.0-alpha-1