Merge pull request #1202 from PowerShell/jasonsh/pspester-fix

Import local Pester version before running tests
This commit is contained in:
Jason Shirk 2016-06-24 15:35:48 -07:00 committed by GitHub
commit b5bea29a72

View file

@ -356,7 +356,7 @@ function Start-PSPester {
[string]$Directory = "$PSScriptRoot/test/powershell"
)
& (Get-PSOutput) -noprofile -c "Invoke-Pester $Flags $Directory/$Tests"
& (Get-PSOutput) -noprofile -c "Import-Module '$PSScriptRoot/src/Modules/Pester'; Invoke-Pester $Flags $Directory/$Tests"
if ($LASTEXITCODE -ne 0) {
throw "$LASTEXITCODE Pester tests failed"
}