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 a203b04 commit 07b775fCopy full SHA for 07b775f
tests/tests_app/runners/backends/test_mp_process.py
@@ -5,8 +5,9 @@
5
from lightning_app.runners.backends import MultiProcessingBackend
6
7
8
+@mock.patch("lightning_app.core.app.AppStatus")
9
@mock.patch("lightning_app.runners.backends.mp_process.multiprocessing")
-def test_backend_create_work_with_set_start_method(multiprocessing_mock):
10
+def test_backend_create_work_with_set_start_method(multiprocessing_mock, *_):
11
backend = MultiProcessingBackend(entrypoint_file="fake.py")
12
work = Mock(spec=LightningWork)
13
work._start_method = "test_start_method"
0 commit comments