Skip to content

Commit 7f8bf81

Browse files
committed
Adding coveralls.io and coverage generation
1 parent a2b1222 commit 7f8bf81

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.coveragerc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
[run]
3+
source=pylint_celery

.travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ python:
33
- "2.6"
44
- "2.7"
55
install:
6+
- "pip install --use-mirrors coverage coveralls"
67
- "pip install --use-mirrors -r test_requirements.txt"
78
- "pip install --use-mirrors git+https://github.com/landscapeio/pylint-plugin-utils.git@develop"
89
- "pip install --use-mirrors --editable ."
9-
script: python test/test_func.py
10+
script:
11+
coverage run test/test_func.py
12+
after_success:
13+
coveralls

0 commit comments

Comments
 (0)