From 7cd793eb27264917cfc31724d5cf99785b69514e Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Tue, 20 Oct 2020 14:48:44 +0200 Subject: [PATCH] Add skip of test_1813 also for macOS Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1857. --- rtest/test_regression.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rtest/test_regression.py b/rtest/test_regression.py index 51032d06e..425f9b857 100644 --- a/rtest/test_regression.py +++ b/rtest/test_regression.py @@ -332,11 +332,13 @@ def test_1783(): assert ret != -signal.SIGSEGV, 'Graphviz segfaulted' # FIXME: Remove skip when +# https://gitlab.com/graphviz/graphviz/-/issues/1857 and # https://gitlab.com/graphviz/graphviz/-/issues/1816 is fixed @pytest.mark.skipif( os.environ.get('build_system') == 'cmake' or + platform.system() == 'Darwin' or platform.system() == 'Windows', - reason='gvedit is not built for Windows or using CMake (#1816)' + reason='gvedit is not built for macOS or Windows or using CMake (#1816 & #1857)' ) def test_1813(): ''' -- 2.40.0