From a1ebab5727d2ee5a6d25e2b07ecd4edc608f12b2 Mon Sep 17 00:00:00 2001 From: carlosperate Date: Mon, 15 Apr 2019 12:20:02 +0100 Subject: [PATCH] Add Travis CI configuration file. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0f2dddf --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# Ubuntu 16.04 required for Python >= 3.7 +dist: xenial +language: python +python: + - "2.7" + - "3.4" + - "3.5" + - "3.6" + - "3.7" +install: + - pip install -r requirements.txt + - python setup.py develop +script: + - make check