From 33296e02f6f70e649b2f5cb11c94863cb63b77c3 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 26 Sep 2020 12:13:42 +0200 Subject: [PATCH] Skip execution of dot_builtins in tools test for Centos and Fedora builds Fails because dot_builtins is not installed for Ubuntu or Centos. See https://gitlab.com/graphviz/graphviz/-/issues/1839. --- rtest/test_tools.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rtest/test_tools.py b/rtest/test_tools.py index ce8e693dd..38fa8400e 100644 --- a/rtest/test_tools.py +++ b/rtest/test_tools.py @@ -116,6 +116,11 @@ def test_tools(tool): if tool == 'mingle' and os_id in ['ubuntu', 'centos']: pytest.skip('mingle is not built for ' + os_id + ' (#1835)') + # FIXME: Remove skip when + # https://gitlab.com/graphviz/graphviz/-/issues/1839 is fixed + if tool == 'dot_builtins' and os_id in ['centos', 'fedora']: + pytest.skip('dot_builtins is not installed for ' + os_id + ' (#1839)') + # FIXME: Remove skip when # https://gitlab.com/graphviz/graphviz/-/issues/1753 and # https://gitlab.com/graphviz/graphviz/-/issues/1836 is fixed -- 2.40.0