mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-15 19:31:27 +00:00
* add pygame GUI for frozen_lake.py env * add new line at EOF * pre-commit reformat * improve graphics * new images and dynamic window size * darker tile borders and fix ICC profile * pre-commit hook * adjust elf and stool size * Update frozen_lake.py * reformat * fix #2600 * #2600 * add rgb_array support * reformat * test render api change on FrozenLake * add render support for reset on frozenlake * add clock on pygame render * new render api for blackjack * new render api for cliffwalking * new render api for Env class * update reset method, lunar and Env * fix wrapper * fix reset lunar * new render api for box2d envs * new render api for mujoco envs * fix bug * new render api for classic control envs * fix tests * add render_mode None for CartPole * new render api for test fake envs * pre-commit hook * fix FrozenLake * fix FrozenLake * more render_mode to super - frozenlake * remove kwargs from frozen_lake new * pre-commit hook * add deprecated render method * add backwards compatibility * fix test * add _render * move pygame.init() (avoid pygame dependency on init) * fix pygame dependencies * remove collect_render() maintain multi-behaviours .render() * add type hints * fix renderer * don't call .render() with None * improve docstring * add single_rgb_array to all envs * remove None from metadata["render_modes"] * add type hints to test_env_checkers * fix lint * add comments to renderer * add comments to single_depth_array and single_state_pixels * reformat * add deprecation warnings and env.render_mode declaration * fix lint * reformat * fix tests * add docs * fix car racing determinism * remove warning test envs, customizable modes on renderer * remove commments and add todo for env_checker * fix car racing * replace render mode check with assert * update new mujoco * reformat * reformat * change metaclass definition * fix tests * implement mark suggestions (test, docs, sets) * check_render Co-authored-by: J K Terry <jkterry0@gmail.com>
102 lines
3.0 KiB
Python
102 lines
3.0 KiB
Python
from typing import List
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
from gym import envs
|
|
from gym.spaces import Box
|
|
from gym.utils.env_checker import check_env
|
|
from tests.envs.spec_list import spec_list, spec_list_no_mujoco_py
|
|
|
|
|
|
# This runs a smoketest on each official registered env. We may want
|
|
# to try also running environments which are not officially registered
|
|
# envs.
|
|
@pytest.mark.filterwarnings(
|
|
"ignore:.*We recommend you to use a symmetric and normalized Box action space.*"
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"spec", spec_list_no_mujoco_py, ids=[spec.id for spec in spec_list_no_mujoco_py]
|
|
)
|
|
def test_env(spec):
|
|
# Capture warnings
|
|
with pytest.warns(None) as warnings:
|
|
env = spec.make()
|
|
|
|
# Test if env adheres to Gym API
|
|
check_env(env, skip_render_check=True)
|
|
|
|
# Check that dtype is explicitly declared for gym.Box spaces
|
|
for warning_msg in warnings:
|
|
assert "autodetected dtype" not in str(warning_msg.message)
|
|
|
|
ob_space = env.observation_space
|
|
act_space = env.action_space
|
|
ob = env.reset()
|
|
assert ob_space.contains(ob), f"Reset observation: {ob!r} not in space"
|
|
if isinstance(ob_space, Box):
|
|
# Only checking dtypes for Box spaces to avoid iterating through tuple entries
|
|
assert (
|
|
ob.dtype == ob_space.dtype
|
|
), f"Reset observation dtype: {ob.dtype}, expected: {ob_space.dtype}"
|
|
|
|
a = act_space.sample()
|
|
observation, reward, done, _info = env.step(a)
|
|
assert ob_space.contains(
|
|
observation
|
|
), f"Step observation: {observation!r} not in space"
|
|
assert np.isscalar(reward), f"{reward} is not a scalar for {env}"
|
|
assert isinstance(done, bool), f"Expected {done} to be a boolean"
|
|
if isinstance(ob_space, Box):
|
|
assert (
|
|
observation.dtype == ob_space.dtype
|
|
), f"Step observation dtype: {ob.dtype}, expected: {ob_space.dtype}"
|
|
|
|
env.close()
|
|
|
|
|
|
@pytest.mark.parametrize("spec", spec_list, ids=[spec.id for spec in spec_list])
|
|
def test_reset_info(spec):
|
|
|
|
with pytest.warns(None):
|
|
env = spec.make()
|
|
|
|
ob_space = env.observation_space
|
|
obs = env.reset()
|
|
assert ob_space.contains(obs)
|
|
obs = env.reset(return_info=False)
|
|
assert ob_space.contains(obs)
|
|
obs, info = env.reset(return_info=True)
|
|
assert ob_space.contains(obs)
|
|
assert isinstance(info, dict)
|
|
env.close()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"spec", spec_list_no_mujoco_py, ids=[spec.id for spec in spec_list_no_mujoco_py]
|
|
)
|
|
def test_render_modes(spec):
|
|
env = spec.make()
|
|
|
|
for mode in env.metadata.get("render_modes", []):
|
|
if mode != "human":
|
|
new_env = spec.make(render_mode=mode)
|
|
|
|
new_env.reset()
|
|
new_env.step(new_env.action_space.sample())
|
|
new_env.render()
|
|
|
|
|
|
def test_env_render_result_is_immutable():
|
|
environs = [
|
|
envs.make("Taxi-v3", render_mode="ansi"),
|
|
envs.make("FrozenLake-v1", render_mode="ansi"),
|
|
]
|
|
|
|
for env in environs:
|
|
env.reset()
|
|
output = env.render()
|
|
assert isinstance(output, List)
|
|
assert isinstance(output[0], str)
|
|
env.close()
|