From b107cf0287737013c53e98b56858feab639079ec Mon Sep 17 00:00:00 2001 From: Sebastien Coavoux Date: Fri, 25 Jul 2014 16:13:31 -0400 Subject: [PATCH] Add: Travis build --- .travis.yml | 18 ++++++++++++++++++ requirements.txt | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .travis.yml create mode 100644 requirements.txt diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9afe305 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python +python: + - "2.7" + - "2.6" + +install: + - "pip install pycurl" + - "sudo useradd shinken" + - "pip install -r requirements.txt" + - "pip install coveralls" + +script: nosetests -vx --with-coverage --cover-package=module + +after_success: + coveralls + +notifications: + email: false diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9afe305 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +language: python +python: + - "2.7" + - "2.6" + +install: + - "pip install pycurl" + - "sudo useradd shinken" + - "pip install -r requirements.txt" + - "pip install coveralls" + +script: nosetests -vx --with-coverage --cover-package=module + +after_success: + coveralls + +notifications: + email: false