Skip to content

Commit

Permalink
make the 96 channel pass tests because it didn't have enough tips before
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Apr 24, 2024
1 parent a01c4a0 commit 07bdd24
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion hardware-testing/hardware_testing/liquid_sense/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ def build_run_args(cls, args: argparse.Namespace) -> "RunArgs":
pipette_tag = helpers._get_tag_from_pipette(pipette, False, False)

if args.trials == 0:
trials = 10
if args.channels < 96:
trials = 10
else:
trials = 7
else:
trials = args.trials

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
SLOT_DIAL = 5
SLOTS_TIPRACK = {
# TODO: add slot 12 when tipracks are disposable
50: [2, 3, 6, 7, 8, 9, 10, 11],
200: [2, 3, 6, 7, 8, 9, 10, 11], # NOTE: ignored during calibration
1000: [2, 3, 6, 7, 8, 9, 10, 11], # NOTE: ignored during calibration
50: [1, 2, 3, 6, 7, 8, 9, 10, 11],
200: [1, 2, 3, 6, 7, 8, 9, 10, 11], # NOTE: ignored during calibration
1000: [1, 2, 3, 6, 7, 8, 9, 10, 11], # NOTE: ignored during calibration
}

LABWARE_ON_SCALE = "nest_1_reservoir_195ml"
Expand Down

0 comments on commit 07bdd24

Please sign in to comment.