Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): change liquid_probe to respect min well height #15488

Merged
merged 12 commits into from
Jun 26, 2024
Prev Previous commit
Next Next commit
passing generic tests now. i hope?
  • Loading branch information
aaron-kulkarni committed Jun 26, 2024
commit 716650d61a652b4222d49440187fa83aef060ecc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_configure_virtual_pipette_for_volume(
nozzle_map=result1.nozzle_map,
back_left_corner_offset=Point(-8.0, -22.0, -259.15),
front_right_corner_offset=Point(-8.0, -22.0, -259.15),
pipette_lld_settings={},
pipette_lld_settings={"t50": {"minHeight": 0.5, "minVolume": 0.0}},
)
subject_instance.configure_virtual_pipette_for_volume(
"my-pipette", 1, result1.model
Expand All @@ -113,7 +113,7 @@ def test_configure_virtual_pipette_for_volume(
nozzle_map=result2.nozzle_map,
back_left_corner_offset=Point(-8.0, -22.0, -259.15),
front_right_corner_offset=Point(-8.0, -22.0, -259.15),
pipette_lld_settings={},
pipette_lld_settings={"t50": {"minHeight": 0.5, "minVolume": 0.0}},
)


Expand Down Expand Up @@ -262,5 +262,9 @@ def test_get_pipette_static_config(
nozzle_map=dummy_nozzle_map,
back_left_corner_offset=Point(10, 20, 30),
front_right_corner_offset=Point(40, 50, 60),
pipette_lld_settings={},
pipette_lld_settings={
"t50": {"minHeight": 0.5, "minVolume": 0},
"t200": {"minHeight": 0.5, "minVolume": 0},
"t1000": {"minHeight": 0.5, "minVolume": 0}
},
)
Original file line number Diff line number Diff line change
Expand Up @@ -9659,6 +9659,7 @@ exports[`snapshot tests > makeContext 1`] = `
},
},
},
"lldSettings": {},
"model": "p1000",
"nozzleMap": {
"A1": [
Expand Down Expand Up @@ -12286,6 +12287,7 @@ exports[`snapshot tests > makeContext 1`] = `
},
},
},
"lldSettings": {},
"model": "p10",
"nozzleMap": {
"A1": [
Expand Down Expand Up @@ -13930,6 +13932,7 @@ exports[`snapshot tests > makeContext 1`] = `
},
},
},
"lldSettings": {},
"model": "p10",
"nozzleMap": {
"A1": [
Expand Down Expand Up @@ -15299,6 +15302,7 @@ exports[`snapshot tests > makeContext 1`] = `
},
},
},
"lldSettings": {},
"model": "p300",
"nozzleMap": {
"A1": [
Expand Down Expand Up @@ -17034,6 +17038,7 @@ exports[`snapshot tests > makeContext 1`] = `
},
},
},
"lldSettings": {},
"model": "p300",
"nozzleMap": {
"A1": [
Expand Down
Loading