]> git.openstreetmap.org Git - nominatim.git/commitdiff
add Makefile for tests
authorSarah Hoffmann <lonvia@denofr.de>
Sat, 24 Nov 2018 11:25:28 +0000 (12:25 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 24 Nov 2018 11:25:28 +0000 (12:25 +0100)
test/Makefile [new file with mode: 0644]

diff --git a/test/Makefile b/test/Makefile
new file mode 100644 (file)
index 0000000..0355a17
--- /dev/null
@@ -0,0 +1,9 @@
+all: bdd php
+
+bdd:
+       cd bdd && behave -DREMOVE_TEMPLATE=1
+
+php:
+       cd php && phpunit ./
+
+.PHONY: bdd php