File tree 5 files changed +7
-1
lines changed
5 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
* .pyc
2
2
* .egg-info
3
+ .coverage
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ script: make
4
4
branches :
5
5
except :
6
6
- /^v[0-9]/
7
+ after_success : coveralls
Original file line number Diff line number Diff line change 2
2
.DEFAULT_GOAL := test
3
3
4
4
test : clean lint
5
- @py.test -s test/
5
+ @py.test --cov app.py - s test/
6
6
7
7
lint :
8
8
@flake8 .
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Example Uber app for developers
2
2
==============================
3
3
4
4
[ ![ TravisCI] ( https://travis-ci.org/uber/Python-Sample-Application.svg?branch=master )] ( https://travis-ci.org/uber/Python-Sample-Application )
5
+ [ ![ Coverage Status] ( https://coveralls.io/repos/uber/Python-Sample-Application/badge.png )] ( https://coveralls.io/r/uber/Python-Sample-Application )
5
6
6
7
https://developer.uber.com/
7
8
Original file line number Diff line number Diff line change @@ -11,3 +11,6 @@ betamax==0.4.0
11
11
flake8==2.1.0
12
12
pep8==1.5.6
13
13
pyflakes==0.8.1
14
+
15
+ # Coveralls
16
+ coveralls==0.4.2
You can’t perform that action at this time.
0 commit comments