From: Magnus Jacobsson Date: Sat, 26 Sep 2020 10:13:42 +0000 (+0200) Subject: Skip execution of dot_builtins in tools test for Centos and Fedora builds X-Git-Tag: 2.46.0~20^2^2~55^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33296e02f6f70e649b2f5cb11c94863cb63b77c3;p=graphviz 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. --- 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