diff --git a/integration_tests/test_env.py b/integration_tests/test_env.py index 833687021..2e0237cad 100644 --- a/integration_tests/test_env.py +++ b/integration_tests/test_env.py @@ -66,13 +66,13 @@ def test_random_gymnasium_players_gen8(): play_function(env, 3) -@pytest.mark.timeout(30) +@pytest.mark.timeout(60) def test_random_gymnasium_player_doubles_gen8(): env = CIEnv( battle_format="gen8randomdoublesbattle", log_level=25, start_challenging=False ) - env.start_challenging(3) - play_function(env, 3) + env.start_challenging(10) + play_function(env, 10) @pytest.mark.timeout(30) @@ -82,13 +82,13 @@ def test_random_gymnasium_players_gen9(): play_function(env, 3) -@pytest.mark.timeout(30) +@pytest.mark.timeout(60) def test_random_gymnasium_player_doubles_gen9(): env = CIEnv( battle_format="gen9randomdoublesbattle", log_level=25, start_challenging=False ) - env.start_challenging(3) - play_function(env, 3) + env.start_challenging(10) + play_function(env, 10) @pytest.mark.timeout(60)