We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1b5a1 commit f857dceCopy full SHA for f857dce
1 file changed
test/bin/test.ps1
@@ -2,12 +2,15 @@
2
#requires -Modules @{ ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.1' }
3
#requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '4.4.0' }
4
#requires -Modules @{ ModuleName = 'PSScriptAnalyzer'; ModuleVersion = '1.17.1' }
5
+param(
6
+ [String] $TestPath = 'test/',
7
+)
8
9
$resultsXml = "$PSScriptRoot/TestResults.xml"
10
$excludes = @()
11
12
$splat = @{
- Path = 'test/'
13
+ Path = $TestPath
14
OutputFile = $resultsXml
15
OutputFormat = 'NUnitXML'
16
PassThru = $true
0 commit comments