mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 06:07:08 +00:00
* Remove AtariEnv in favour of official ALE Python * More robust frame stacking test case * Atari documentation update
31 lines
831 B
Python
31 lines
831 B
Python
import pytest
|
|
|
|
import gym
|
|
from gym.wrappers import ResizeObservation
|
|
|
|
try:
|
|
import ale_py
|
|
except ImportError:
|
|
ale_py = None
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
ale_py is None, reason="Only run this test when ale_py is installed"
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"env_id", ["PongNoFrameskip-v0", "SpaceInvadersNoFrameskip-v0"]
|
|
)
|
|
@pytest.mark.parametrize("shape", [16, 32, (8, 5), [10, 7]])
|
|
def test_resize_observation(env_id, shape):
|
|
env = gym.make(env_id)
|
|
env = ResizeObservation(env, shape)
|
|
|
|
assert env.observation_space.shape[-1] == 3
|
|
obs = env.reset()
|
|
if isinstance(shape, int):
|
|
assert env.observation_space.shape[:2] == (shape, shape)
|
|
assert obs.shape == (shape, shape, 3)
|
|
else:
|
|
assert env.observation_space.shape[:2] == tuple(shape)
|
|
assert obs.shape == tuple(shape) + (3,)
|