Skip to content

Commit

Permalink
🐛 Fixes to e2e tests (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis authored Nov 13, 2024
1 parent fe4f50c commit defc572
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python/test/e2e/test_files_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_upload_file(
uploaded_file1.id == uploaded_file2.id
), "could not detect that file was already on server"
downloaded_file = files_api.download_file(
uploaded_file1.id, destination_folder=tmp_path, retval=True
uploaded_file1.id, destination_folder=tmp_path
)
assert Path(downloaded_file).parent == tmp_path
assert _hash_file(Path(downloaded_file)) == _hash_file(tmp_file)
Expand Down
1 change: 1 addition & 0 deletions clients/python/test/e2e/test_solvers_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
DEFAULT_TIMEOUT_SECONDS = 10 * 60 # 10 min


@skip_if_osparc_version(at_least=Version("0.8.3.post0.dev20"))
def test_jobs(api_client: osparc.ApiClient, sleeper: osparc.Solver):
"""Test the jobs method
Expand Down

0 comments on commit defc572

Please sign in to comment.