Skip to content

Commit 5683cb7

Browse files
committed
fix(make): fix regression for make test
1 parent 78147b3 commit 5683cb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ check: .venv/checked-on
174174
# Run all unit tests. The --files option avoids stashing but passes files; however,
175175
# the hook setup itself does not pass files to pytest (see .pre-commit-config.yaml).
176176
.PHONY: test
177-
test: check .venv/tested-on
177+
test: .venv/tested-on
178178
.venv/tested-on: $(PACKAGE_DEPS) $(PACKAGE_DEPS_TEST)
179179
pre-commit run pytest --hook-stage push --files tests/
180180
echo "Automatically generated by Python Package Makefile on $$(date '+%Y-%m-%d %H:%M:%S %z')." > .venv/tested-on

0 commit comments

Comments
 (0)