Skip to content

Commit d762abb

Browse files
authored
remove windows style paths on returned AdditionalValidationPackages paths in get_package_properties.py (Azure#40053)
1 parent 0a2ae72 commit d762abb

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

eng/scripts/get_package_properties.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,34 @@
88

99
additional_pr_triggers: Dict[str, List[str]] = {
1010
"azure-core":[
11-
os.path.join("/sdk", "servicebus", "azure-servicebus"),
12-
os.path.join("/sdk", "eventhub", "azure-eventhub"),
13-
os.path.join("/sdk", "tables", "azure-data-tables"),
14-
os.path.join("/sdk", "appconfiguration", "azure-appconfiguration"),
15-
os.path.join("/sdk", "keyvault", "azure-keyvault-keys"),
16-
os.path.join("/sdk", "identity", "azure-identity"),
17-
os.path.join("/sdk", "core", "azure-mgmt-core"),
18-
os.path.join("/sdk", "core", "azure-core-experimental"),
19-
os.path.join("/sdk", "core", "azure-core-tracing-opentelemetry"),
20-
os.path.join("/sdk", "core", "azure-core-tracing-opencensus"),
11+
"/sdk/servicebus/azure-servicebus",
12+
"/sdk/eventhub/azure-eventhub",
13+
"/sdk/tables/azure-data-tables",
14+
"/sdk/appconfiguration/azure-appconfiguration",
15+
"/sdk/keyvault/azure-keyvault-keys",
16+
"/sdk/identity/azure-identity",
17+
"/sdk/core/azure-mgmt-core",
18+
"/sdk/core/azure-core-experimental",
19+
"/sdk/core/azure-core-tracing-opentelemetry",
20+
"/sdk/core/azure-core-tracing-opencensus",
2121
# todo: this currently won't be included, as azure-cosmos needs some special construction
2222
# related to windows only + emulator
23-
# os.path.join("/sdk", "cosmos", "azure-cosmos"),
24-
os.path.join("/sdk", "ml", "azure-ai-ml"),
25-
os.path.join("/sdk", "documentintelligence", "azure-ai-documentintelligence"),
26-
os.path.join("/sdk", "ai", "azure-ai-inference"),
27-
os.path.join("/sdk", "textanalytics", "azure-ai-textanalytics"),
28-
os.path.join("/sdk", "translation", "azure-ai-translation-document"),
29-
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
30-
os.path.join("/sdk", "communication", "azure-communication-chat"),
31-
os.path.join("/sdk", "communication", "azure-communication-identity"),
32-
os.path.join("/sdk", "storage", "azure-storage-blob")
23+
# "/sdk/cosmos/azure-cosmos",
24+
"/sdk/ml/azure-ai-ml",
25+
"/sdk/documentintelligence/azure-ai-documentintelligence",
26+
"/sdk/ai/azure-ai-inference",
27+
"/sdk/textanalytics/azure-ai-textanalytics",
28+
"/sdk/translation/azure-ai-translation-document",
29+
"/sdk/compute/azure-mgmt-compute",
30+
"/sdk/communication/azure-communication-chat",
31+
"/sdk/communication/azure-communication-identity",
32+
"/sdk/storage/azure-storage-blob"
3333
],
3434
"azure-mgmt-core": [
35-
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
36-
os.path.join("/sdk", "network", "azure-mgmt-network"),
37-
os.path.join("/sdk", "resources", "azure-mgmt-resource"),
38-
os.path.join("/sdk", "keyvault", "azure-mgmt-keyvault")
35+
"/sdk/compute/azure-mgmt-compute",
36+
"/sdk/network/azure-mgmt-network",
37+
"/sdk/resources/azure-mgmt-resource",
38+
"/sdk/keyvault/azure-mgmt-keyvault"
3939
]
4040
}
4141

0 commit comments

Comments
 (0)