Skip to content

Commit

Permalink
Fix linting issue
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 09a574b commit ac9c866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ commands_pre =
mkdir -p {toxinidir}/parts/flake8
commands =
isort --check-only --diff --recursive {toxinidir}/src setup.py
- flake8 --format=html src tests setup.py
flake8 src tests setup.py
- flake8 --format=html src setup.py
flake8 src setup.py
deps =
isort
flake8
Expand Down

0 comments on commit ac9c866

Please sign in to comment.