From e4a2fa2afbadfbc9989ea034417b8253a757072f Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Fri, 25 Sep 2020 16:56:02 +0200 Subject: [PATCH] Skip execution of mingle in tools test for Ubuntu and Centos builds Fails because mingle is not built for Ubuntu and Centos. See https://gitlab.com/graphviz/graphviz/-/issues/1835. --- rtest/test_tools.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rtest/test_tools.py b/rtest/test_tools.py index 40d6466e2..09ff599b3 100644 --- a/rtest/test_tools.py +++ b/rtest/test_tools.py @@ -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, -- 2.40.0