From 31daef908d398ebf47dfa144436ea730c2fccfbb Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Sun, 28 Feb 2016 09:00:31 -0500 Subject: [PATCH] Add Travis CI control file. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e325c75 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: +- 2.7 +- 3.4 +- 3.5 +before_install: +- pip install nose coverage codecov +- pip install -r requires/testing.txt +install: +- pip install -e . +script: nosetests --with-coverage +after_success: +- codecov +sudo: false