From 3111c659dcb2b95ad8b75b0d8ff2a04e4cb49abc Mon Sep 17 00:00:00 2001 From: evanbiederstedt Date: Thu, 6 Jun 2019 11:22:13 -0400 Subject: [PATCH] added travis config --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0d381cb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - 2.7 +install: + - sudo apt-get -y update + - pip install codecov + - pip install -r requirements.txt +script: + - nosetests +after_success: + - codecov