Skip to content

Commit

Permalink
Make plan_stub test dir and move tests into it
Browse files Browse the repository at this point in the history
  • Loading branch information
abbiemery committed May 21, 2024
1 parent ef98501 commit cb6b852
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/ophyd_async/plan_stubs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from .fly import (
prepare_static_seq_table_flyer_and_detectors_with_same_trigger,
time_resolved_fly_and_collect_with_static_seq_table)
time_resolved_fly_and_collect_with_static_seq_table,
)

__all__ = [
"time_resolved_fly_and_collect_with_static_seq_table",
Expand Down
3 changes: 1 addition & 2 deletions src/ophyd_async/plan_stubs/fly.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

import bluesky.plan_stubs as bps

from ophyd_async.core.detector import (DetectorTrigger, StandardDetector,
TriggerInfo)
from ophyd_async.core.detector import DetectorTrigger, StandardDetector, TriggerInfo
from ophyd_async.core.flyer import HardwareTriggeredFlyable
from ophyd_async.core.utils import in_micros
from ophyd_async.panda._table import SeqTable, SeqTableRow, seq_table_from_rows
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
from ophyd_async.epics.signal.signal import epics_signal_rw
from ophyd_async.panda import CommonPandaBlocks
from ophyd_async.panda._trigger import StaticSeqTableTriggerLogic
from ophyd_async.plan_stubs import \
prepare_static_seq_table_flyer_and_detectors_with_same_trigger
from ophyd_async.plan_stubs import (
prepare_static_seq_table_flyer_and_detectors_with_same_trigger,
time_resolved_fly_and_collect_with_static_seq_table)


class DummyWriter(DetectorWriter):
Expand Down

0 comments on commit cb6b852

Please sign in to comment.