Skip to content
Snippets Groups Projects

test: fix and re-add bootimg analyze tests

Merged Caleb Connolly requested to merge caleb/bootimg-analyze-tests into master
+ 1
1
@@ -15,7 +15,7 @@ set -x
# __init__.py with additional ignore:
# F401: imported, but not used
# shellcheck disable=SC2046
ruff check --ignore "F401" $(find . -not -path '*/venv/*' -name '__init__.py') || DID_FAIL=1
ruff check --ignore "F401" $(find . -not -path '*/venv/*' -not -path '.pytest_tmp/*' -name '__init__.py') || DID_FAIL=1
# Check all other files
ruff check --exclude=__init__.py . || DID_FAIL=1
Loading