From b19c2d1fc805b6cc0dd1c37bf1fc991bbd9815f7 Mon Sep 17 00:00:00 2001 From: Changaco Date: Sat, 5 Oct 2019 23:48:03 +0200 Subject: [PATCH] add Travis config --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..25de1f0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: python +python: + - 2.7 + - 3.5 + - 3.6 + - 3.7 +services: + - postgresql +install: + - pip install tox-travis +before_script: + - psql -U postgres -c 'CREATE DATABASE "test";' +script: + - tox +branches: + only: + - master +notifications: + email: false + irc: false