Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions test/integration_tests/training/sdk/test_sdk_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ def test_list_jobs(self, pytorch_job):
job_names = [job.metadata.name for job in jobs]
assert pytorch_job.metadata.name in job_names

#
def test_refresh_job(self, pytorch_job):
pytorch_job.refresh()
time.sleep(15)
time.sleep(60)
assert pytorch_job.status is not None, "Job status should not be None"
logger.info(f"Refreshed job status:\n{yaml.dump(pytorch_job.status)}")

Expand Down
Loading