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