diff --git a/test/interop/crewai/test_crewai.py b/test/interop/crewai/test_crewai.py index 7d9fb47ae7..92f02ec96b 100644 --- a/test/interop/crewai/test_crewai.py +++ b/test/interop/crewai/test_crewai.py @@ -40,6 +40,7 @@ def test_type_checks(self) -> None: # runtime check assert isinstance(interop, Interoperable) + @pytest.mark.skipif(sys.platform == "win32", reason="This test is not supported on Windows") def test_convert_tool(self) -> None: with TemporaryDirectory() as tmp_dir: file_path = f"{tmp_dir}/test.txt" diff --git a/test/interop/test_interoperability.py b/test/interop/test_interoperability.py index 412b632613..68cfecea6b 100644 --- a/test/interop/test_interoperability.py +++ b/test/interop/test_interoperability.py @@ -31,6 +31,7 @@ def test_supported_types(self) -> None: @pytest.mark.skipif( sys.version_info < (3, 10) or sys.version_info >= (3, 13), reason="Only Python 3.10, 3.11, 3.12 are supported" ) + @pytest.mark.skipif(sys.platform == "win32", reason="This test is not supported on Windows") def test_crewai(self, monkeypatch: pytest.MonkeyPatch) -> None: monkeypatch.setenv("OPENAI_API_KEY", MOCK_OPEN_AI_API_KEY) from crewai_tools import FileReadTool