From 4edaa7b9e6ebc0012d779a2d056e33b61aba7780 Mon Sep 17 00:00:00 2001 From: John Evans Date: Wed, 5 Feb 2014 15:55:28 -0500 Subject: [PATCH] Remove dangling 2.6 reference, simplify test script clause. Closes #150 Had left a dangling reference to 2.6 that showed up on travis-ci web page report. The test script section was only different for 2.6. Versions 2.7 and 3.3 are the same (and 3.4 should be the same when it arrives). That section can now be simplified. --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e55be64..2f45864 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "2.6" - "2.7" - "3.3" @@ -17,8 +16,7 @@ install: # command to run tests script: - - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python -m unittest discover; fi - - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then python -m unittest discover; fi + - python -m unittest discover notifications: email: "john.g.evans.ne@gmail.com"