Skip to content

Commit 846ae9b

Browse files
committed
minor changes
1 parent 6525233 commit 846ae9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/integration_tests/training/cli/test_cli_training.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_list_jobs(self, test_job_name):
9393

9494
def test_wait_for_job_running(self, test_job_name):
9595
"""Test that the job transitions to Running state before proceeding with pod tests."""
96-
max_attempts = 12 # Maximum number of attempts (2 minutes total with 10-second intervals)
96+
max_attempts = 10 # Maximum number of attempts (5 minutes total with 30-second intervals)
9797
for attempt in range(1, max_attempts + 1):
9898
logger.info(f"Checking job status (attempt {attempt}/{max_attempts})...")
9999

@@ -191,7 +191,6 @@ def test_list_pods(self, test_job_name):
191191

192192
logger.info(f"Successfully listed pods for job: {test_job_name}")
193193

194-
# @pytest.mark.skip(reason="Skipping since there is ")
195194
def test_get_logs(self, test_job_name):
196195
"""Test getting logs for a specific pod in a job."""
197196
# First, get the pod name from list-pods command

0 commit comments

Comments
 (0)