Skip to content

Commit 042be70

Browse files
committed
test: do not remove the job
1 parent 046e9b5 commit 042be70

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/upgrade/raycluster_sdk_upgrade_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ def assert_jobsubmit_withoutLogin(self, cluster):
114114
def assert_jobsubmit_withlogin(self, cluster):
115115
auth_token = run_oc_command(["whoami", "--show-token=true"])
116116
ray_dashboard = cluster.cluster_dashboard_uri()
117+
print(cluster)
118+
print(ray_dashboard)
117119
header = {"Authorization": f"Bearer {auth_token}"}
118120
client = RayJobClient(address=ray_dashboard, headers=header, verify=False)
119121

@@ -146,7 +148,7 @@ def assert_jobsubmit_withlogin(self, cluster):
146148

147149
self.assert_job_completion(status)
148150

149-
client.delete_job(submission_id)
151+
# client.delete_job(submission_id)
150152

151153
def assert_job_completion(self, status):
152154
if status == "SUCCEEDED":

0 commit comments

Comments
 (0)