From: Matthew Fernandez Date: Sun, 25 Oct 2020 03:06:46 +0000 (-0700) Subject: extend CI tool check to Mingle X-Git-Tag: 2.46.0~20^2^2~11^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ceec926a9397c1a45384e8e5764d9682f966761f;p=graphviz extend CI tool check to Mingle Related to #1851. --- diff --git a/ci/tests.py b/ci/tests.py index 7eb8d7a0a..79cb70e1e 100644 --- a/ci/tests.py +++ b/ci/tests.py @@ -10,6 +10,7 @@ import subprocess import os @pytest.mark.parametrize('binary', [ + 'mingle', 'smyrna', ]) def test_existence(binary: str): @@ -19,6 +20,12 @@ def test_existence(binary: str): os_id = os.getenv('OS_ID') + # FIXME: Remove skip when + # https://gitlab.com/graphviz/graphviz/-/issues/1835 is fixed + if os_id in ['ubuntu', 'centos'] and binary == 'mingle': + check_that_tool_does_not_exist(binary, os_id) + pytest.skip('mingle is not built for ' + os_id + ' (#1835)') + # FIXME: Remove skip when # https://gitlab.com/graphviz/graphviz/-/issues/1834 is fixed if os_id == 'centos' and binary == 'smyrna':