Hangs because of https://gitlab.com/graphviz/graphviz/-/issues/1784
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)