Skip to content

Commit

Permalink
change the plan to step_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
ZohebShaikh committed Dec 17, 2024
1 parent 7f49dd6 commit 585c606
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
15 changes: 3 additions & 12 deletions tests/system_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,9 @@ def task_definition() -> dict[str, Task]:
return {
"simple_plan": Task(name="sleep", params={"time": 0.0}),
"long_plan": Task(name="sleep", params={"time": 1.0}),
"spec_scan": Task(
name="spec_scan",
params={
"detectors": ["det"],
"spec": {
"axis": "sample_stage.x",
"start": 1.0,
"stop": 10.0,
"num": 10,
"type": "Line",
},
},
"plan_step_scan": Task(
name="plan_step_scan",
params={"detectors": "det", "motor": "sample_stage.x"},
),
}

Expand Down
2 changes: 1 addition & 1 deletion tests/system_tests/test_plans.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@disable_side_effects
@beamline_specific_test
@pytest.mark.parametrize("plan", ["spec_scan"])
@pytest.mark.parametrize("plan", ["plan_step_scan"])
def test_spec_scan_task(
client_with_stomp: BlueapiClient,
task_definition: dict[str, Task],
Expand Down

0 comments on commit 585c606

Please sign in to comment.