Nominatim/test/Makefile
Sarah Hoffmann f6e894a53a port database setup function to python
Hide the former PHP functions in a transition command until
they are removed.
2021-02-25 18:42:54 +01:00

18 lines
237 B
Makefile

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 ./
python:
pytest python
.PHONY: bdd php no-test-db