-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[browser] Expanding timeouts for long running test projects #85313
Conversation
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
a70ac9f
to
91806a4
Compare
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
<Timeout Condition="'%(FileName)' == 'System.Text.Json.Tests'">01:20:00</Timeout> | ||
<Timeout Condition="'%(FileName)' == 'System.Collections.Immutable.Tests'">01:20:00</Timeout> | ||
<Timeout Condition="'%(FileName)' == 'System.Net.WebSockets.Client.Tests'">01:20:00</Timeout> | ||
<Timeout Condition="'%(FileName)' == 'System.Net.Http.Functional.Tests'">01:20:00</Timeout> |
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 is this needed? A lot of work was done here to separate the project specific from these helix targets. And more is coming.
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.
These specific projects needs extended timeout, at least at the moment. Do we have other options? Or should we extend the timeout to all jobs?
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.
hmm keep this here for now. I will move the whole thing out for library tests.
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 problem is that here we don't have individual projects loaded in MSBuild, we only have zip files in folders.
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 👍
Expanding timeouts and adding more logging to see which tests are hanging the whole suite.
Fixes #85304