Skip to content

Commit 07ac014

Browse files
Failing system test for spec_scan
1 parent 53801cd commit 07ac014

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/system_tests/test_blueapi_system.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from bluesky_stomp.models import BasicAuthentication
88
from pydantic import TypeAdapter
99
from requests.exceptions import ConnectionError
10+
from scanspec.specs import Line
1011

1112
from blueapi.client.client import (
1213
BlueapiClient,
@@ -366,7 +367,17 @@ def test_delete_current_environment(client: BlueapiClient):
366367
],
367368
"num": 5,
368369
},
369-
)
370+
),
371+
Task(
372+
name="spec_scan",
373+
params={
374+
"detectors": [
375+
"image_det",
376+
"current_det",
377+
],
378+
"spec": Line("x", 0.0, 10.0, 10) * Line("y", 5.0, 15.0, 20),
379+
},
380+
),
370381
],
371382
)
372383
def test_plan_runs(client_with_stomp: BlueapiClient, task: Task):

0 commit comments

Comments
 (0)