You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🩹 [Patch]: Expose VerbosePreference and DebugPreference to Test-PSModule (#66)
## Description
This pull request includes updates to the CI workflow configuration
files to add new input parameters for verbose and debug output
preferences. Additionally, the README file has been updated to document
these new parameters.
Workflow configuration updates:
*
[`.github/workflows/CI.yml`](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R65-R74):
Added `VerbosePreference` and `DebugPreference` parameters to the
workflow inputs and included these parameters in the job definitions.
[[1]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R65-R74)
[[2]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R110-R111)
[[3]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R136-R137)
[[4]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R162-R163)
[[5]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R224-R225)
[[6]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R268-R269)
[[7]](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8R312-R313)
*
[`.github/workflows/workflow.yml`](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R70-R79):
Added `VerbosePreference` and `DebugPreference` parameters to the
workflow inputs and included these parameters in the job definitions.
[[1]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R70-R79)
[[2]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R117-R118)
[[3]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R143-R144)
[[4]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R169-R170)
[[5]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R231-R232)
[[6]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R275-R276)
[[7]](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1R319-R320)
Documentation updates:
*
[`README.md`](diffhunk://#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L78-R83):
Documented the new `VerbosePreference` and `DebugPreference` parameters.
## Type of change
<!-- Use the check-boxes [x] on the options that are relevant. -->
- [ ] 📖 [Docs]
- [ ] 🪲 [Fix]
- [x] 🩹 [Patch]
- [ ] ⚠️ [Security fix]
- [ ] 🚀 [Feature]
- [ ] 🌟 [Breaking change]
## Checklist
<!-- Use the check-boxes [x] on the options that are relevant. -->
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,10 +75,12 @@ jobs:
75
75
|`DocsOutputPath`|`string`| The path to the output directory for the documentation. |`false`|`outputs/docs`|
76
76
|`PublishDocs`|`boolean`| Whether to publish the documentation using MkDocs and GitHub Pages. |`false`|`true`|
77
77
|`SiteOutputPath`|`string`| The path to the output directory for the site. |`false`|`outputs/site`|
78
-
|`SkipTests`|`string`| Defines what types of tests to skip. Allowed values are 'All', 'SourceCode', 'Module', 'None', 'macOS', 'Windows', 'Linux'. | false |`None`|
79
-
|`TestProcess`|`boolean`| Whether to test the process. | false |`false`|
80
-
|`Version`|`string`| The version of the 'GitHub' module to use. Defaults to latest version. | false | N/A |
81
-
|`Prerelease`|`boolean`| Whether to use a prerelease version of the 'GitHub' module. | false |`false`|
78
+
|`SkipTests`|`string`| Defines what types of tests to skip. Allowed values are 'All', 'SourceCode', 'Module', 'None', 'macOS', 'Windows', 'Linux'. |`false`|`None`|
79
+
|`TestProcess`|`boolean`| Whether to test the process. |`false`|`false`|
80
+
|`Version`|`string`| The version of the 'GitHub' module to use. Defaults to latest version. |`false`| N/A |
81
+
|`Prerelease`|`boolean`| Whether to use a prerelease version of the 'GitHub' module. |`false`|`false`|
82
+
|`VerbosePreference`|`string`| The preference for verbose output. Allowed values: 'SilentlyContinue', 'Stop', 'Continue', 'Inquire', 'Break', 'Ignore','Suspend'. |`false`|`SilentlyContinue`|
83
+
|`DebugPreference`|`string`| The preference for debug output. Allowed values: 'SilentlyContinue', 'Stop', 'Continue', 'Inquire', 'Break', 'Ignore','Suspend'. |`false`|`SilentlyContinue`|
0 commit comments