mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
118858a55e
The new icu tokenizer is now no longer compatible with the old legacy tokenizer in terms of data structures. Therefore there is also no longer a need to refer to the legacy tokenizer in the name.
18 lines
229 B
Makefile
18 lines
229 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=icu
|
|
|
|
php:
|
|
cd php && phpunit ./
|
|
|
|
python:
|
|
pytest python
|
|
|
|
|
|
.PHONY: bdd php no-test-db
|