Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"repo_url": "https://github.com/onfido/onfido-openapi-spec",
"short_sha": "4204f00",
"long_sha": "4204f00a2c7f0f5bd61da3b5442d8eb613418e9e",
"version": ""
"version": "v6.0.0"
},
"release": "v6.0.0"
}
26 changes: 13 additions & 13 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions tests/test_workflow_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def test_find_workflow_run(onfido_api, workflow_run):


def test_download_evidence_file(onfido_api, workflow_run):
file = onfido_api.download_signed_evidence_file(workflow_run.id)
file = repeat_request_until_http_code_changes(
onfido_api.download_signed_evidence_file, [workflow_run.id], sleep_time=2
)

assert len(file) > 0
assert file[:4] == b"%PDF"
Expand All @@ -88,7 +90,7 @@ def test_download_evidence_folder(onfido_api, applicant_id):
)

file = repeat_request_until_http_code_changes(
onfido_api.download_evidence_folder, [workflow_run_id]
onfido_api.download_evidence_folder, [workflow_run_id], sleep_time=2
)

assert len(file) > 0
Expand Down