-
Notifications
You must be signed in to change notification settings - Fork 30.9k
[CI
] Fix red CI and ERROR failed should show
#25995
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
Conversation
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.
Thanks for fixing!
steps.append({"run": {"name": "Run tests", "command": test_command}}) | ||
|
||
check_test_command = f'if [ -s reports/tests_{self.name}/failures_short.txt ]; ' | ||
check_test_command = f'if [ -s reports/{self.job_name}/failures_short.txt ]; ' |
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.
The test_
is added to self.name
in self.job_name
based on a rule. self.jon_name
is the one that is used when these files are created.
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.
LGTM
The documentation is not available anymore as the PR was closed or merged. |
self.assertEqual(output, {"text": "A MAN SAID TO THE UNIVERSE SIR I EXIST"}) | ||
|
||
@require_torch | ||
@slow |
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 like this test is not related to the commit that was merged yesterday, which didn't touch this test: 8d51801
This probably failed due to using the whisper-tiny
model in the test taking abnormally long, since we've not seen this failure before
Went through all the ASR pipeline tests and they're all correctly marked as slow / not slow now 👍
* start with error too * fix ? * start with nit * one more path * use `job_name` * mark pipeline test as slow
What does this PR do?
Fixes the main branch after the merge of #25895 which has a typo when checking the outputs of the ci tests.
Two part fix:
should do the trick