We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f21aa04 commit a3d54deCopy full SHA for a3d54de
tests/test_external.py
@@ -8,12 +8,17 @@
8
import datajoint as dj
9
from .schema_external import stores_config
10
from .schema_external import SimpleRemote
11
+current_location = dj.config['stores']['share']['location']
12
13
14
def setUp(self):
15
dj.config['stores'] = stores_config
16
17
18
+def tearDown(self):
19
+ dj.config['stores']['share']['location'] = current_location
20
+
21
22
def test_external_put():
23
"""
24
external storage put and get and remove
0 commit comments