From 3733e966816f39ca6cac645816f7bda6e4020fcb Mon Sep 17 00:00:00 2001 From: Kallinteris Andreas Date: Sun, 13 Oct 2024 08:40:02 +0300 Subject: [PATCH] enable --- tests/test_envs.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_envs.py b/tests/test_envs.py index f880b297..3bcb9569 100644 --- a/tests/test_envs.py +++ b/tests/test_envs.py @@ -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 @@ -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. @@ -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() @@ -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()