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