Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Mar 20, 2023
1 parent 2e6be6d commit 8f92ff8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/integration/test_rest_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ def client() -> RestClient:
POST_SCAN_BODY = {
"njobs": 1,
"memory": "20G",
"collector": "https://le-collector.edu",
"schedd": "https://un-schedd.edu",
"reco_algo": "anything",
"event_i3live_json": {"a": 22},
"nsides": {1: 2, 3: 4},
Expand All @@ -102,7 +104,10 @@ async def _launch_scan(rc: RestClient, post_scan_body: dict, expected_tag: str)
)

clientmanager_args = (
f"python -m clientmanager start "
f"python -m clientmanager "
f"--collector {post_scan_body['collector']} "
f"--schedd {post_scan_body['schedd']} "
"start "
f" --logs-directory /common-space "
f" --jobs {post_scan_body['njobs']} "
f" --memory {post_scan_body['memory']} "
Expand Down

0 comments on commit 8f92ff8

Please sign in to comment.