-
Notifications
You must be signed in to change notification settings - Fork 20
/
pytest.ini
22 lines (22 loc) · 954 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
junit_family=legacy
addopts =
--durations=10 -ra --cov-report= --tb=short
filterwarnings =
error
ignore::ResourceWarning
# bogus numpy ABI warning (see numpy/#432)
ignore:.*numpy.dtype size changed.*:RuntimeWarning
ignore:.*numpy.ufunc size changed.*:RuntimeWarning
# from usage of numpy_to_vtk:
ignore:.*`np.bool` is a deprecated alias.*:DeprecationWarning
ignore:.*`np.int` is a deprecated alias.*:DeprecationWarning
ignore:.*`np.float` is a deprecated alias.*:DeprecationWarning
ignore:.*`np.object` is a deprecated alias.*:DeprecationWarning
ignore:.*`np.long` is a deprecated alias:DeprecationWarning
ignore:.*Converting `np\.character` to a dtype is deprecated.*:DeprecationWarning
ignore:.*ImportDenier.*not found.*:ImportWarning
# PySide6
ignore:Failed to disconnect.*:RuntimeWarning
# ipython
ignore:The default datetime adapter is deprecated.*:DeprecationWarning