From: Sarah Hoffmann Date: Wed, 10 Sep 2014 18:52:37 +0000 (+0200) Subject: fix running of DB tests via Makefile X-Git-Tag: v2.3.0~8 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/75cb02a497b3a4a7586d313a771ccd822539509d?hp=-c fix running of DB tests via Makefile Selecting tags for tests to run does not work when the tags are on the features instead of the scenarios. --- 75cb02a497b3a4a7586d313a771ccd822539509d diff --git a/Makefile.am b/Makefile.am index 37fa29c9..2ade09a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,10 +16,10 @@ test-fast: cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} NOMINATIM_REUSE_TEMPLATE=1 lettuce -t -Fail -t -poldi-only test-db: - cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} lettuce -t -Fail -t -poldi-only -t DB + cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} lettuce -t -Fail -t -poldi-only features/db test-db-fast: - cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} NOMINATIM_REUSE_TEMPLATE=1 lettuce -t -Fail -t -poldi-only -t DB + cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} NOMINATIM_REUSE_TEMPLATE=1 lettuce -t -Fail -t -poldi-only features/db test-api: cd tests; NOMINATIM_SERVER=${NOMINATIM_SERVER} lettuce -t -Fail -t -poldi-only features/api