Skip to content

Commit

Permalink
Handle ValueError raised during faulthandler teardown code (#11453)
Browse files Browse the repository at this point in the history
Fixes #11439
  • Loading branch information
bnomis committed Sep 20, 2023
1 parent 9f22d32 commit a38ad25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -347,6 +347,7 @@ Seth Junot
Shantanu Jain
Sharad Nair
Shubham Adep
Simon Blanchard
Simon Gomizelj
Simon Holesch
Simon Kerr
Expand Down
1 change: 1 addition & 0 deletions changelog/11439.bugfix.rst
@@ -0,0 +1 @@
Handle an edge case where :data:`sys.stderr` might already be closed when :ref:`faulthandler` is tearing down.
3 changes: 1 addition & 2 deletions src/_pytest/faulthandler.py
@@ -1,4 +1,3 @@
import io
import os
import sys
from typing import Generator
Expand Down Expand Up @@ -51,7 +50,7 @@ def get_stderr_fileno() -> int:
if fileno == -1:
raise AttributeError()
return fileno
except (AttributeError, io.UnsupportedOperation):
except (AttributeError, ValueError):
# pytest-xdist monkeypatches sys.stderr with an object that is not an actual file.
# https://docs.python.org/3/library/faulthandler.html#issue-with-file-descriptors
# This is potentially dangerous, but the best we can do.
Expand Down

0 comments on commit a38ad25

Please sign in to comment.