From 5a9051e67966ed9775240a352d27a1c5dd717ce2 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Thu, 16 Jun 2016 16:57:17 +0200 Subject: [PATCH] Use travis for tests --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cc5fca2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +sudo: false + +language: python + +addons: + postgresql: "9.4" + apt: + packages: + - postgresql-plpython-9.4 + - python-numpy + - python-scipy + +env: + - PGUSER=postgres + +before_script: make install + +script: make test