We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2b1222 commit 7f8bf81Copy full SHA for 7f8bf81
.coveragerc
@@ -0,0 +1,3 @@
1
+
2
+[run]
3
+source=pylint_celery
.travis.yml
@@ -3,7 +3,11 @@ python:
- "2.6"
4
- "2.7"
5
install:
6
+ - "pip install --use-mirrors coverage coveralls"
7
- "pip install --use-mirrors -r test_requirements.txt"
8
- "pip install --use-mirrors git+https://github.com/landscapeio/pylint-plugin-utils.git@develop"
9
- "pip install --use-mirrors --editable ."
-script: python test/test_func.py
10
+script:
11
+ coverage run test/test_func.py
12
+after_success:
13
+ coveralls
0 commit comments