From 71ef94dae6c09004994d6790b23ffdb053dfc12a Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sat, 24 Nov 2018 12:25:28 +0100 Subject: [PATCH] add Makefile for tests --- test/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/Makefile diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 00000000..0355a170 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,9 @@ +all: bdd php + +bdd: + cd bdd && behave -DREMOVE_TEMPLATE=1 + +php: + cd php && phpunit ./ + +.PHONY: bdd php -- 2.45.2