Skip to content

Commit b2e9014

Browse files
🩹 [Patch]: Set Debug and Verbose flags to true in action.yml and remove from test script
1 parent 1d98f39 commit b2e9014

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎action.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ runs:
290290
LocalTestPath: ${{ steps.paths.outputs.LocalTestPath }}
291291
WorkingDirectory: ${{ inputs.WorkingDirectory }}
292292
with:
293-
Debug: ${{ inputs.Debug }}
293+
Debug: 'true'
294+
Verbose: 'true'
294295
Prerelease: ${{ inputs.Prerelease }}
295-
Verbose: ${{ inputs.Verbose }}
296296
Version: ${{ inputs.Version }}
297297
WorkingDirectory: ${{ inputs.WorkingDirectory }}
298298
Path: ${{ steps.paths.outputs.TestPath }}

‎scripts/tests/Module/PSModule/PSModule.Tests.ps1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Describe 'PSModule - Module tests' {
1919
It 'The module should be importable' {
2020
{
2121
LogGroup 'Importing Module' {
22-
Import-Module -Name $moduleName -Force -Debug -Verbose
22+
Import-Module -Name $moduleName -Force
2323
}
2424
} | Should -Not -Throw
2525
}

0 commit comments

Comments
 (0)