9 lines
194 B
YAML
9 lines
194 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
install:
|
|
- pip install flake8 -r requirements.txt
|
|
before_script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
script: pytest
|