We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad2ae0 commit 6cb43aaCopy full SHA for 6cb43aa
services/storage/tests/test_dsm.py
@@ -245,6 +245,8 @@ async def test_dsm_datcore(
245
is_deleted = await dsm.delete_file(user_id, DATCORE_STR, fmd_to_delete.file_id)
246
assert is_deleted
247
248
+ import time; time.sleep(1) # FIXME: takes some time to delete!!
249
+
250
data = await dsm.list_files(
251
user_id=user_id, location=DATCORE_STR, uuid_filter=BUCKET_NAME
252
)
@@ -293,6 +295,9 @@ async def test_dsm_s3_to_datcore(
293
295
destination_id=datcore_structured_testbucket["coll2_id"],
294
296
297
298
+ #FIXME: upload takes some time
299
+ import time; time.sleep(1)
300
301
302
303
0 commit comments