Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kallinteris-Andreas committed Oct 13, 2024
1 parent 9a72180 commit 4f53bf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def test_mujoco_reset_state_seeding(env_spec: EnvSpec):


@pytest.mark.parametrize(
"spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_env_specs]
"spec", non_mujoco_py_env_specs, ids=[spec.id for spec in non_mujoco_py_env_specs]
)
def test_render_modes(spec):
env = spec.make()
Expand All @@ -150,8 +150,8 @@ def test_render_modes(spec):

@pytest.mark.parametrize(
"env_spec",
all_testing_env_specs,
ids=[spec.id for spec in all_testing_env_specs],
non_mujoco_py_env_specs,
ids=[spec.id for spec in non_mujoco_py_env_specs],
)
def test_pickle_env(env_spec):
env: gym.Env = env_spec.make()
Expand Down

0 comments on commit 4f53bf3

Please sign in to comment.