X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e92e03e2e6b892e6dc7a931fe0e70de9315bd302..b54ff7d7664eadf3fdf018622540d6fce835502e:/test/bdd/environment.py?ds=sidebyside diff --git a/test/bdd/environment.py b/test/bdd/environment.py index e2e64403..7535c508 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -27,7 +27,6 @@ userconfig = { 'TEST_DB' : 'test_nominatim', 'API_TEST_DB' : 'test_api_nominatim', 'API_TEST_FILE' : TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf', - 'SERVER_MODULE_PATH' : None, 'TOKENIZER' : None, # Test with a custom tokenizer 'STYLE' : 'extratags', 'API_ENGINE': 'falcon' @@ -60,9 +59,3 @@ 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")