Blame external/pybind11/tests/pytest.ini
|
Packit |
534379 |
[pytest]
|
|
Packit |
534379 |
minversion = 3.0
|
|
Packit |
534379 |
norecursedirs = test_cmake_build test_embed
|
|
Packit |
534379 |
addopts =
|
|
Packit |
534379 |
# show summary of skipped tests
|
|
Packit |
534379 |
-rs
|
|
Packit |
534379 |
# capture only Python print and C++ py::print, but not C output (low-level Python errors)
|
|
Packit |
534379 |
--capture=sys
|
|
Packit |
534379 |
filterwarnings =
|
|
Packit |
534379 |
# make warnings into errors but ignore certain third-party extension issues
|
|
Packit |
534379 |
error
|
|
Packit |
534379 |
# importing scipy submodules on some version of Python
|
|
Packit |
534379 |
ignore::ImportWarning
|
|
Packit |
534379 |
# bogus numpy ABI warning (see numpy/#432)
|
|
Packit |
534379 |
ignore:.*numpy.dtype size changed.*:RuntimeWarning
|
|
Packit |
534379 |
ignore:.*numpy.ufunc size changed.*:RuntimeWarning
|