From 02ddf5ba04e2e9359fd882084924dae154ec9f39 Mon Sep 17 00:00:00 2001 From: Anthony Forsberg Date: Mon, 19 Dec 2016 13:00:13 -0500 Subject: [PATCH] Travis CI config Still need to write some tests. --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..453c88a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.7" + - "3.5" +install: "pip install -r requirements.txt" +script: python tests/test_all.py +branches: + only: + - master