Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1887)

Unified Diff: tools/telemetry/third_party/gsutilz/third_party/apitools/tox.ini

Issue 1264873003: Add gsutil/third_party to telemetry/third_party/gsutilz/third_party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove httplib2 Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/third_party/gsutilz/third_party/apitools/tox.ini
diff --git a/tools/telemetry/third_party/gsutilz/third_party/apitools/tox.ini b/tools/telemetry/third_party/gsutilz/third_party/apitools/tox.ini
new file mode 100644
index 0000000000000000000000000000000000000000..5cd3c744e67ee08457df06e03259387b7188f438
--- /dev/null
+++ b/tools/telemetry/third_party/gsutilz/third_party/apitools/tox.ini
@@ -0,0 +1,63 @@
+[tox]
+envlist = py26,py27,pypy,py33,py34,lint,cover
+
+[testenv]
+deps = nose
+commands =
+ pip install google-apitools[testing]
+ nosetests []
+
+[testenv:py33]
+basepython = python3.3
+deps =
+ mock
+ nose
+ unittest2
+commands = nosetests []
+
+[testenv:py34]
+basepython = python3.4
+deps =
+ mock
+ nose
+ unittest2
+commands = nosetests []
+
+[pep8]
+exclude = samples/storage_sample/storage,samples/storage_sample/testdata,*.egg/,.*/,ez_setup.py
+verbose = 1
+
+[testenv:lint]
+basepython =
+ python2.7
+commands =
+ 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
+ mock
+ nose
+ unittest2
+ coverage
+ nosexcover
+
+[testenv:coveralls]
+basepython = {[testenv:cover]basepython}
+commands =
+ {[testenv:cover]commands}
+ coveralls
+deps =
+ {[testenv:cover]deps}
+ coveralls
+passenv = TRAVIS*

Powered by Google App Engine
This is Rietveld 408576698