From db885f97f4450e005935a94718e009042a1f2bd0 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Tue, 31 Jan 2017 19:31:12 +0000 Subject: [PATCH] travis: Integrate on stable branch This helps us detect regressions on the branch. Signed-off-by: Stephen Finucane StableOnly --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ad2f2751 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: python + +sudo: false + +python: + - 2.7 + - 3.4 + +services: + - mysql + +env: + global: + - PW_TEST_DB_USER=travis + - PW_TEST_DB_PASS="" + - PW_SKIP_BROWSER_TESTS=yes + +before_script: + - mysql -e 'create database patchwork character set utf8;' + +install: + - pip install tox-travis + +script: + - tox -- 2.47.3