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 <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2021-06-10 20:02:33 +09:30
parent 064ad486e3
commit 3aafe8cacf

View File

@@ -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