diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 30032dfe..376c1604 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,17 @@ language: python python: - "3.6" +addons: + rethinkdb: "2.3" + +cache: pip + install: - pip install -r requirements.txt - pip install -r requirements-ci.txt script: - snekchek + - py.test app_test.py --cov pysite --cov-report term-missing -v + - coveralls after_success: - python deploy.py |