Skip to content

Commit

Permalink
Disable spawn in test as it breaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
heiner committed May 3, 2024
1 parent 8b73a08 commit b4cdacf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nle/tests/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

import nle # noqa: F401

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


def new_env_one_step():
Expand Down

0 comments on commit b4cdacf

Please sign in to comment.