Skip to content

Commit

Permalink
Makefile: pytest target should depend on ALL_TEST_PROGRAMS.
Browse files Browse the repository at this point in the history
In particular, this includes the test plugins!

Not sure why this breaks *now* though.

Signed-off-by: Rusty Russell <[email protected]>
  • Loading branch information
rustyrussell committed Jun 10, 2021
1 parent 6c650cf commit 81455f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 81455f1

Please sign in to comment.