From: Magnus Jacobsson Date: Fri, 25 Sep 2020 14:56:02 +0000 (+0200) Subject: Skip execution of mingle in tools test for Ubuntu and Centos builds X-Git-Tag: 2.46.0~20^2^2~55^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4a2fa2afbadfbc9989ea034417b8253a757072f;p=graphviz 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. --- 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,