Skip to content

Commit

Permalink
Update e2e-test.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
bachuv authored Dec 29, 2023
1 parent 2812aca commit c47cbea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/SmokeTests/e2e-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ param(
[Parameter(Mandatory=$true)]
[string]$HttpStartPath,
[switch]$NoSetup=$false,
[switch]$MSSQLTest=$false,
[switch]$NoValidation=$false,
[string]$AzuriteVersion="3.26.0",
[int]$Sleep=30,
[string]$additinalRunFlags="",
[switch]$MSSQLTest=$false,
[string]$ImageName="dfapp",
[string]$ContainerName="app",
[string]$pw="$env:SA_PASSWORD",
Expand All @@ -28,6 +28,8 @@ if ($NoSetup -eq $false) {
Write-Host "Building sample app Docker container from '$DockerfilePath'..." -ForegroundColor Yellow
docker build -f $DockerfilePath -t $ImageName --progress plain $PSScriptRoot/../../

Write-Host "AzuriteVersion: $AzuriteVersion"

# Next, download and start the Azurite emulator Docker image
Write-Host "Pulling down the mcr.microsoft.com/azure-storage/azurite:$AzuriteVersion image..." -ForegroundColor Yellow
docker pull "mcr.microsoft.com/azure-storage/azurite:${AzuriteVersion}"
Expand Down

0 comments on commit c47cbea

Please sign in to comment.