From 71ed8bb546ab855235d7d4ecca9f672cc83951be Mon Sep 17 00:00:00 2001 From: Eric Date: Mon, 5 Jun 2023 15:46:17 -0700 Subject: [PATCH] disabling binary tests for now on windows --- tests/test_babase/test_imports.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_babase/test_imports.py b/tests/test_babase/test_imports.py index fccd3e7f..7668233e 100644 --- a/tests/test_babase/test_imports.py +++ b/tests/test_babase/test_imports.py @@ -14,6 +14,12 @@ if TYPE_CHECKING: def test_babase_imports() -> None: """Testing.""" import subprocess + import platform + + # Currently skipping this on Windows, as we can't assemble a + # complete build there currently (can only compile binaries). + if platform.system() == 'Windows': + return # Put together the headless binary we use for testing. subprocess.run(['make', 'cmake-server-build'], check=True)