The `reset` method does not provide a `seed` or `**kwargs` keyword argument.

Checking API-Conformity fails.

  • add a test that is running more or less the following:
from gym.utils.env_checker import check_env
from robofish.gym_guppy.envs import ConfigurableGuppyEnv, GuppyEnv

check_env(ConfigurableGuppyEnv())
  • add seed to GuppyEnv.reset
  • use seed to initialize init pose generators in ConfigurableGuppyEnv
Edited by mhocke