()
| 117 | |
| 118 | |
| 119 | def test_vec_env_kwargs(): |
| 120 | env = make_vec_env("MountainCarContinuous-v0", n_envs=1, seed=0, env_kwargs={"goal_velocity": 0.11}) |
| 121 | assert env.get_attr("goal_velocity")[0] == 0.11 |
| 122 | |
| 123 | |
| 124 | def test_vec_env_wrapper_kwargs(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…