From 9ae87e39c40bac7cf268086e4ce305345fd6da92 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Tue, 17 Jul 2018 23:39:15 +1200 Subject: [PATCH] Commented YAML and put version on one line --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 11d295c0..a5342d85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,20 @@ +# Disable sudo to speed up the build sudo: false +# Set the build language to Python language: python -python: - - 2.7 +# Set the python version to 2.7 +python: 2.7 +# Install the codecov pip dependency install: - pip install codecov +# Run the unit test script: - coverage run tests.py +# Push the results back to codecov after_success: - codecov