We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8873787 commit 9d7310fCopy full SHA for 9d7310f
2 files changed
tests/common.py
@@ -14,7 +14,7 @@ def remove_test_dir():
14
15
# cleanup before and after each testcase
16
@pytest.fixture(autouse=True)
17
-def run_around_tests():
+def autocleanup():
18
remove_test_dir()
19
yield # run the test function
20
tests/test_basics.py
@@ -1,8 +1,7 @@
1
import pytest
2
import objectbox
3
from tests.model import TestEntity
4
-from tests.common import load_empty_test_objectbox, assert_equal
5
-
+from tests.common import autocleanup, load_empty_test_objectbox, assert_equal
6
7
def test_version():
8
info = objectbox.version_info()
0 commit comments