Nominatim/test/Makefile

18 lines
229 B
Makefile
Raw Normal View History

2018-11-24 14:25:28 +03:00
all: bdd php
no-test-db: bdd-no-test-db php
2018-11-24 14:25:28 +03:00
bdd:
cd bdd && behave -DREMOVE_TEMPLATE=1
icu:
cd bdd && behave -DREMOVE_TEMPLATE=1 -DTOKENIZER=icu
2018-11-24 14:25:28 +03:00
php:
cd php && phpunit ./
python:
pytest python
.PHONY: bdd php no-test-db