mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 05:35:13 +03:00
f6e894a53a
Hide the former PHP functions in a transition command until they are removed.
18 lines
237 B
Makefile
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
|