We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a401dd6 commit e11d31cCopy full SHA for e11d31c
3 files changed
.travis.yml
@@ -3,3 +3,5 @@ python:
3
- 3.4
4
script:
5
- nosetests --with-cov
6
+after_success: codecov
7
+install: pip install codecov
README.md
@@ -2,3 +2,4 @@ Hello world
2
=======
[](http://travis-ci.org/codecov/codecov-python)
+[](https://codecov.io/github/codecov-test/python-3?branch=master)
circle.yml
@@ -4,5 +4,10 @@ machine:
test:
override:
- - python -m tests
8
- post: something else
+ - coverage run -m tests
+ post:
9
+ - something else
10
+ - codecov
11
+dependencies:
12
+ override:
13
+ - pip install codecov
0 commit comments