Skip to content

Commit b7f1c31

Browse files
committed
Sleep longer, allow extraAttributes
1 parent d6e8469 commit b7f1c31

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/test_dataset/test_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def test_main_example():
8888
).each_record():
8989
assert isinstance(record, dict)
9090
assert set(record.keys()) == {
91+
"extraAttributes",
9192
"primaryAccession",
9293
"genes",
9394
"sequence",

test/test_id_mapping/test_id_mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def test_gene_names():
126126
)
127127
# At this point it might be already finished
128128
assert request.get_status() in {"RUNNING", "FINISHED"}
129-
sleep(1)
129+
sleep(5)
130130
# At this point it should definitely be finished
131131
assert request.get_status() == "FINISHED"
132132
for result in request.each_result():

0 commit comments

Comments
 (0)