From 088c50337a630a7acaded2f3a5635408f80d3b8f Mon Sep 17 00:00:00 2001 From: andySigler Date: Thu, 16 Mar 2023 15:45:42 -0400 Subject: [PATCH] fix makefile incorrectly calling gravimetric script --- hardware-testing/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/hardware-testing/Makefile b/hardware-testing/Makefile index e814e2ed309..ffc8abc5cfc 100755 --- a/hardware-testing/Makefile +++ b/hardware-testing/Makefile @@ -80,19 +80,27 @@ test-gravimetric: $(python) -m hardware_testing.gravimetric --simulate --pipette 1000 --tip 1000 --trials 3 --starting-tip A1 --inspect $(python) -m hardware_testing.gravimetric --simulate --pipette 1000 --tip 1000 --trials 3 --starting-tip A1 --increment -.PHONY: test-integration -test-integration: test-gravimetric - $(python) -m hardware_testing.gravimetric --simulate --pipette 1000 --tip 1000 --trials 3 +.PHONY: test-production-qc +test-production-qc: $(python) -m hardware_testing.production_qc.pipette_assembly_qc_ot3 --operator test --simulate $(python) -m hardware_testing.production_qc.robot_assembly_qc_ot3 --simulate + +.PHONY: test-examples +test-examples: $(python) -m hardware_testing.examples.test_report $(python) -m hardware_testing.examples.custom_axis_settings_ot3 --simulate $(python) -m hardware_testing.examples.endstop_encoder_ot3 --simulate $(python) -m hardware_testing.examples.pick_up_tip_ot3 --simulate $(python) -m hardware_testing.examples.plunger_ot3 --simulate $(python) -m hardware_testing.examples.capacitive_probe_ot3 --simulate + +.PHONY: test-scripts +test-scripts: $(python) -m hardware_testing.scripts.bowtie_ot3 --simulate +.PHONY: test-integration +test-integration: test-gravimetric test-production-qc test-examples test-scripts + .PHONY: lint lint: $(python) -m mypy hardware_testing tests