mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-23 13:10:18 +08:00
Clean up setup_test and add a teardown_test method Implement new setup/teardown in novice tests Fix warning handling in pil_plugin Update rank tests
10 lines
132 B
Python
10 lines
132 B
Python
from skimage._shared.testing import setup_test, teardown_test
|
|
|
|
|
|
def setup():
|
|
setup_test()
|
|
|
|
|
|
def tearDown():
|
|
teardown_test()
|