Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tools/travis.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ elseif($Stage -eq 'Build')

if ($isFullBuild) {
$pesterParam['Tag'] = @('CI','Feature','Scenario')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should there be a ExcludeTag for RequireSudoOnUnix

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The RequireSudoOnUnix has already been added above.

     $pesterParam = @{
         'binDir'     = $output
         'PassThru'   = $true
         'Terse'      = $true
         'Tag'        = @()
         'ExcludeTag' = @('RequireSudoOnUnix')
         'OutputFile' = $testResultsNoSudo
     }

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see line 211

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closed

$pesterParam['ExcludeTag'] = @()
} else {
$pesterParam['Tag'] = @('CI')
$pesterParam['ThrowOnFailure'] = $true
Expand Down