forked from google/apitools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
87 lines (78 loc) · 1.6 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
78
79
80
81
82
83
84
85
86
87
[tox]
envlist = py26,py27,pypy,py34,py35,lint,cover,py27oldoauth2client
[testenv]
deps =
nose
python-gflags==3.0.6
commands =
pip install google-apitools[testing]
nosetests []
passenv = TRAVIS*
[testenv:py27oldoauth2client]
commands =
pip install oauth2client==1.5.2
{[testenv]commands}
deps = {[testenv]deps}
[testenv:py34]
basepython = python3.4
deps =
mock
nose
unittest2
commands = nosetests []
[testenv:py35]
basepython = python3.5
deps =
mock
nose
unittest2
commands = nosetests []
[pep8]
exclude = samples/*_sample/*/*,*/testdata/*,*.egg/,*.egg-info/,.*/,ez_setup.py,build
verbose = 1
[testenv:lint]
basepython =
python2.7
commands =
pip install six google-apitools[testing]
pep8
python run_pylint.py
deps =
pep8
pylint
unittest2
[testenv:cover]
basepython =
python2.7
commands =
nosetests --with-xunit --with-xcoverage --cover-package=apitools --nocapture --cover-erase --cover-tests --cover-branches []
deps =
google-apputils
python-gflags==3.0.6
mock
nose
unittest2
coverage
nosexcover
[testenv:coveralls]
basepython = {[testenv:cover]basepython}
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[testenv:transfer_coverage]
basepython =
python2.7
deps =
mock
nose
unittest2
coverage
commands =
coverage run --branch -p samples/storage_sample/downloads_test.py
coverage run --branch -p samples/storage_sample/uploads_test.py
coverage run --branch -p apitools/base/py/transfer_test.py
coverage combine
coverage html