]> granicus.if.org Git - graphviz/commitdiff
Skip execution of dot_builtins in tools test for Centos and Fedora builds
authorMagnus Jacobsson <magnus.jacobsson@berotec.se>
Sat, 26 Sep 2020 10:13:42 +0000 (12:13 +0200)
committerMagnus Jacobsson <magnus.jacobsson@berotec.se>
Fri, 2 Oct 2020 12:50:35 +0000 (14:50 +0200)
Fails because dot_builtins is not installed for Ubuntu or Centos. See
https://gitlab.com/graphviz/graphviz/-/issues/1839.

rtest/test_tools.py

index ce8e693dd815ff426bd76ac9a91e32439de3db4d..38fa8400e1640cc6348f9adc5e8776bf935a6f94 100644 (file)
@@ -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