-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update test_results_parser version and start computing names
This commit updates the version of the test_results_parser library that we are using: - no more support for parsing vitest.json or pytest-reportlog files - parse_junit_xml now returns a ParsingInfo class, the type signature looks something like: class ParsingInfo: testruns: list[Testrun] framework: framework where Framework is: class Framework(Enum): Pytest Jest Vitest PHPUnit - Testrun also now contains the filename field which is an optional string and a classname field We've also started computing the name of the test which just means depending on the framework we've detected we transform the raw name and classname from the JUnit file to something more readable and if that computed name is available it's what we should show in the PR comment
- Loading branch information
1 parent
b94e31d
commit cf09fe4
Showing
13 changed files
with
432 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.