Skip to content

Commit

Permalink
Use upper-case values for test agent values (#20465)
Browse files Browse the repository at this point in the history
When running within the ADO pipeline, the env variable keys are converted to upper-case, which causes issues when running in a case-sensitive OS.

Using uppercase values prevents this issue.
  • Loading branch information
danielortega-msft authored Feb 19, 2022
1 parent 69312b2 commit 11f1501
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"ubuntu-20.04": {
"OSVmImage": "MMSUbuntu20.04",
"Pool": "azsdk-pool-mms-ubuntu-2004-general",
"AZURE_TEST_AGENT": "ubuntu_2004_node14",
"AZURE_TEST_AGENT": "UBUNTU_2004_NODE14",
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
},
"macOS-10.15": {
Expand All @@ -38,7 +38,7 @@
"TestType": "node",
"TestResultsFiles": "**/test-results.xml",
"PublishCodeCoverage": "true",
"AZURE_TEST_AGENT": "windows_2019_node12",
"AZURE_TEST_AGENT": "WINDOWS_2019_NODE12",
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
},
"sample": {
Expand All @@ -49,7 +49,7 @@
"browser": {
"TestType": "browser",
"TestResultsFiles": "**/test-results.browser.xml",
"AZURE_TEST_AGENT": "windows_2019_browser",
"AZURE_TEST_AGENT": "WINDOWS_2019_BROWSER",
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
}
},
Expand Down

0 comments on commit 11f1501

Please sign in to comment.