Skip to content

Commit b4cdacf

Browse files
committed
1 parent 8b73a08 commit b4cdacf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nle/tests/test_system.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
import nle # noqa: F401
1111

12-
START_METHODS = [m for m in ("fork", "spawn") if m in mp.get_all_start_methods()]
12+
# TODO(heiner): Re-enable spawn after fixing issue with it on MacOS
13+
START_METHODS = [m for m in ("fork",) if m in mp.get_all_start_methods()]
1314

1415

1516
def new_env_one_step():

0 commit comments

Comments
 (0)