From: Stephen Finucane Date: Tue, 31 Jan 2017 19:31:12 +0000 (+0000) Subject: travis: Integrate on stable branch X-Git-Tag: v1.1.3~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db885f97f4450e005935a94718e009042a1f2bd0;p=thirdparty%2Fpatchwork.git travis: Integrate on stable branch This helps us detect regressions on the branch. Signed-off-by: Stephen Finucane StableOnly --- 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