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

Unified Diff: tools/telemetry/third_party/coverage/.travis.yml

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « tools/telemetry/third_party/coverage/.hgtags ('k') | tools/telemetry/third_party/coverage/.treerc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/third_party/coverage/.travis.yml
diff --git a/tools/telemetry/third_party/coverage/.travis.yml b/tools/telemetry/third_party/coverage/.travis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..97679e15632104816297bf107dc1f76c53dd7f1c
--- /dev/null
+++ b/tools/telemetry/third_party/coverage/.travis.yml
@@ -0,0 +1,26 @@
+# Tell Travis what to do
+# https://travis-ci.org/nedbat/coveragepy
+
+language: python
+
+sudo: false
+
+python:
+ - 2.7
+
+env:
+ - TOXENV=py26
+ - TOXENV=py27
+ - TOXENV=py33
+ - TOXENV=py34
+ - TOXENV=pypy
+ - TOXENV=py27 COVERAGE_COVERAGE=yes
+
+install:
+ - pip install -r requirements/tox.pip
+
+script:
+ - tox
+ - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi
+ - if [ $COVERAGE_COVERAGE == 'yes' ]; then pip install codecov; fi
+ - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi
« no previous file with comments | « tools/telemetry/third_party/coverage/.hgtags ('k') | tools/telemetry/third_party/coverage/.treerc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698