Skip to content
Snippets Groups Projects
Commit 913c16c7 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Add basic flake8 check

Partial solution to #181
parent 27fbbcd8
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ python-3:
- pip install -r optional_requirements.txt
- pip install 'coverage>=4.5'
- pip install coverage-badge
- pip install flake8
script:
- python setup.py install
# Run tests and collect coverage data
......@@ -66,6 +67,9 @@ python-3:
- make clean
- make html
# Run pyflakes
- flake8 .
artifacts:
paths:
- htmlcov/
......
[flake8]
exclude = .git,docs,build,dist
max-line-length = 160
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment