Skip to content

Commit 9ae87e3

Browse files
authored
Commented YAML and put version on one line
1 parent b92edba commit 9ae87e3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.travis.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1+
# Disable sudo to speed up the build
12
sudo: false
23

4+
# Set the build language to Python
35
language: python
46

5-
python:
6-
- 2.7
7+
# Set the python version to 2.7
8+
python: 2.7
79

10+
# Install the codecov pip dependency
811
install:
912
- pip install codecov
1013

14+
# Run the unit test
1115
script:
1216
- coverage run tests.py
1317

18+
# Push the results back to codecov
1419
after_success:
1520
- codecov

0 commit comments

Comments
 (0)