Skip to content

Commit

Permalink
[test] skip test_sync_flow on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
khoaguin committed Mar 5, 2024
1 parent 77658a0 commit 79ffa8c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/syft/tests/syft/service/sync/sync_flow_test.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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",
Expand Down

0 comments on commit 79ffa8c

Please sign in to comment.