InvenTree/.travis.yml

13 lines
305 B
YAML
Raw Normal View History

2017-03-23 21:34:41 +00:00
language: python
python:
2017-03-28 13:11:08 +00:00
- 3.4
2017-03-23 21:34:41 +00:00
before_install:
- pip install pep8
2017-03-28 12:52:44 +00:00
- pip install django
2017-03-28 13:14:27 +00:00
- pip install djangorestframework
2017-03-28 12:52:44 +00:00
2017-03-23 21:34:41 +00:00
script:
2017-03-28 13:01:58 +00:00
- "pep8 --exclude=migrations --ignore=E402,W293,E501 InvenTree"
2017-03-28 13:14:27 +00:00
- python InvenTree/manage.py check
- python InvenTree/manage.py test --noinput