InvenTree/.travis.yml

10 lines
235 B
YAML
Raw Normal View History

2017-03-23 21:34:41 +00:00
language: python
python:
2017-03-28 12:05:09 +00:00
- 3.3
2017-03-23 21:34:41 +00:00
before_install:
- pip install pep8
script:
# TODO - Only perform PEP8 checks on files that have been changed in this push / PR
2017-03-28 12:12:36 +00:00
- find . -name \*.py -exec pep8 --ignore=E402,W293 {} +