]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/bdd/environment.py
postcodes: introduce a default pattern for countries without postcodes
[nominatim.git] / test / bdd / environment.py
index 0acc73b436158f373474a63cf028166f87460b9a..c11a2c8cdbeef9a274782dd158daf448348abb41 100644 (file)
@@ -50,7 +50,6 @@ 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:
@@ -59,5 +58,5 @@ def after_scenario(context, scenario):
 
 def before_tag(context, tag):
     if tag == 'fail-legacy':
-        if context.config.userdata['TOKENIZER'] in (None, 'legacy'):
+        if context.config.userdata['TOKENIZER'] == 'legacy':
             context.scenario.skip("Not implemented in legacy tokenizer")