mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
2b11a47a2f
Add a section on setting up the development environment which now also includes the former chapter on recreating the documentation. Move the README from test/ into the manual as the new Testing chapter.
15 lines
213 B
Makefile
15 lines
213 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 ./
|
|
|
|
|
|
.PHONY: bdd php no-test-db
|