Makefile: make sure that make test-all really runs all tests

The current `make test-all` will only run tests under `test/`. This
is no longer the only place we have tests so update the code to
just run `pytest` to collect all tests.
This commit is contained in:
Michael Vogt 2024-04-16 10:12:44 +02:00
parent 388e367392
commit 1b33251919

View file

@ -245,7 +245,6 @@ test-run:
.PHONY: test-all
test-all:
@$(PYTHON3) -m pytest \
$(SRCDIR)/test \
--rootdir=$(SRCDIR) \
-v