-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Cleanup boa_tester
#2440
Conversation
Test262 conformance changes
|
Codecov Report
@@ Coverage Diff @@
## main #2440 +/- ##
==========================================
- Coverage 52.52% 52.49% -0.03%
==========================================
Files 329 328 -1
Lines 34958 34978 +20
==========================================
+ Hits 18361 18363 +2
- Misses 16597 16615 +18
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me :) thanks for the changes!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work!
10369f3
to
9e4e3d3
Compare
bors r+ |
Just some quality changes to improve the maintainability of the tester: - Replaces `anyhow` with `color_eyre` to have a better output on errors/panics. - Changes the ignore file to a TOML file and replaces all parsing logic with the `toml` crate. - Adds a `ignored` field on all `Test`s to simplify run logic. - Replaces the global `IGNORED` with an `ignored` argument on the CLI.
Pull request successfully merged into main. Build succeeded: |
This PR fixes a typo introduced in #2440
Just some quality changes to improve the maintainability of the tester:
anyhow
withcolor_eyre
to have a better output on errors/panics.toml
crate.ignored
field on allTest
s to simplify run logic.IGNORED
with anignored
argument on the CLI.