Skip to content

Commit

Permalink
Update (base update)
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
vmoens committed Jan 30, 2025
1 parent 64e208a commit c50e2ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -3285,8 +3285,9 @@ def test_dynamic_rollout(self):
RuntimeError,
match="The environment specs are dynamic. Call rollout with return_contiguous=False",
):
rollout = env.rollout(4)
rollout = env.rollout(4, return_contiguous=False)
env.rollout(4, return_contiguous=True)
env.rollout(4)
env.rollout(4, return_contiguous=False)
check_env_specs(env, return_contiguous=False)

@pytest.mark.skipif(not _has_gym, reason="requires gym to be installed")
Expand Down

0 comments on commit c50e2ba

Please sign in to comment.