Skip to content

Commit defc572

Browse files
πŸ› Fixes to e2e tests (#211)
1 parent fe4f50c commit defc572

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

β€Žclients/python/test/e2e/test_files_api.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_upload_file(
4646
uploaded_file1.id == uploaded_file2.id
4747
), "could not detect that file was already on server"
4848
downloaded_file = files_api.download_file(
49-
uploaded_file1.id, destination_folder=tmp_path, retval=True
49+
uploaded_file1.id, destination_folder=tmp_path
5050
)
5151
assert Path(downloaded_file).parent == tmp_path
5252
assert _hash_file(Path(downloaded_file)) == _hash_file(tmp_file)

β€Žclients/python/test/e2e/test_solvers_api.pyβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
DEFAULT_TIMEOUT_SECONDS = 10 * 60 # 10 min
1515

1616

17+
@skip_if_osparc_version(at_least=Version("0.8.3.post0.dev20"))
1718
def test_jobs(api_client: osparc.ApiClient, sleeper: osparc.Solver):
1819
"""Test the jobs method
1920

0 commit comments

Comments
Β (0)