From 9d6311c69b8ba9d25e815b55a8a00d64a4c4f672 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 24 Jul 2019 21:09:36 -0400 Subject: [PATCH] added travis --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..46dd879e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "3.7" +# command to install dependencies +cache: pip +install: + - pip install -e . + - pip install -r requirements.txt --ignore-installed + +# keep build from timing out +dist: xenial + +# command to run tests +script: + - py.test # or py.test for Python versions 3.5 and below \ No newline at end of file