From c78fc032af75094daa998260e18de7a58437c56d Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Fri, 6 Nov 2015 16:21:19 +0100 Subject: [PATCH] First try at travis --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..74542d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" + +install: + - "travis_retry pip install nose" + - "travis_retry pip install coveralls" + - "travis_retry pip install --pre -e ." + +script: "python setup.py nosetests --with-coverage --cover-package=dukpy --cover-erase" + +after_success: + coveralls