Skip to content

Commit

Permalink
fix for ValueError raised in faulthandler teardown code
Browse files Browse the repository at this point in the history
  • Loading branch information
bnomis committed Sep 19, 2023
1 parent 5e08116 commit ea16d16
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 @@ -346,6 +346,7 @@ Serhii Mozghovyi
Seth Junot
Shantanu Jain
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 @@
Fix for ValueError exception being raised in faulthandler teardown code.
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 ea16d16

Please sign in to comment.