Skip to content

Commit

Permalink
Dodal 846 update i04 to use device_factory (#744)
Browse files Browse the repository at this point in the history
* Convert all i04 devices to device_factory
  • Loading branch information
rtuck99 authored Jan 30, 2025
1 parent adc54b2 commit b13a68b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies = [
"ophyd == 1.9.0",
"ophyd-async >= 0.8a5",
"bluesky >= 1.13",
"dls-dodal @ git+https://github.com/DiamondLightSource/dodal.git@709df016424e3a6776f839cc58993651c5c678ab",
"dls-dodal @ git+https://github.com/DiamondLightSource/dodal.git@b497463699553b8eb263f8681b5634c8c301b1c4",
]


Expand Down
4 changes: 2 additions & 2 deletions tests/unit_tests/beamlines/i04/test_thawing.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async def smargon(RE: RunEngine) -> AsyncGenerator[Smargon, None]:

@pytest.fixture
def thawer(RE: RunEngine) -> Thawer:
return i04.thawer(fake_with_ophyd_sim=True, wait_for_connection=True)
return i04.thawer(connect_immediately=True, mock=True)


@pytest.fixture
Expand All @@ -96,7 +96,7 @@ async def completed_status():

@pytest.fixture
def robot(RE: RunEngine) -> BartRobot:
return i04.robot(wait_for_connection=True, fake_with_ophyd_sim=True)
return i04.robot(connect_immediately=True, mock=True)


def _do_thaw_and_confirm_cleanup(
Expand Down

0 comments on commit b13a68b

Please sign in to comment.