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