From 9e107ef352aa35095c9a87acf429fa9ef577bf83 Mon Sep 17 00:00:00 2001 From: Daniel B Date: Sat, 11 Jan 2020 16:16:10 -0800 Subject: [PATCH] add travis config --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e86b6dc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python +python: + - "3.7" +# command to install dependencies +install: + - pip install pipenv + - pipenv install + - pipenv install --dev +# command to run unit tests +script: + - tox +