Skip to content

Commit d793cbb

Browse files
dulinrileymeta-codesync[bot]
authored andcommitted
Disable test_setup in Github CI (#1752)
Summary: Pull Request resolved: #1752 In Github actions, this test fails like so: ``` FAILED python/tests/test_python_actors.py::test_setup - ValueError: error spawning proc mesh: statuses: Timeout(30.000905376s)=0..1 ``` however, in internal testing it passes multiple stress tests. Disable for now to recover green CI, and investigate the cause in the background. (not reverting the introduction of this test since it does pass internally). Reviewed By: colin2328 Differential Revision: D86225773 fbshipit-source-id: a9149a4df0e6c3a5df1cd9576a3ede6bc60b2a12
1 parent fc46499 commit d793cbb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/tests/test_python_actors.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,6 +1713,8 @@ async def async_setup_with_spawn() -> None:
17131713
await bar.incr.call()
17141714

17151715

1716+
# oss_skip: passes internally but fails on CI with "ValueError: error spawning proc mesh: statuses: Timeout(30.000905376s)=0..1"
1717+
@pytest.mark.oss_skip
17161718
def test_setup() -> None:
17171719
procs = this_host().spawn_procs(bootstrap=setup_with_spawn)
17181720
counter = procs.spawn("counter", Counter, 0)
@@ -1721,6 +1723,8 @@ def test_setup() -> None:
17211723
time.sleep(10)
17221724

17231725

1726+
# oss_skip: passes internally but fails on CI with "ValueError: error spawning proc mesh: statuses: Timeout(30.000905376s)=0..1"
1727+
@pytest.mark.oss_skip
17241728
def test_setup_async() -> None:
17251729
procs = this_host().spawn_procs(bootstrap=async_setup_with_spawn)
17261730
counter = procs.spawn("counter", Counter, 0)

0 commit comments

Comments
 (0)