Skip to content

Commit

Permalink
Fix AL-Go bug 1291 (#3747)
Browse files Browse the repository at this point in the history
Fixes microsoft/AL-Go#1291

Co-authored-by: freddydk <[email protected]>
  • Loading branch information
freddydk and freddydk authored Nov 4, 2024
1 parent 43f8e40 commit aaf98da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AppHandling/Run-AlPipeline.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,7 @@ if ($doNotPublishApps) {
# If we are not going to publish apps, we also cannot run upgrade tests or tests
$doNotRunTests = $true
$doNotRunBcptTests = $true
$doNotRunPageScriptingTests = $true
$doNotPerformUpgrade = $true
}

Expand All @@ -871,6 +872,7 @@ if ($doNotBuildTests) {
$installPerformanceToolkit = $false
$doNotRunTests = $true
$doNotRunBcptTests = $true
$doNotRunPageScriptingTests = $true
}

if ($containerName -eq '' -or $filesOnly) {
Expand Down Expand Up @@ -2408,7 +2410,7 @@ Write-GroupEnd
}
}

if (!($doNotRunTests -and $doNotRunBcptTests -and $doNotRunPageScriptingTests)) {
if ($containerName -ne '' -and !($doNotRunTests -and $doNotRunBcptTests -and $doNotRunPageScriptingTests)) {
if ($ImportTestDataInBcContainer) {
Write-GroupStart -Message "Importing test data"
Write-Host -ForegroundColor Yellow @'
Expand Down

0 comments on commit aaf98da

Please sign in to comment.