X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f0088ca2be3bafc77993558d794715c652eb7b25..63dc503b8d86f040e80c24a6cf65f5275dc33221:/test/Makefile 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