We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a8425c commit 589d93aCopy full SHA for 589d93a
tests/integration/jobs/test_dsc_job.py
@@ -314,6 +314,10 @@ def test_create_job_with_dsc_infra_config(self):
314
for sk, sv in v.items():
315
expected_infra_spec[attr_map[k]][attr_map[sk]] = sv
316
infra = builder_method(**v)
317
+ # Shape config is not required for non flex shape from user end.
318
+ # When we have shape config, we need Flex shape also:
319
+ if k == "shape_config_details":
320
+ infra = infra.with_shape_name("VM.Standard.E3.Flex")
321
else:
322
expected_infra_spec[attr_map[k]] = v
323
infra = builder_method(v)
0 commit comments