]> granicus.if.org Git - graphviz/commitdiff
Skip execution of mingle in tools test for Ubuntu and Centos builds
authorMagnus Jacobsson <magnus.jacobsson@berotec.se>
Fri, 25 Sep 2020 14:56:02 +0000 (16:56 +0200)
committerMagnus Jacobsson <magnus.jacobsson@berotec.se>
Fri, 2 Oct 2020 12:47:15 +0000 (14:47 +0200)
Fails because mingle is not built for Ubuntu and Centos. See
https://gitlab.com/graphviz/graphviz/-/issues/1835.

rtest/test_tools.py

index 40d6466e27530b23652708da5144e562884f697c..09ff599b3dc7b94af5b115d3a398b1215d60a9aa 100644 (file)
@@ -46,6 +46,11 @@ def test_tools(tool):
     if tool == 'smyrna' and os_id == 'centos':
       pytest.skip('smyrna is not built for Centos (#1834)')
 
+    # FIXME: Remove skip when
+    # https://gitlab.com/graphviz/graphviz/-/issues/1835 is fixed
+    if tool == 'mingle' and os_id in ['ubuntu', 'centos']:
+      pytest.skip('mingle is not built for ' + os_id + ' (#1835)')
+
     subprocess.check_call(
         [tool, '-?'],
         stdin=subprocess.DEVNULL,