9b405b2ca8a2599097115897fb0af6875486416e,tests/garage/tf/envs/test_gym_base.py,TestGymEnv,test_all_gym_envs_pickleable,#TestGymEnv#Any#,32

Before Change


        if spec._env_name.startswith("Defender"):
            pytest.skip(
                "Defender-* envs bundled in atari-py 0.2.x don\"t load")
        if any(name == spec.id for name in _get_unsupported_env_list()):
            pytest.skip("Skip unsupported Bullet environments")
        env = GymEnv(spec.id)
        step_env_with_gym_quirks(env,

After Change


                "Defender-* envs bundled in atari-py 0.2.x don\"t load")
        if spec.id in _get_unsupported_env_list():
            pytest.skip("Skip unsupported Bullet environments")
        if "Kuka" in spec.id:
            // Kuka environments calls py_bullet.resetSimulation() in reset()
            // unconditionally, which globally resets other simulations. So
            // only one Kuka environment can be tested.
            pytest.skip("Skip Kuka Bullet environments")
        env = GymEnv(spec.id)
        step_env_with_gym_quirks(env,
                                 spec,
                                 n=1,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: rlworkgroup/garage
Commit Name: 9b405b2ca8a2599097115897fb0af6875486416e
Time: 2020-08-14
Author: ericyihc@gmail.com
File Name: tests/garage/tf/envs/test_gym_base.py
Class Name: TestGymEnv
Method Name: test_all_gym_envs_pickleable


Project Name: dask/distributed
Commit Name: eecf25bd55b8bd6b58a3ee9c43e6e65f784ec4a4
Time: 2019-09-10
Author: jcrist@users.noreply.github.com
File Name: distributed/protocol/tests/test_protocol.py
Class Name:
Method Name: test_large_messages


Project Name: rlworkgroup/garage
Commit Name: 9b405b2ca8a2599097115897fb0af6875486416e
Time: 2020-08-14
Author: ericyihc@gmail.com
File Name: tests/garage/tf/envs/test_gym_base.py
Class Name: TestGymEnv
Method Name: test_all_gym_envs