From: Sarah Hoffmann Date: Sat, 24 Nov 2018 11:25:28 +0000 (+0100) Subject: add Makefile for tests X-Git-Tag: v3.3.0~62 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/71ef94dae6c09004994d6790b23ffdb053dfc12a?ds=sidebyside add Makefile for tests --- 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