Skip to content
This repository has been archived by the owner on Apr 27, 2020. It is now read-only.

Commit

Permalink
Run the flake8 linter in CI
Browse files Browse the repository at this point in the history
mjohnson9 committed Jul 1, 2017
1 parent 2cfeea7 commit cf8d0e4
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@ universal = 1

[flake8]
exclude = docs
application-import-names=modemscraper
import-order-style=google
max-complexity=10
application-import-names = modemscraper
import-order-style = google
max-complexity = 10

[aliases]
test = pytest
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@ envlist = py27, py33, py34, py35, py36, flake8

[travis]
python =
3.6: py36
3.5: py35
3.4: py34
3.3: py33
2.7: py27
3.6: py36, flake8
3.5: py35, flake8
3.4: py34, flake8
3.3: py33, flake8
2.7: py27, flake8

[testenv:flake8]
basepython=python

0 comments on commit cf8d0e4

Please sign in to comment.