Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PS - LiveTest] Fix storage live test failure #20815

Merged
merged 29 commits into from
Feb 1, 2023
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4c83fae
add scenario test vm
Alex-AZPS Jan 13, 2023
9bab623
add scenario test Storage
Alex-AZPS Jan 13, 2023
4b046f8
Merge branch 'shared/livetest' of https://github.com/Azure/azure-powe…
Alex-AZPS Jan 17, 2023
f7de70e
update scenario test Storage
Alex-AZPS Jan 17, 2023
0bad25d
update scenario test vm
Alex-AZPS Jan 17, 2023
8624d6c
update scenario test Storage
Alex-AZPS Jan 17, 2023
1e57195
update scenario test vm
Alex-AZPS Jan 17, 2023
8b50060
update scenario test vm
Alex-AZPS Jan 17, 2023
db48fb2
update scenario test vm
Alex-AZPS Jan 18, 2023
7487ebf
update scenario test vm
Alex-AZPS Jan 19, 2023
ca8c657
update scenario test storage
Alex-AZPS Jan 20, 2023
f8f2fc4
update scenario test vm, update the variable
Alex-AZPS Jan 29, 2023
ef2d33a
Merge branch 'shared/livetest' of https://github.com/Azure/azure-powe…
Alex-AZPS Jan 29, 2023
a4c2857
Shortened the random resource name to 15 in total
vidai-msft Jan 29, 2023
2d7013f
Merge branch 'shared/livetest' of https://github.com/Azure/azure-powe…
Alex-AZPS Jan 29, 2023
f766613
update scenario test vm
Alex-AZPS Jan 29, 2023
8704fea
update scenario test vm
Alex-AZPS Jan 29, 2023
bcc95bc
update scenario test vm
Alex-AZPS Jan 30, 2023
7465852
Merge branch 'shared/livetest' of https://github.com/Azure/azure-powe…
Alex-AZPS Jan 30, 2023
a761c84
update scenario test vm
Alex-AZPS Jan 30, 2023
5186f6c
update location Storage live test
Alex-AZPS Jan 30, 2023
7d16b9f
update location Storage live test
Alex-AZPS Jan 30, 2023
e1b6d34
delete scenario test Storage.Test
Alex-AZPS Jan 31, 2023
3ecce5d
msg
Alex-AZPS Jan 31, 2023
06ec434
update location Storage live test
Alex-AZPS Jan 31, 2023
8391f92
update location Storage live test
Alex-AZPS Jan 31, 2023
4213db9
update location Storage live test
Alex-AZPS Jan 31, 2023
9bec6fb
update scenario test Storage.Test
Alex-AZPS Feb 1, 2023
9961b2b
update2 scenario test Storage.Test
Alex-AZPS Feb 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Invoke-LiveTestScenario -Name "Creates a Storage account" -Description "Test cre
param ($rg)

$rgName = $rg.ResourceGroupName
$name = "alex12391d87"
# $name = "alex12391d87"
$name = New-LiveTestResourceName
$location = "westus"
$actual = New-AzStorageAccount -ResourceGroupName $rgName -Name $name -Location $location -SkuName Standard_GRS

Expand All @@ -22,7 +23,8 @@ Invoke-LiveTestScenario -Name "Removes a Storage account" -Description "Test rem
param ($rg)

$rgName = $rg.ResourceGroupName
$name = "alex12391d87"
# $name = "alex12391d87"
$name = New-LiveTestResourceName
$location = "westus"

New-AzStorageAccount -ResourceGroupName $rgname -Name $name -Location $location -SkuName Standard_GRS
Expand Down