Skip to content

Commit e11d31c

Browse files
committed
Added Codecov coverage reporting
1 parent a401dd6 commit e11d31c

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ python:
33
- 3.4
44
script:
55
- nosetests --with-cov
6+
after_success: codecov
7+
install: pip install codecov

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Hello world
22
=======
33

44
[![Build Status](https://secure.travis-ci.org/codecov/codecov-python.svg?branch=master)](http://travis-ci.org/codecov/codecov-python)
5+
[![codecov.io](https://codecov.io/github/codecov-test/python-3/coverage.svg?branch=master)](https://codecov.io/github/codecov-test/python-3?branch=master)

circle.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@ machine:
44

55
test:
66
override:
7-
- python -m tests
8-
post: something else
7+
- coverage run -m tests
8+
post:
9+
- something else
10+
- codecov
11+
dependencies:
12+
override:
13+
- pip install codecov

0 commit comments

Comments
 (0)