From ec4aed878c0629f9237db9fc7641beb871e9d27b Mon Sep 17 00:00:00 2001 From: Mathieu Pellerin Date: Wed, 27 Nov 2024 16:04:27 +0700 Subject: [PATCH] Disable Windows for now --- test/spix/smoke_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/spix/smoke_test.py b/test/spix/smoke_test.py index 0e8f9f44c1..3dd91be145 100755 --- a/test/spix/smoke_test.py +++ b/test/spix/smoke_test.py @@ -233,7 +233,8 @@ def test_svg(app, screenshot_path, screenshot_check, extra, process_alive): @pytest.mark.skipif( - platform.system() == "Darwin", reason="PostGIS test requires docker" + platform.system() != "Linux", + reason="PostGIS test requires a docker linux container", ) @pytest.mark.project_file("test_postgis_ssl.qgz") def test_postgis_ssl(app, screenshot_path, screenshot_check, extra, process_alive):