Skip to content

Commit 1f9b5c4

Browse files
committed
test
1 parent 0f133ee commit 1f9b5c4

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

tests/e2e/mnist_raycluster_sdk_aw_kind_test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ def run_mnist_raycluster_sdk_kind(self):
5151

5252
cluster.up()
5353
sleep(45)
54+
api_instance = client.CustomObjectsApi()
55+
rcs = api_instance.list_namespaced_custom_object(
56+
group="ray.io",
57+
version="v1",
58+
namespace=self.namespace,
59+
plural="rayclusters",
60+
)
5461
print("------------------ Ray Cluster ------------------")
5562
for rc in rcs["items"]:
5663
print(rc)

tests/e2e/mnist_raycluster_sdk_kind_test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ def run_mnist_raycluster_sdk_kind(self):
5151

5252
cluster.up()
5353
sleep(45)
54+
api_instance = client.CustomObjectsApi()
55+
rcs = api_instance.list_namespaced_custom_object(
56+
group="ray.io",
57+
version="v1",
58+
namespace=self.namespace,
59+
plural="rayclusters",
60+
)
5461
print("------------------ Ray Cluster ------------------")
5562
for rc in rcs["items"]:
5663
print(rc)

0 commit comments

Comments
 (0)