File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
99### Added
1010
11- * Write ` feedback ` to ` $GITHUB_STEP_SUMMARY ` if exists.
12- This will show up under the Github Actions job graph.
1311
1412### Changed
1513
@@ -22,6 +20,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2220
2321### Fixed
2422
23+
24+ ## [ v0.2.1] - 2025-03-08
25+
26+
27+ ### Removed
28+ * Remove ` GITHUB_OUTPUT ` file writing.
29+ * Remove raising an additional exception when ` n_failed ` is non zero.
30+
31+
32+ ## [ v0.2.0] - 2025-03-08
33+
34+ ### Added
35+
36+ * Write ` feedback ` to ` $GITHUB_STEP_SUMMARY ` if exists.
37+ This will show up under the Github Actions job graph.
38+
39+
2540## [ v0.1.10] - 2025-02-26
2641
2742### Changed
Original file line number Diff line number Diff line change @@ -57,9 +57,6 @@ def main() -> None:
5757 # Write the feedback to the Gihtub Job Summary
5858 # expecting mardown format
5959 f .write (feedback )
60-
61- if not b_fail_expected :
62- assert n_failed == 0 , f'{ n_failed } failed tests'
6360 elif b_fail_expected :
6461 assert n_failed > 0 , 'No failed tests'
6562 else :
You can’t perform that action at this time.
0 commit comments