We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b6e1f commit d14cf1cCopy full SHA for d14cf1c
tests/unit_tests/test_service.py
@@ -11,6 +11,8 @@
11
import asyncio
12
import logging
13
14
+import monarch
15
+
16
import pytest
17
from forge.controller import ForgeActor
18
from forge.controller.service import (
@@ -24,6 +26,11 @@
24
26
from forge.types import ProcessConfig
25
27
from monarch.actor import Actor, endpoint
28
29
+# Temporary workaround - without this, proc_mesh.stop
30
+# will raise an exit code 1 failing all other tests.
31
+monarch.actor.unhandled_fault_hook = lambda failure: None
32
33
34
logger = logging.getLogger(__name__)
35
logger.setLevel(logging.INFO)
36
0 commit comments