Warning, /jana2/src/python/externals/pybind11-2.10.3/tests/pytest.ini is written in an unsupported language. File is not indexed.
0001 [pytest]
0002 minversion = 3.10
0003 norecursedirs = test_* extra_*
0004 xfail_strict = True
0005 addopts =
0006 # show summary of tests
0007 -ra
0008 # capture only Python print and C++ py::print, but not C output (low-level Python errors)
0009 --capture=sys
0010 # Show local info when a failure occurs
0011 --showlocals
0012 log_cli_level = info
0013 filterwarnings =
0014 # make warnings into errors but ignore certain third-party extension issues
0015 error
0016 # somehow, some DeprecationWarnings do not get turned into errors
0017 always::DeprecationWarning
0018 # importing scipy submodules on some version of Python
0019 ignore::ImportWarning
0020 # bogus numpy ABI warning (see numpy/#432)
0021 ignore:.*numpy.dtype size changed.*:RuntimeWarning
0022 ignore:.*numpy.ufunc size changed.*:RuntimeWarning