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

Unified Diff: third_party/gsutil/third_party/apitools/tox.ini

Issue 1377933002: [catapult] - Copy Telemetry's gsutilz over to third_party. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Rename to gsutil. Created 5 years, 3 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
« no previous file with comments | « third_party/gsutil/third_party/apitools/setup.py ('k') | third_party/gsutil/third_party/boto/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gsutil/third_party/apitools/tox.ini
diff --git a/third_party/gsutil/third_party/apitools/tox.ini b/third_party/gsutil/third_party/apitools/tox.ini
new file mode 100644
index 0000000000000000000000000000000000000000..5cd3c744e67ee08457df06e03259387b7188f438
--- /dev/null
+++ b/third_party/gsutil/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*
« no previous file with comments | « third_party/gsutil/third_party/apitools/setup.py ('k') | third_party/gsutil/third_party/boto/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698