import os
@pytest.mark.parametrize('binary', [
+ 'mingle',
'smyrna',
])
def test_existence(binary: str):
os_id = os.getenv('OS_ID')
+ # FIXME: Remove skip when
+ # https://gitlab.com/graphviz/graphviz/-/issues/1835 is fixed
+ if os_id in ['ubuntu', 'centos'] and binary == 'mingle':
+ check_that_tool_does_not_exist(binary, os_id)
+ pytest.skip('mingle is not built for ' + os_id + ' (#1835)')
+
# FIXME: Remove skip when
# https://gitlab.com/graphviz/graphviz/-/issues/1834 is fixed
if os_id == 'centos' and binary == 'smyrna':