From 3aafe8cacfa351330da459621e2759b353eff32d Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 10 Jun 2021 20:02:33 +0930 Subject: [PATCH] Makefile: `pytest` target should depend on ALL_TEST_PROGRAMS. In particular, this includes the test plugins! Not sure why this breaks *now* though. Signed-off-by: Rusty Russell --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e56f81a4c..311541fdf 100644 --- a/Makefile +++ b/Makefile @@ -405,7 +405,7 @@ else endif endif -pytest: $(ALL_PROGRAMS) +pytest: $(ALL_PROGRAMS) $(ALL_TEST_PROGRAMS) ifeq ($(PYTEST),) @echo "py.test is required to run the integration tests, please install using 'pip3 install -r requirements.txt', and rerun 'configure'." exit 1