]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/Makefile
move SearchDescription building into tokens
[nominatim.git] / test / Makefile
index 0355a170b4f257815e43e87b47199668ae9af303..b8afdf9b2b9eb3f240f68468a1efc8e6a3d63dca 100644 (file)
@@ -1,9 +1,17 @@
 all: bdd php
+no-test-db: bdd-no-test-db php
 
 bdd:
        cd bdd && behave -DREMOVE_TEMPLATE=1
 
+icu:
+       cd bdd && behave -DREMOVE_TEMPLATE=1 -DTOKENIZER=legacy_icu
+
 php:
        cd php && phpunit ./
 
-.PHONY: bdd php
+python:
+       pytest python
+
+
+.PHONY: bdd php no-test-db