You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
$(VENV_RUN); pre-commit run check-pinned-deps-for-needed-upgrade --files setup.cfg # run pre-commit hook manually here to ensure that this check runs in CI as well
242
242
243
243
244
244
lint-modified: ## Run code linter to check code style, check if formatter would make changes on modified files, and check if dependency pins need to be updated because of modified files
245
-
($(VENV_RUN); python -m ruff check --show-source`git diff --diff-filter=d --name-only HEAD | grep '\.py$$'| xargs`&& python -m black --check `git diff --diff-filter=d --name-only HEAD | grep '\.py$$'| xargs`)
245
+
($(VENV_RUN); python -m ruff check --output-format=full`git diff --diff-filter=d --name-only HEAD | grep '\.py$$'| xargs`&& python -m black --check `git diff --diff-filter=d --name-only HEAD | grep '\.py$$'| xargs`)
246
246
$(VENV_RUN); pre-commit run check-pinned-deps-for-needed-upgrade --files $(git diff master --name-only)# run pre-commit hook manually here to ensure that this check runs in CI as well
247
247
248
248
check-aws-markers: ## Lightweight check to ensure all AWS tests have proper compatibilty markers set
249
249
($(VENV_RUN); python -m pytest --co tests/aws/)
250
250
251
251
format: ## Run ruff and black to format the whole codebase
0 commit comments