From 1b33251919624f1ee09679507d22a73bf7ea14d3 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 16 Apr 2024 10:12:44 +0200 Subject: [PATCH] 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. --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 5a51888b..630f5fe9 100644 --- a/Makefile +++ b/Makefile @@ -245,7 +245,6 @@ test-run: .PHONY: test-all test-all: @$(PYTHON3) -m pytest \ - $(SRCDIR)/test \ --rootdir=$(SRCDIR) \ -v