We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b92edba commit 9ae87e3Copy full SHA for 9ae87e3
1 file changed
.travis.yml
@@ -1,15 +1,20 @@
1
+# Disable sudo to speed up the build
2
sudo: false
3
4
+# Set the build language to Python
5
language: python
6
-python:
- - 2.7
7
+# Set the python version to 2.7
8
+python: 2.7
9
10
+# Install the codecov pip dependency
11
install:
12
- pip install codecov
13
14
+# Run the unit test
15
script:
16
- coverage run tests.py
17
18
+# Push the results back to codecov
19
after_success:
20
- codecov
0 commit comments