Skip to content

Commit aaf98da

Browse files
authored
Fix AL-Go bug 1291 (#3747)
Fixes microsoft/AL-Go#1291 Co-authored-by: freddydk <[email protected]>
1 parent 43f8e40 commit aaf98da

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

AppHandling/Run-AlPipeline.ps1

+3-1
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,7 @@ if ($doNotPublishApps) {
857857
# If we are not going to publish apps, we also cannot run upgrade tests or tests
858858
$doNotRunTests = $true
859859
$doNotRunBcptTests = $true
860+
$doNotRunPageScriptingTests = $true
860861
$doNotPerformUpgrade = $true
861862
}
862863

@@ -871,6 +872,7 @@ if ($doNotBuildTests) {
871872
$installPerformanceToolkit = $false
872873
$doNotRunTests = $true
873874
$doNotRunBcptTests = $true
875+
$doNotRunPageScriptingTests = $true
874876
}
875877

876878
if ($containerName -eq '' -or $filesOnly) {
@@ -2408,7 +2410,7 @@ Write-GroupEnd
24082410
}
24092411
}
24102412

2411-
if (!($doNotRunTests -and $doNotRunBcptTests -and $doNotRunPageScriptingTests)) {
2413+
if ($containerName -ne '' -and !($doNotRunTests -and $doNotRunBcptTests -and $doNotRunPageScriptingTests)) {
24122414
if ($ImportTestDataInBcContainer) {
24132415
Write-GroupStart -Message "Importing test data"
24142416
Write-Host -ForegroundColor Yellow @'

0 commit comments

Comments
 (0)