blob: 7ff755328730de2f9476049ed4f05ee4952bdf04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[pytest]
addopts = -l
markers =
slow: mark test as slow
xslow: mark test as extremely slow (not run unless explicitly requested)
filterwarnings =
error
always::scipy._lib._testutils.FPUModeChangeWarning
once:.*LAPACK bug 0038.*:RuntimeWarning
ignore:the matrix subclass is not the recommended way*:PendingDeprecationWarning
ignore:Using or importing the ABCs from 'collections'*:DeprecationWarning
ignore:can't resolve package from __spec__ or __package__, falling back on __name__ and __path__:ImportWarning
once:the imp module is deprecated in favour of importlib.*:DeprecationWarning
once:the imp module is deprecated in favour of importlib.*:PendingDeprecationWarning
env =
PYTHONHASHSEED=0
|