File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ metadata:
5
5
labels:
6
6
controller-tools.k8s.io: '1.0'
7
7
kueue.x-k8s.io/queue-name: local-queue-default
8
- testlabel: test
9
- testlabel2: test
10
8
name: unit-test-cluster-ray
11
9
namespace: ns
12
10
spec:
Original file line number Diff line number Diff line change @@ -324,7 +324,6 @@ def test_cluster_creation_no_mcad(mocker):
324
324
config .name = "unit-test-cluster-ray"
325
325
config .write_to_file = True
326
326
config .mcad = False
327
- config .user_labels = {"testlabel" : "test" , "testlabel2" : "test" }
328
327
cluster = Cluster (config )
329
328
330
329
assert cluster .app_wrapper_yaml == f"{ aw_dir } unit-test-cluster-ray.yaml"
@@ -349,7 +348,6 @@ def test_cluster_creation_no_mcad_local_queue(mocker):
349
348
config .mcad = False
350
349
config .write_to_file = True
351
350
config .local_queue = "local-queue-default"
352
- config .user_labels = {"testlabel" : "test" , "testlabel2" : "test" }
353
351
cluster = Cluster (config )
354
352
assert cluster .app_wrapper_yaml == f"{ aw_dir } unit-test-cluster-ray.yaml"
355
353
assert cluster .app_wrapper_name == "unit-test-cluster-ray"
@@ -375,7 +373,6 @@ def test_cluster_creation_no_mcad_local_queue(mocker):
375
373
write_to_file = True ,
376
374
mcad = False ,
377
375
local_queue = "local-queue-default" ,
378
- user_labels = {"testlabel" : "test" , "testlabel2" : "test" },
379
376
)
380
377
cluster = Cluster (config )
381
378
assert cluster .app_wrapper_yaml == f"{ aw_dir } unit-test-cluster-ray.yaml"
You can’t perform that action at this time.
0 commit comments