From 70732a4a9362b888cd8bcd6e6f5e1458be1de4f6 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Mon, 27 Jul 2020 23:07:25 +0200 Subject: [PATCH] Add temporary skip of examples test for MSBuild builds on Windows Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1777. --- rtest/test_examples.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rtest/test_examples.py b/rtest/test_examples.py index 412795ce4..5d6b65229 100644 --- a/rtest/test_examples.py +++ b/rtest/test_examples.py @@ -15,6 +15,12 @@ def c_compiler(): @pytest.mark.parametrize('src', ['demo.c', 'dot.c', 'example.c', 'neatopack.c', 'simple.c']) +# FIXME: Remove skip when +# https://gitlab.com/graphviz/graphviz/-/issues/1777 is fixed +@pytest.mark.skipif( + os.getenv('build_system') == 'msbuild', + reason='Windows MSBuild release does not contain any header files (#1777)' +) def test_compile_example(src): '''try to compile the example''' -- 2.40.0