microproduct/deformation-sentiral/smallbaselineApp/skimage/conftest.py

17 lines
350 B
Python
Raw Permalink Normal View History

2023-08-28 10:17:29 +00:00
from skimage._shared.testing import setup_test, teardown_test
# List of files that pytest should ignore
collect_ignore = ["io/_plugins",]
try:
import visvis
except ImportError:
collect_ignore.append("measure/mc_meta/visual_test.py")
def pytest_runtest_setup(item):
setup_test()
def pytest_runtest_teardown(item):
teardown_test()