Skip to content

Commit

Permalink
test: Add --extend-ignore E203 (Black/Ruff format)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 5, 2024
1 parent cf1d1ae commit 79885c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion tests/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ find . -type f \! -perm 644 \! -path '*/.git/*' \! -path '*/.ruff_cache/*' \! -p
\! -path '*/script/*' \! -name '*.sh' \! -name '*-cli' \! -name 'manage.py' \
-o -type d \! -perm 755 \! -path '*/deploy/cache/*' | grep . && exit 1

flake8 . --max-line-length 119
flake8 . --max-line-length 119 --extend-ignore E203

isort . --check-only --line-width 119 --profile black

Expand Down
2 changes: 0 additions & 2 deletions tests/test_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,6 @@ def test_requirements():
def test_dev_requirements():
# Ignore development dependencies that are not typically imported.
ignore = [
# Dependency management.
'pip-tools',
# Interactive shells.
'ipython',
# Code linters.
Expand Down

0 comments on commit 79885c6

Please sign in to comment.