You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self._location: str# Azure location (region) where test VMs are located
146
146
self._image: str# Image used to create the test VMs; it can be empty if LISA chose the size, or when using an existing VM
147
147
148
+
self._vm_size: str# VM size to use when creating scale sets; empty means use the template default
149
+
self._security_type: str# ARM security type (e.g. 'ConfidentialVM') to use when deploying scale sets; empty means template default
150
+
148
151
self._is_vhd: bool# True when the test VMs were created by LISA from a VHD; this is usually used to validate a new VHD and the test Agent is not installed
149
152
150
153
# username and public SSH key for the admin account used to connect to the test VMs
# The test suite verifies that disallowed extensions are not processed, but the agent should still report status.
3
3
#
4
+
# TODO: This test suite takes ~30 minutes to run. This should be optimized to reduce impact to pipeline run times.
4
5
name: "ExtensionPolicy"
5
6
tests:
6
7
- "ext_policy/ext_policy.py"
7
8
images:
8
-
- "endorsed"
9
+
- "random(endorsed,10)"# TODO: Remove randomization and run on all endorsed images once the test suite is optimized to reduce runtime.
9
10
- "cvm-endorsed"
10
-
# This test is executed in southcentralus as a workaround for recurring fabric "ServiceUnavailableFault" issues observed in westus2.
11
-
locations: "AzureCloud:southcentralus"
12
-
# TODO: This test is currently failing on usgov cloud due to an issue with the GuestConfig extension. Re-enable once the extension fix has been rolled out.
13
-
skip_on_clouds:
14
-
- "AzureUSGovernment"
15
11
owns_vm: false
12
+
skip_on_images:
13
+
- "AzureChinaCloud:debian_11"# The ConfigurationforLinux-1.26.109 extension is failing on Debian 11 in China cloud only; skip this image until the issue in the extension is fixed
0 commit comments