Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
tribeiro committed Dec 3, 2024
1 parent 9a82122 commit a143d82
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/auxtel/test_latiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ async def setup_types(self) -> None:
topic="logevent_endReadout",
)

self.start_integration = self.get_sample(
component="ATCamera",
topic="logevent_startIntegration",
)

async def test_setup_instrument(self) -> None:
valid_entries: typing.List[
typing.Dict[str, typing.Union[int, float, str, None]]
Expand Down
4 changes: 4 additions & 0 deletions tests/maintel/test_comcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ async def setup_types(self) -> None:
component="CCCamera",
topic="logevent_endReadout",
)
self.start_integration = self.get_sample(
component="CCCamera",
topic="logevent_startIntegration",
)

async def test_setup_instrument(self) -> None:
valid_entries: typing.List[
Expand Down
5 changes: 5 additions & 0 deletions tests/maintel/test_lsstcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ async def setup_types(self) -> None:
topic="logevent_endReadout",
)

self.start_integration = self.get_sample(
component="MTCamera",
topic="logevent_startIntegration",
)

async def test_setup_instrument(self) -> None:
valid_entries: typing.List[
typing.Dict[str, typing.Union[int, float, str, None]]
Expand Down
5 changes: 5 additions & 0 deletions tests/test_generic_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ async def setup_types(self) -> None:
topic="logevent_endReadout",
)

self.start_integration = self.get_sample(
component="GenericCamera:1",
topic="logevent_startIntegration",
)

async def test_start_live_view(self) -> None:
await self.generic_camera.start_live_view(exptime=1.0)

Expand Down

0 comments on commit a143d82

Please sign in to comment.