mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 06:07:08 +00:00
* Remove additional ignores from flake8 * Remove all unused imports * Remove all unused imports * Update flake8 and pyupgrade * F841, removed unused variables * E731, removed lambda assignment to variables * Remove E731, F403, F405, F524 * Remove E722, bare exceptions * Remove E712, compare variable == True or == False to is True or is False * Remove E402, module level import not at top of file * Added --pre-file-ignores * Add --per-file-ignores removing E741, E302 and E704 * Add E741, do not use variables named ‘l’, ‘O’, or ‘I’ to ignore issues in classic control * Fixed issues for pytest==6.2 * Remove unnecessary # noqa * Edit comment with the removal of E302 * Added warnings and declared module, attr for pyright type hinting * Remove unused import * Removed flake8 E302 * Updated flake8 from 3.9.2 to 4.0.1 * Remove unused variable
103 lines
3.2 KiB
Python
103 lines
3.2 KiB
Python
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
|
|
|
|
|
|
# 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, ids=[spec.id for spec in spec_list])
|
|
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, warn=True, 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}"
|
|
|
|
for mode in env.metadata.get("render_modes", []):
|
|
env.render(mode=mode)
|
|
|
|
# Make sure we can render the environment after close.
|
|
for mode in env.metadata.get("render_modes", []):
|
|
env.render(mode=mode)
|
|
|
|
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()
|
|
|
|
|
|
# Run a longer rollout on some environments
|
|
def test_random_rollout():
|
|
for env in [envs.make("CartPole-v1"), envs.make("FrozenLake-v1")]:
|
|
ob = env.reset()
|
|
for _ in range(10):
|
|
assert env.observation_space.contains(ob)
|
|
action = env.action_space.sample()
|
|
assert env.action_space.contains(action)
|
|
(ob, _reward, done, _info) = env.step(action)
|
|
if done:
|
|
break
|
|
env.close()
|
|
|
|
|
|
def test_env_render_result_is_immutable():
|
|
environs = [
|
|
envs.make("Taxi-v3"),
|
|
envs.make("FrozenLake-v1"),
|
|
]
|
|
|
|
for env in environs:
|
|
env.reset()
|
|
output = env.render(mode="ansi")
|
|
assert isinstance(output, str)
|
|
env.close()
|