Skip to content

Commit

Permalink
test harder
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronangliss committed Jan 4, 2025
1 parent 5193d16 commit 5bb3ae4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration_tests/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 5bb3ae4

Please sign in to comment.