12 lines
185 B
YAML
12 lines
185 B
YAML
|
language: python
|
||
|
|
||
|
python:
|
||
|
- 2.7
|
||
|
|
||
|
install:
|
||
|
- pip install flake8
|
||
|
- pip install -e .
|
||
|
|
||
|
script:
|
||
|
- flake8 --max-line-length=100 --max-complexity=10 --statistics --benchmark symposion
|