Run CI and Feature tests by default with Start-PSPester (#4273)

This commit is contained in:
Steve Lee 2017-07-18 14:20:14 -07:00 committed by Travis Plunk
parent 4f13bf476e
commit 76413addac

View file

@ -770,7 +770,7 @@ function Start-PSPester {
[string]$OutputFormat = "NUnitXml",
[string]$OutputFile = "pester-tests.xml",
[string[]]$ExcludeTag = 'Slow',
[string[]]$Tag = "CI",
[string[]]$Tag = @("CI","Feature"),
[string[]]$Path = @("$PSScriptRoot/test/common","$PSScriptRoot/test/powershell"),
[switch]$ThrowOnFailure,
[switch]$FullCLR,