From 03e3f7d6486123bf3eb852ad007d9761475f138c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 28 Jul 2018 06:48:53 -0700 Subject: [PATCH] Configured Travis CI --- .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 0000000..b239bb3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python + +# 3.6 is listed first so it gets used for the later build stages +python: + - "3.6" + - "3.7-dev" + +script: + - pip install -U pip wheel + - pip install .[test] + - pytest + +cache: + directories: + - $HOME/.cache/pip