X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a74e736283c7871a2c47494f18cc65da6b43bccb..efafa5271957fb54b356ec1c90e8613f14de40d4:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index cadfda18..0acc73b4 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -1,6 +1,13 @@ -from behave import * +# SPDX-License-Identifier: GPL-2.0-only +# +# This file is part of Nominatim. (https://nominatim.org) +# +# Copyright (C) 2022 by the Nominatim developer community. +# For a full list of authors see the git log. from pathlib import Path +from behave import * + from steps.geometry_factory import GeometryFactory from steps.nominatim_environment import NominatimEnvironment @@ -19,6 +26,7 @@ userconfig = { 'API_TEST_DB' : 'test_api_nominatim', 'API_TEST_FILE' : (TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf').resolve(), 'SERVER_MODULE_PATH' : None, + 'TOKENIZER' : None, # Test with a custom tokenizer 'PHPCOV' : False, # set to output directory to enable code coverage } @@ -47,3 +55,9 @@ def before_scenario(context, scenario): def after_scenario(context, scenario): if 'DB' in context.tags: context.nominatim.teardown_db(context) + + +def before_tag(context, tag): + if tag == 'fail-legacy': + if context.config.userdata['TOKENIZER'] in (None, 'legacy'): + context.scenario.skip("Not implemented in legacy tokenizer")