-
Notifications
You must be signed in to change notification settings - Fork 92
Chores: bump dependencies #2542
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
Changes from all commits
828b4e6
b9bf917
af846e5
e3889da
bcb8be9
85fe6d7
75b6e44
1e03bca
e7bb376
86a7e4f
f8561e5
f3dd3b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -111,8 +111,11 @@ def merge_reports(output_file, input_files): | |
| all_testsuites.extend(testsuites) | ||
|
|
||
| except ET.ParseError as e: | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not related to the pr but I just hit this bug : 4 CTST rerun, one of them I cancelled manually : End up with a file thats not parsable and it fails the whole archive step, forcing us to rerun the whole ci. Possible further improvement that I left : Only continue on parse error when its not the latest run file |
||
| print(f"::error::Error parsing {file}: {e}", file=sys.stderr) | ||
| sys.exit(1) | ||
| # A report can be empty or truncated when its run was cancelled | ||
| # before the test runner finished writing it. Skip it rather than | ||
| # aborting the whole merge, since later attempts are still valid. | ||
| print(f"::warning::Skipping malformed report {file}: {e}", file=sys.stderr) | ||
| continue | ||
| except FileNotFoundError: | ||
| print(f"::warning::File not found: {file}", file=sys.stderr) | ||
| continue | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| module.exports = { | ||
| reporterEnabled: 'spec, xunit', | ||
| xunitReporterOptions: { | ||
| output: process.env.MOCHA_FILE || '_reports/test-results.xml', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we ok with that ? |
||
| }, | ||
| }; | ||
This file was deleted.
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.
Why do we need that (mocha don't do it directly?) ? Why this change ?