15 строки
325 B
YAML
15 строки
325 B
YAML
language: python
|
|
cache: pip
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
install:
|
|
- travis_retry pip install -r requirements.txt
|
|
- travis_retry pip install flake8
|
|
script:
|
|
- flake8 --statistics shipyard.py convoy/*.py
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8 --statistics cascade/*.py tfm/*.py rjm/*.py; fi
|
|
|