From 5d1b972b821db4a2bde4e871292e2678c9315a4e Mon Sep 17 00:00:00 2001 From: Daniel van Flymen Date: Sun, 12 Nov 2017 16:20:22 -0500 Subject: [PATCH] Add Travis Integration --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0eb0d5e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python + +python: + - 3.6 + - nightly + +env: + - PIPENV_VENV_IN_PROJECT=1 + - PIPENV_IGNORE_VIRTUALENVS=1 + +install: + - pip install pipenv + - pipenv --three + - pipenv install -d --system + +script: + - pipenv run python -m unittest