We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d38b95 commit 0ab90b3Copy full SHA for 0ab90b3
.coveragerc
@@ -0,0 +1,2 @@
1
+[run]
2
+omit = package_template/tests/*
.travis.yml
@@ -7,7 +7,9 @@ python:
7
- "3.5"
8
- "3.4"
9
- "2.7"
10
-# Install any dependencies of our package:
11
-install: pip install requests
+# Install any dependencies for running the tests:
+install: pip install codecov pytest-cov
12
# command to run tests
13
-script: py.test
+script: py.test --cov=package_template --cov-config .coveragerc
14
+after_success:
15
+ codecov
0 commit comments