Skip to content

Commit b839c43

Browse files
committed
Disabling pytest's unraisableexception plugin in pytest.ini (failing test is innocent)
1 parent 3d494bc commit b839c43

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

pytest.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
[pytest]
2-
addopts = --doctest-modules -m "not network and not heavy"
2+
# -p no:unraisableexception: GC-time unraisable exceptions (e.g. from
3+
# third-party destructors/asyncio teardown) get attributed to whatever test
4+
# is running and, when their traceback cannot even be formatted, fail it
5+
# with an unfilterable "Failed to process unraisable exception" error
6+
# (https://github.com/pytest-dev/pytest/issues/14096); seen on Linux CI
7+
# with Python 3.14.5.
8+
addopts = --doctest-modules -m "not network and not heavy" -p no:unraisableexception
39
testpaths =
410
tests
511
blosc2/core.py

0 commit comments

Comments
 (0)