Skip to content

Commit

Permalink
fix docker tag finagling test - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Jan 28, 2025
1 parent 7e95352 commit e537b70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_rest_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ async def _launch_scan(
post_resp,
scanner_server_args,
rest_address,
docker_tag_expected,
)

return post_resp # type: ignore[no-any-return]
Expand Down Expand Up @@ -195,6 +196,7 @@ async def _assert_db_skyscank8sjobs_coll(
post_resp: dict,
scanner_server_args: str,
rest_address: str,
docker_tag_expected: str,
):
# query the SkyScanK8sJobs coll
# -> since the scanner-server metadata is no longer stored in the manifest
Expand Down Expand Up @@ -253,7 +255,7 @@ async def _assert_db_skyscank8sjobs_coll(
"scanner_server_env"
].items()
],
"image": f"icecube/skymap_scanner:{os.environ['LATEST_TAG']}",
"image": f"icecube/skymap_scanner:{docker_tag_expected}",
"name": f'skyscan-server-{post_resp["scan_id"]}',
"resources": {
"limits": {"cpu": "1", "memory": "1024000000"},
Expand Down

0 comments on commit e537b70

Please sign in to comment.