X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/71ef94dae6c09004994d6790b23ffdb053dfc12a..a33f2c0f5ba43df533b6e137f9151fe67feb20a1:/test/Makefile?ds=sidebyside diff --git a/test/Makefile b/test/Makefile index 0355a170..613b974d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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