]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/Makefile
use group() for regex matches
[nominatim.git] / test / Makefile
index 0355a170b4f257815e43e87b47199668ae9af303..613b974d9fecbafd872aad1c2f756f7be99683ae 100644 (file)
@@ -1,9 +1,17 @@
 all: bdd php
+no-test-db: bdd-no-test-db php
 
 bdd:
        cd bdd && behave -DREMOVE_TEMPLATE=1
 
+bdd-no-test-db:
+       cd bdd && behave -DREMOVE_TEMPLATE=1 db osm2pgsql
+
 php:
        cd php && phpunit ./
 
-.PHONY: bdd php
+python:
+       pytest python
+
+
+.PHONY: bdd php no-test-db