Skip to content

Commit 466446e

Browse files
Update README.md outputs section and simplify Module.Configuration.ps1
1 parent 7b0d5ff commit 466446e

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

README.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,20 @@ jobs:
143143

144144
### Outputs
145145

146-
| Output | Description |
147-
|---------------|--------------------------------------|
148-
| `Outcome` | Outcome of the test run. |
149-
| `Conclusion` | Conclusion status of test execution. |
150-
| `Executed` | Indicates if tests were executed. |
151-
| `Result` | Overall result (`Passed`, `Failed`). |
152-
| `FailedCount` | Number of failed tests. |
153-
| `PassedCount` | Number of passed tests. |
154-
| `TotalCount` | Total tests executed. |
146+
| Output | Description |
147+
|-------------------------|--------------------------------------|
148+
| `Outcome` | Outcome of the test run. |
149+
| `Conclusion` | Conclusion status of test execution. |
150+
| `Executed` | Indicates if tests were executed. |
151+
| `Result` | Overall result (`Passed`, `Failed`). |
152+
| `FailedCount` | Number of failed tests. |
153+
| `FailedBlocksCount` | Number of failed blocks. |
154+
| `FailedContainersCount` | Number of failed containers. |
155+
| `PassedCount` | Number of passed tests. |
156+
| `SkippedCount` | Number of skipped tests. |
157+
| `InconclusiveCount` | Number of inconclusive tests. |
158+
| `NotRunCount` | Number of tests not run. |
159+
| `TotalCount` | Total tests executed. |
155160

156161
## PSModule tests
157162

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
@{
2-
TestResult = @{
2+
TestResult = @{
33
Enabled = $true
44
}
5-
CodeCoverage = @{
6-
Enabled = $true
7-
OutputFormat = 'JaCoCo'
8-
OutputEncoding = 'UTF8'
9-
CoveragePercentTarget = 80
10-
}
11-
Output = @{
5+
Output = @{
126
Verbosity = 'Detailed'
137
}
148
}

0 commit comments

Comments
 (0)