aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ff7224dec81f2b9eb6525a19b49095e8ad5712c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
python:
  - "3.6"

addons:
  rethinkdb: "2.3"

branches:
  only:
    - "master"

cache: pip

install:
  - pip install -r requirements.txt
  - pip install -r requirements-ci.txt
script:
  - flake8
  - py.test app_test.py --cov pysite --cov-report term-missing -v
  - coveralls
after_success:
  - python deploy.py