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

Side by Side 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, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Tell Travis what to do
2 # https://travis-ci.org/nedbat/coveragepy
3
4 language: python
5
6 sudo: false
7
8 python:
9 - 2.7
10
11 env:
12 - TOXENV=py26
13 - TOXENV=py27
14 - TOXENV=py33
15 - TOXENV=py34
16 - TOXENV=pypy
17 - TOXENV=py27 COVERAGE_COVERAGE=yes
18
19 install:
20 - pip install -r requirements/tox.pip
21
22 script:
23 - tox
24 - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi
25 - if [ $COVERAGE_COVERAGE == 'yes' ]; then pip install codecov; fi
26 - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi
OLDNEW
« 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