mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
17cc39c818
pytest raises an error if it recurses into these directories.
16 lines
530 B
INI
16 lines
530 B
INI
[pytest]
|
|
minversion = 3.0
|
|
norecursedirs = test_cmake_build test_embed
|
|
addopts =
|
|
# show summary of skipped tests
|
|
-rs
|
|
# capture only Python print and C++ py::print, but not C output (low-level Python errors)
|
|
--capture=sys
|
|
filterwarnings =
|
|
# make warnings into errors but ignore certain third-party extension issues
|
|
error
|
|
# importing scipy submodules on some version of Python
|
|
ignore::ImportWarning
|
|
# bogus numpy ABI warning (see numpy/#432)
|
|
ignore:.*numpy.dtype size changed.*:RuntimeWarning
|