Skip to content

Commit 08ed883

Browse files
committed
test: Remove ray_lightning from requirements
1 parent 210b102 commit 08ed883

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e/mnist_rayjob_mcad_raycluster_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ func TestMNISTRayJobMCADRayCluster(t *testing.T) {
233233
{
234234
"pip": [
235235
"pytorch_lightning==1.5.10",
236-
"ray_lightning",
237236
"torchmetrics==0.9.1",
238237
"torchvision==0.12.0"
239238
],

test/support/ray.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ func GetRayJobLogs(t Test, job *rayv1alpha1.RayJob) string {
4545
t.T().Helper()
4646
response := t.Client().Core().CoreV1().RESTClient().
4747
Get().
48-
AbsPath("/api/v1/namespaces", job.Namespace, "services", "http:"+job.Status.RayClusterName+"-head-svc:dashboard", "proxy", "api", "jobs", job.Status.JobId, "logs").Do(t.Ctx())
48+
AbsPath("/api/v1/namespaces", job.Namespace, "services", "http:"+job.Status.RayClusterName+"-head-svc:dashboard", "proxy", "api", "jobs", job.Status.JobId, "logs").
49+
Do(t.Ctx())
4950
t.Expect(response.Error()).NotTo(gomega.HaveOccurred())
5051

5152
body := map[string]string{}

0 commit comments

Comments
 (0)