2017-03-10 14:42:42 +00:00
|
|
|
[pytest]
|
2022-02-12 00:06:16 +00:00
|
|
|
minversion = 3.10
|
2020-09-16 21:13:41 +00:00
|
|
|
norecursedirs = test_* extra_*
|
2020-08-16 20:02:12 +00:00
|
|
|
xfail_strict = True
|
2017-03-10 14:42:42 +00:00
|
|
|
addopts =
|
2022-02-12 00:06:16 +00:00
|
|
|
# show summary of tests
|
|
|
|
-ra
|
2017-03-10 14:42:42 +00:00
|
|
|
# capture only Python print and C++ py::print, but not C output (low-level Python errors)
|
|
|
|
--capture=sys
|
2022-02-12 00:06:16 +00:00
|
|
|
# Show local info when a failure occurs
|
|
|
|
--showlocals
|
|
|
|
log_cli_level = info
|
2017-05-28 20:39:05 +00:00
|
|
|
filterwarnings =
|
|
|
|
# make warnings into errors but ignore certain third-party extension issues
|
|
|
|
error
|
2021-02-01 13:52:20 +00:00
|
|
|
# somehow, some DeprecationWarnings do not get turned into errors
|
|
|
|
always::DeprecationWarning
|
2017-05-28 20:39:05 +00:00
|
|
|
# importing scipy submodules on some version of Python
|
|
|
|
ignore::ImportWarning
|
|
|
|
# bogus numpy ABI warning (see numpy/#432)
|
|
|
|
ignore:.*numpy.dtype size changed.*:RuntimeWarning
|
2019-01-23 14:13:59 +00:00
|
|
|
ignore:.*numpy.ufunc size changed.*:RuntimeWarning
|
2024-05-24 16:26:40 +00:00
|
|
|
default:The global interpreter lock:RuntimeWarning
|