mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
expand details BDD tests
There are now minor differences in the output between PHP and Python versions, so introduce specific tests.
This commit is contained in:
@@ -62,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.")
|
||||
|
||||
Reference in New Issue
Block a user