From e706cea6e53bc8f0eef81d577a8dd7c242b6fc32 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Thu, 30 Jul 2020 17:37:44 +0200 Subject: [PATCH] Add temporary skip of some gvpr example tests Hangs because of https://gitlab.com/graphviz/graphviz/-/issues/1784 --- rtest/test_examples.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rtest/test_examples.py b/rtest/test_examples.py index 5d6b65229..dc979d086 100644 --- a/rtest/test_examples.py +++ b/rtest/test_examples.py @@ -53,6 +53,13 @@ def test_gvpr_example(src): if shutil.which('gvpr') is None: pytest.skip('GVPR not available') +# FIXME: remove when https://gitlab.com/graphviz/graphviz/-/issues/1784 is fixed + if os.environ.get('build_system') == 'msbuild' and \ + os.environ.get('configuration') == 'Debug' and \ + src in ['bbox', 'col']: + pytest.skip('GVPR tests "bbox" and "col" hangs on Windows MSBuild Debug ' + 'builds (#1784)') + # construct an absolute path to the example path = os.path.join(os.path.abspath(os.path.dirname(__file__)), '../cmd/gvpr/lib', src) -- 2.40.0