From 57a7532227c021c13a19b97b10887800b7da094a Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:15:00 +1300 Subject: [PATCH] Docs: add test-examples target `test` becomes `test-macros`, with a new `test` calling both `test-*` targets. --- docs/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 41b24f937..56d59cb3a 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -227,6 +227,11 @@ dummy: PYTHON ?= python3 -.PHONY: test -test: +.PHONY: test test-examples test-macros +test: test-examples test-macros + +test-examples: + $(MAKE) -C source/_images examples + +test-macros: $(PYTHON) tests/macro_commands.py