forked from pyvista/pyvista
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
17 lines (17 loc) · 682 Bytes
/
pytest.ini
File metadata and controls
17 lines (17 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[pytest]
junit_family=legacy
filterwarnings =
ignore::FutureWarning
ignore::PendingDeprecationWarning
ignore::DeprecationWarning
# bogus numpy ABI warning (see numpy/#432)
ignore:.*numpy.dtype size changed.*:RuntimeWarning
ignore:.*numpy.ufunc size changed.*:RuntimeWarning
ignore:.*Given trait value dtype "float64":UserWarning
ignore:.*The NumPy module was reloaded*:UserWarning
doctest_optionflags = NUMBER ELLIPSIS
testpaths = tests
markers =
needs_vtk9: skip test unless VTK is 9.0 or newer.
needs_vtk_version(version): skip test unless VTK version is at least as specified.
needs_download: this test downloads data during execution