From c948b283519d85eb6918ef32ea07b3b0159cfcff Mon Sep 17 00:00:00 2001 From: Andiiiiiiyy Date: Wed, 17 Jan 2024 10:14:46 +0800 Subject: [PATCH 1/3] fix status of tip sensor --- .../ninety_six_assembly_qc_ot3/test_tip_sensor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py index cdada933d4d..fc04b4f9653 100644 --- a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py +++ b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py @@ -82,14 +82,14 @@ async def run(api: OT3API, report: CSVReport, section: str) -> None: slot_5 = helpers_ot3.get_slot_calibration_square_position_ot3(5) home_pos = await api.gantry_position(OT3Mount.LEFT) await api.move_to(OT3Mount.LEFT, slot_5._replace(z=home_pos.z)) - for expected_state in [False, True]: + for expected_state in [True, False]: print("homing...") await api.home([ax]) if not api.is_simulator: if expected_state: - ui.get_user_ready("remove all tips from the pipette") + ui.get_user_ready("press on tips to channels A1 + H12") else: - ui.get_user_ready("press on tips to channels A1 + H12") + ui.get_user_ready("remove all tips from the pipette") if not api.is_simulator: init_state = await get_tip_status(api) if init_state != EXPECTED_STATE_AT_HOME_POSITION: From 6428626c4a7aca728f2c8c3c034fd02878ec6a86 Mon Sep 17 00:00:00 2001 From: Andiiiiiiyy Date: Wed, 17 Jan 2024 10:46:44 +0800 Subject: [PATCH 2/3] change the trash_slot position for running 96ch protocol test --- .../production_qc/ninety_six_assembly_qc_ot3/test_droplets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_droplets.py b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_droplets.py index cb01bd15f04..a61b1b1e2f6 100644 --- a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_droplets.py +++ b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_droplets.py @@ -29,7 +29,7 @@ TIP_RACK_96_SLOT = 4 TIP_RACK_PARTIAL_SLOT = 5 RESERVOIR_SLOT = 2 -TRASH_SLOT = 1 +TRASH_SLOT = 12 TRASH_HEIGHT = 40 # DVT trash TIP_RACK_96_ADAPTER_HEIGHT = 11 # DVT adapter From 863d18b6f5df8dadeffe2b7fcaecf5038d11e901 Mon Sep 17 00:00:00 2001 From: Andy Sigler Date: Wed, 17 Jan 2024 09:44:15 -0500 Subject: [PATCH 3/3] formatting --- .../production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py index fc04b4f9653..51c0bb3d05b 100644 --- a/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py +++ b/hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_tip_sensor.py @@ -87,7 +87,7 @@ async def run(api: OT3API, report: CSVReport, section: str) -> None: await api.home([ax]) if not api.is_simulator: if expected_state: - ui.get_user_ready("press on tips to channels A1 + H12") + ui.get_user_ready("press on tips to channels A1 + H12") else: ui.get_user_ready("remove all tips from the pipette") if not api.is_simulator: