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