summaryrefslogtreecommitdiff
path: root/src/pytest/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pytest/__init__.py')
-rw-r--r--src/pytest/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pytest/__init__.py b/src/pytest/__init__.py
index 8af095ea8..70177f950 100644
--- a/src/pytest/__init__.py
+++ b/src/pytest/__init__.py
@@ -53,7 +53,9 @@ from _pytest.warning_types import PytestConfigWarning
from _pytest.warning_types import PytestDeprecationWarning
from _pytest.warning_types import PytestExperimentalApiWarning
from _pytest.warning_types import PytestUnhandledCoroutineWarning
+from _pytest.warning_types import PytestUnhandledThreadExceptionWarning
from _pytest.warning_types import PytestUnknownMarkWarning
+from _pytest.warning_types import PytestUnraisableExceptionWarning
from _pytest.warning_types import PytestWarning
set_trace = __pytestPDB.set_trace
@@ -99,7 +101,9 @@ __all__ = [
"PytestExperimentalApiWarning",
"Pytester",
"PytestUnhandledCoroutineWarning",
+ "PytestUnhandledThreadExceptionWarning",
"PytestUnknownMarkWarning",
+ "PytestUnraisableExceptionWarning",
"PytestWarning",
"raises",
"register_assert_rewrite",