forked from googleapis/google-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtox.ini
More file actions
55 lines (46 loc) · 999 Bytes
/
Copy pathtox.ini
File metadata and controls
55 lines (46 loc) · 999 Bytes
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
[tox]
envlist = py26, py27, py33, py34, cover
[testenv]
deps = keyring
mox
pyopenssl
pycrypto==2.6
django
webtest
nose
setenv = PYTHONPATH=../google_appengine
[testenv:py26]
commands = nosetests --ignore-files=test_oauth2client_appengine\.py
[testenv:py27]
commands = nosetests
[testenv:py33]
commands = nosetests
[testenv:py34]
commands = nosetests
[testenv:cover]
commands =
nosetests --with-xunit --with-xcoverage --cover-package=googleapiclient --nocapture --cover-erase --cover-tests --cover-branches --cover-min-percentage=60
deps = {[testenv]deps}
coverage>=3.6,<3.99
nosexcover
[testenv:coveralls27]
basepython = python2.7
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[testenv:coveralls34]
basepython = python3.4
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
# whitelist
branches:
only:
- master
- python3