X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/474aea61da51df47cfb5b3cc8f4fdff9b0cf23fc..d4f3eda3145539aa2516da2b8e80bb54b3227e95:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index 6aec8f59..a7135f38 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -30,8 +30,7 @@ userconfig = { 'SERVER_MODULE_PATH' : None, 'TOKENIZER' : None, # Test with a custom tokenizer 'STYLE' : 'extratags', - 'API_ENGINE': 'falcon', - 'PHPCOV' : False, # set to output directory to enable code coverage + 'API_ENGINE': 'falcon' } use_step_matcher("re") @@ -61,15 +60,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") - if tag == 'v1-api-php-only': - if context.config.userdata['API_ENGINE'] != 'php': - context.scenario.skip("Only valid with PHP version of v1 API.") - if tag == 'v1-api-python-only': - if context.config.userdata['API_ENGINE'] == 'php': - context.scenario.skip("Only valid with Python version of v1 API.")