]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/bdd/environment.py
fix order when searching for addr:* components
[nominatim.git] / test / bdd / environment.py
index f179c8f13da343283b0aaf4deb855587a471cd6f..ee07e6028c1ca67497082316821fb219a0c0d9f6 100644 (file)
@@ -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 *
@@ -49,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'] == 'legacy':
+            context.scenario.skip("Not implemented in legacy tokenizer")