Skip to content

Commit

Permalink
make the isort explicite check result ignored, as that is also in the…
Browse files Browse the repository at this point in the history
… flake8 check via flake8-isort, so we always got the full problem list. also fix one linting issue in setup.py
  • Loading branch information
loechel committed Nov 7, 2018
1 parent 90a5211 commit 354b485
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def read(*rnames):
'allows to provide a program input into a trusted environment.'
),
long_description=(
read('README.rst') + '\n' +
read('docs', 'CHANGES.rst')
read('README.rst') + '\n'
+ read('docs', 'CHANGES.rst')
),
classifiers=[
'License :: OSI Approved :: Zope Public License',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ deps =

commands =
mkdir -p {toxinidir}/_build/flake8
isort --check-only --recursive {toxinidir}/src {toxinidir}/tests setup.py
- isort --check-only --recursive {toxinidir}/src {toxinidir}/tests setup.py
- flake8 --format=html --htmldir={toxinidir}/_build/flake8 --doctests src tests setup.py
flake8 src tests setup.py --doctests

Expand Down

0 comments on commit 354b485

Please sign in to comment.