Skip to content

Commit 3f697cb

Browse files
committed
fix : even with fails, do not raise additional exception
1 parent cd05f89 commit 3f697cb

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff 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

entrypoint.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)