Configured Travis CI

This commit is contained in:
Simon Willison 2018-07-28 06:48:53 -07:00
commit 03e3f7d648

15
.travis.yml Normal file
View file

@ -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