-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
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
Changes from 1 commit
9111560
b0cf97f
b904b88
1221373
ca0b642
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 |
---|---|---|
|
@@ -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 commentThe 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 commentThe 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 |
||
yield | ||
else: | ||
proc = psutil.Process() | ||
|
Uh oh!
There was an error while loading. Please reload this page.