From d05bcea552ffd479bcb9c2ea42d15f4d1de1c915 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Sun, 5 May 2013 11:36:07 -0400 Subject: [PATCH] Add travis-ci configuration file Signed-off-by: Doug Hellmann --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cfbbd86 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" +install: + - pip install flake8 --use-mirrors + - pip install nose mock --use-mirrors + - pip install -q . --use-mirrors +before_script: + - flake8 stevedore setup.py +script: nosetests stevedore