Nominatim/test/Makefile
2021-05-24 10:41:42 +02:00

18 lines
236 B
Makefile

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