sanic/.travis.yml
2016-10-15 22:16:50 -06:00

15 lines
333 B
YAML

language: python
python:
- "3.5"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "python setup.py install"
- "pip install flake8"
- "pip install pytest"
# flake8 check
before_script: "flake8 sanic"
# command to run tests
script: "py.test -v tests"