From 79ffa8cdb79766c672f1a32ff743e162613cc1fd Mon Sep 17 00:00:00 2001 From: khoaguin Date: Tue, 5 Mar 2024 14:55:27 +0700 Subject: [PATCH] [test] skip `test_sync_flow` on windows --- packages/syft/tests/syft/service/sync/sync_flow_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/syft/tests/syft/service/sync/sync_flow_test.py b/packages/syft/tests/syft/service/sync/sync_flow_test.py index 3882a0905f5..e007baf6a03 100644 --- a/packages/syft/tests/syft/service/sync/sync_flow_test.py +++ b/packages/syft/tests/syft/service/sync/sync_flow_test.py @@ -1,8 +1,10 @@ # stdlib +import sys from textwrap import dedent # third party import numpy as np +import pytest # syft absolute import syft as sy @@ -12,6 +14,8 @@ from syft.service.action.action_object import ActionObject +@pytest.mark.flaky(reruns=5, reruns_delay=1) +@pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows") def test_sync_flow(): low_worker = sy.Worker( name="low-test",