Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ test-coverage: test ## Run automated tests and create coverage report

lint: ## Run code linter to check code style, check if formatter would make changes and check if dependency pins need to be updated
@[ -f localstack-core/localstack/__init__.py ] && echo "localstack-core/localstack/__init__.py will break packaging." && exit 1 || :
($(VENV_RUN); python -m ruff check --output-format=full . && python -m ruff format --check .)
($(VENV_RUN); python -m ruff check --output-format=full . && python -m ruff format --check --diff .)
$(VENV_RUN); pre-commit run check-pinned-deps-for-needed-upgrade --files pyproject.toml # run pre-commit hook manually here to ensure that this check runs in CI as well
$(VENV_RUN); openapi-spec-validator localstack-core/localstack/openapi.yaml

Expand Down
Loading