Skip to content

Commit

Permalink
Fix linting issue (#22)
Browse files Browse the repository at this point in the history
... which arise with the new flake8 version.

`tests` is no longer a valid flake8 param, as it is no top level
directory.

As it is a subfolder of the `src` folder, it gets linted anyway.

modified:   tox.ini
  • Loading branch information
jugmac00 committed May 15, 2020
1 parent 7a13bb6 commit 82f85a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -41,7 +41,7 @@ commands_pre =
commands =
isort --check-only --diff --recursive {toxinidir}/src setup.py
- flake8 --format=html src setup.py
flake8 src tests setup.py
flake8 src setup.py
deps =
isort
flake8
Expand Down

0 comments on commit 82f85a6

Please sign in to comment.