Skip to content

Commit

Permalink
fix makefile incorrectly calling gravimetric script
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler committed Mar 16, 2023
1 parent 67e3a03 commit 088c503
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions hardware-testing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 088c503

Please sign in to comment.