X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/40cb17d2995baaba6bec299d4e6dc65b25dbdc28..2e6ff1b7508e738c1ecb4647aa5890422b771121:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index f179c8f1..c11a2c8c 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -1,3 +1,9 @@ +# 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 * @@ -44,8 +50,13 @@ def before_scenario(context, scenario): context.nominatim.setup_api_db() elif 'UNKNOWNDB' in context.tags: context.nominatim.setup_unknown_db() - context.scene = None 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'] == 'legacy': + context.scenario.skip("Not implemented in legacy tokenizer")