1234567891011121314151617 |
- [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
|