-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
TST: Disable testing that hangs Azure CI #45702
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
@@ -266,7 +266,8 @@ def file_leak_context(): | |||
ContextManager analogue to check_file_leaks. | |||
""" | |||
psutil = safe_import("psutil") | |||
if not psutil: | |||
if not psutil or is_platform_windows(): | |||
# Checking for file leaks can hang on Windows CI |
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.
is there a reference for this claim?
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.
Just anecdotally while investigating #45478.
I noticed disabling the analog check in the excel tests would no longer hang the build around the excel files
@mroeschke backport? |
Sure might be helpful for the 1.4.x branch as well. |
@meeseeksdev backport 1.4.x |
Something went wrong ... Please have a look at my logs. |
Co-authored-by: Matthew Roeschke <[email protected]>
Precursor to #45478
This PR doesn't necessarily guarantee that we won't see random Azure timeouts, but based on working on #45478, these were tests that noticeably caused the CI to hang