Fails because smyrna is not built for Centos. See
https://gitlab.com/graphviz/graphviz/-/issues/1834.
])
def test_tools(tool):
+ os_id = os.getenv('OS_ID')
+
# FIXME: Remove skip when
# https://gitlab.com/graphviz/graphviz/-/issues/1829 is fixed
if tool == 'smyrna' and os.getenv('build_system') == 'msbuild':
pytest.skip('smyrna fails to start because of missing DLLs in Windows MSBuild builds (#1829)')
+ # FIXME: Remove skip when
+ # https://gitlab.com/graphviz/graphviz/-/issues/1834 is fixed
+ if tool == 'smyrna' and os_id == 'centos':
+ pytest.skip('smyrna is not built for Centos (#1834)')
+
subprocess.check_call(
[tool, '-?'],
stdin=subprocess.DEVNULL,