cookiecutter-django/.travis.yml
Kevin Ndung'u 93c330f063 Add new configs to .travis.yml
- Add directive to install requirements
- Add 'make test' to list of test commands
2015-03-27 17:04:11 +03:00

17 lines
275 B
YAML

language: python
before_install:
- time pip install pep8
install:
- pip install -r dev-requirements.txt
script:
- pep8 --ignore E201,E202 --max-line-length=120 --exclude='migrations' .
- make test
notifications:
email:
on_success: never
on_failure: never