Skip to content

Commit

Permalink
enable
Browse files Browse the repository at this point in the history
  • Loading branch information
Kallinteris-Andreas committed Oct 13, 2024
1 parent 6076f05 commit 3733e96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


@pytest.mark.parametrize(
"spec", non_mujoco_py_env_specs, ids=[spec.id for spec in non_mujoco_py_env_specs]
"spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_env_specs]
)
def test_env(spec):
# Capture warnings
Expand All @@ -53,7 +53,7 @@ def test_env(spec):


@pytest.mark.parametrize(
"env_spec", non_mujoco_py_env_specs, ids=[env.id for env in non_mujoco_py_env_specs]
"env_spec", all_testing_env_specs, ids=[env.id for env in all_testing_env_specs]
)
def test_env_determinism_rollout(env_spec: EnvSpec):
"""Run a rollout with two environments and assert equality.
Expand Down Expand Up @@ -132,7 +132,7 @@ def test_mujoco_reset_state_seeding(env_spec: EnvSpec):


@pytest.mark.parametrize(
"spec", non_mujoco_py_env_specs, ids=[spec.id for spec in non_mujoco_py_env_specs]
"spec", all_testing_env_specs, ids=[spec.id for spec in all_testing_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",
non_mujoco_py_env_specs,
ids=[spec.id for spec in non_mujoco_py_env_specs],
all_testing_env_specs,
ids=[spec.id for spec in all_testing_env_specs],
)
def test_pickle_env(env_spec):
env: gym.Env = env_spec.make()
Expand Down

0 comments on commit 3733e96

Please sign in to comment.