From: Magnus Jacobsson Date: Sun, 20 Sep 2020 15:26:41 +0000 (+0200) Subject: Skip execution of smyrna in tools test for Windows MSBuilds X-Git-Tag: 2.46.0~20^2^2~55^2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e2a404eb1efed3732418b25dc486de002d73dd3;p=graphviz Skip execution of smyrna in tools test for Windows MSBuilds Fails because of missing DLLs. See https://gitlab.com/graphviz/graphviz/-/issues/1829. --- diff --git a/rtest/test_tools.py b/rtest/test_tools.py index 0afe8a01b..75691261d 100644 --- a/rtest/test_tools.py +++ b/rtest/test_tools.py @@ -1,3 +1,4 @@ +import os import pytest import subprocess @@ -32,6 +33,12 @@ import subprocess 'unflatten', ]) def test_tools(tool): + + # FIXME: Remove skip when + # https://gitlab.com/graphviz/graphviz/-/issues/1829 is fixed + if tool == 'smyrna' and os.getenv('build_system') == 'msbuild': + pytest.skip('smyrna fails to start because of missing DLLs in Windows MSBuild builds (#1829)') + subprocess.check_call( [tool, '-?'], stdin=subprocess.DEVNULL,