Skip to content

Commit

Permalink
isort: —rc is now deprecated (#24)
Browse files Browse the repository at this point in the history
* isort: —rc is now deprecated

* Add blank line to placate isort (lifted from #25)

* Make isort a mandatory test

* isort --verbose to document files skipped

* isort --verbose is too verbose
  • Loading branch information
cclauss authored May 9, 2021
1 parent be4ce46 commit adf657e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- run: black --check .
- run: codespell --quiet-level=2 --skip="*.tap" # --ignore-words-list=""
- run: flake8 . --max-line-length=88 --show-source --statistics
- run: isort -rc --check-only --profile black . || true
- run: isort --check-only --profile black .
- run: pip install junit_xml yamlish
- run: mypy --ignore-missing-imports .
- run: pytest . || true
Expand Down
1 change: 1 addition & 0 deletions tap2junit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import platform

from junit_xml import TestCase, TestSuite

from tap2junit.tap13 import TAP13 as tap13


Expand Down

0 comments on commit adf657e

Please sign in to comment.