X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5ff35d998459260e60bcb01aa7302f4706d043b1..2171b385519841af0e175d88e51741c5322fba25:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index ee07e602..afaa5151 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -27,6 +27,8 @@ userconfig = { 'API_TEST_FILE' : (TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf').resolve(), 'SERVER_MODULE_PATH' : None, 'TOKENIZER' : None, # Test with a custom tokenizer + 'STYLE' : 'extratags', + 'API_ENGINE': 'php', 'PHPCOV' : False, # set to output directory to enable code coverage } @@ -50,7 +52,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: @@ -61,3 +62,9 @@ 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.")