8000 adjusted makefile path · localstack/localstack@a23fdd5 · GitHub
[go: up one dir, main page]

Skip to content

Commit a23fdd5

Browse files
committed
adjusted makefile path
1 parent 73b3052 commit a23fdd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ test-coverage: test ## Run automated tests and create coverage report
119119
lint: ## Run code linter to check code style, check if formatter would make changes and check if dependency pins need to be updated
120120
($(VENV_RUN); python -m ruff check --output-format=full . && python -m ruff format --check .)
121121
$(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
122-
$(VENV_RUN); openapi-spec-validator localstack-core/localstack/spec/openapi.yaml
122+
$(VENV_RUN); openapi-spec-validator localstack-core/localstack/openapi.yaml
123123

124124
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
125125
($(VENV_RUN); python -m ruff check --output-format=full `git diff --diff-filter=d --name-only HEAD | grep '\.py$$' | xargs` && python -m ruff format --check `git diff --diff-filter=d --name-only HEAD | grep '\.py$$' | xargs`)

0 commit comments

Comments
 (0)
0