We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ca7ca commit 6d64e6eCopy full SHA for 6d64e6e
tests/bdd/steps/steps_execute.py
@@ -98,6 +98,10 @@ def setup_inline_lua_style(context):
98
99
@given("the style file '(?P<style>.+)'")
100
def setup_style_file(context, style):
101
+ if style.endswith('.lua') and not context.config.userdata['HAVE_LUA']:
102
+ context.scenario.skip("Lua support not compiled in.")
103
+ return
104
+
105
context.osm2pgsql_params.extend(('-S', str(context.test_data_dir / style)))
106
107
0 commit comments