Skip to content

Commit c39cc3c

Browse files
committed
fix(make): fix regression for make test
1 parent 7f10dde commit c39cc3c

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
@@ -176,7 +176,7 @@ check: .venv/checked-on
176176
# Run all unit tests. The --files option avoids stashing but passes files; however,
177177
# the hook setup itself does not pass files to pytest (see .pre-commit-config.yaml).
178178
.PHONY: test
179-
test: check .venv/tested-on
179+
test: .venv/tested-on
180180
.venv/tested-on: $(PACKAGE_DEPS) $(PACKAGE_DEPS_TEST)
181181
pre-commit run pytest --hook-stage push --files tests/
182182
echo "Automatically generated by Python Package Makefile on $$(date '+%Y-%m-%d %H:%M:%S %z')." > .venv/tested-on

0 commit comments

Comments
 (0)