Skip to content

Commit f8b9b88

Browse files
committed
Bug fixes and cleanup in preparation for push.
1 parent e6e785e commit f8b9b88

3 files changed

Lines changed: 108 additions & 228 deletions

File tree

build.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ function Start-PSPester {
537537

538538
Write-Verbose "Import-Module '$moduleDir'; Invoke-Pester $tagString $Path"
539539
$powershellexe = get-psoutput
540-
& $powershell -noprofile -c "Import-Module '$moduleDir'; Invoke-Pester $tagString $Path"
540+
& $powershell -noprofile -c "Set-ExecutionPolicy Unrestricted; Import-Module '$moduleDir'; Invoke-Pester $tagString $Path"
541541
if ($LASTEXITCODE -ne 0) {
542542
throw "$LASTEXITCODE Pester tests failed"
543543
}

0 commit comments

Comments
 (0)