cookiecutter-django/.travis.yml

17 lines
273 B
YAML
Raw Normal View History

language: python
before_install:
- time pip install pep8
install:
2015-04-20 15:19:12 +03:00
- pip install -r requirements.txt
script:
2014-10-31 00:26:17 +03:00
- pep8 --ignore E201,E202 --max-line-length=120 --exclude='migrations' .
- make test
notifications:
email:
2015-04-20 15:19:12 +03:00
on_success: change
on_failure: always