InvenTree/.travis.yml

13 lines
260 B
YAML
Raw Normal View History

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