We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abffdc commit d9999f4Copy full SHA for d9999f4
.travis.yml
@@ -15,6 +15,7 @@ script:
15
- scripts/update_docs.sh
16
17
after_success:
18
+ - tox -e coveralls
19
- tox -e codecov
20
21
deploy:
tox.ini
@@ -61,6 +61,19 @@ deps =
61
setenv =
62
PYTHONPATH =
63
64
+[testenv:coveralls]
65
+basepython = {[testenv:cover]basepython}
66
+commands =
67
+ pip install gcloud[grpc]
68
+ {[testenv]covercmd}
69
+ coveralls
70
+deps =
71
+ {[testenv:cover]deps}
72
73
+setenv =
74
+ PYTHONPATH =
75
+passenv = {[testenv:system-tests]passenv}
76
+
77
[testenv:codecov]
78
basepython =
79
{[testenv:cover]basepython}
0 commit comments