From ceec926a9397c1a45384e8e5764d9682f966761f Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 24 Oct 2020 20:06:46 -0700 Subject: [PATCH] extend CI tool check to Mingle Related to #1851. --- ci/tests.py | 7 +++++++ 1 file changed, 7 insertions(+) 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': -- 2.40.0