Skip to content

Commit

Permalink
Failing system test for spec_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
callumforrester committed Jan 16, 2025
1 parent f17f866 commit 148b1e0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tests/system_tests/test_blueapi_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from bluesky_stomp.models import BasicAuthentication
from pydantic import TypeAdapter
from requests.exceptions import ConnectionError
from scanspec.specs import Line

from blueapi.client.client import (
BlueapiClient,
Expand Down Expand Up @@ -363,7 +364,17 @@ def test_delete_current_environment(client: BlueapiClient):
],
"num": 5,
},
)
),
Task(
name="spec_scan",
params={
"detectors": [
"image_det",
"current_det",
],
"spec": Line("x", 0.0, 10.0, 10) * Line("y", 5.0, 15.0, 20),
},
),
],
)
def test_plan_runs(client_with_stomp: BlueapiClient, task: Task):
Expand Down

0 comments on commit 148b1e0

Please sign in to comment.