2016-08-27 08:56:00 +03:00
|
|
|
language: python
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
|
|
- 2.7
|
|
|
|
- 3.4
|
|
|
|
- 3.5
|
2017-01-25 00:54:26 +03:00
|
|
|
- 3.6
|
2016-08-27 08:56:00 +03:00
|
|
|
install:
|
2016-11-04 17:25:55 +03:00
|
|
|
- travis_retry pip install -r requirements.txt
|
|
|
|
- travis_retry pip install flake8
|
2016-08-27 08:56:00 +03:00
|
|
|
script:
|
2017-08-10 18:11:46 +03:00
|
|
|
- flake8 --statistics shipyard.py convoy/*.py
|
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8 --statistics cascade/*.py tfm/*.py rjm/*.py; fi
|
2016-08-27 08:56:00 +03:00
|
|
|
|