blob: 1e44f0a05290f05ba771185877a674d09419acc8 [file] [log] [blame]
Dean Moldovand47febc2017-03-10 15:42:42 +01001[pytest]
2minversion = 3.0
Dean Moldovan17cc39c2017-06-09 15:33:09 +02003norecursedirs = test_cmake_build test_embed
Dean Moldovand47febc2017-03-10 15:42:42 +01004addopts =
5 # show summary of skipped tests
6 -rs
7 # capture only Python print and C++ py::print, but not C output (low-level Python errors)
8 --capture=sys
Dean Moldovan005fde62017-05-28 22:39:05 +02009filterwarnings =
10 # make warnings into errors but ignore certain third-party extension issues
11 error
12 # importing scipy submodules on some version of Python
13 ignore::ImportWarning
14 # bogus numpy ABI warning (see numpy/#432)
15 ignore:.*numpy.dtype size changed.*:RuntimeWarning