Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Add latency test to Makefile.
Browse files Browse the repository at this point in the history
Change-Id: I4f9dd84618ed346a500c37037ee9329efe968c2b
  • Loading branch information
dmitriykovalev committed Aug 2, 2018
1 parent e8340a4 commit 2121255
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ test-vision-driver:
$(PYTHON) -m unittest \
src/tests/spicomm_test.py

test-vision-latency:
$(PYTHON) -m unittest \
src/tests/camera_inference_latency_test.py

test-vision-models: test-vision-images
$(PYTHON) -m unittest \
src/tests/dish_classification_test.py \
Expand All @@ -35,7 +39,11 @@ test-vision-examples: test-vision-images
$(PYTHON) -m unittest \
src/tests/vision_examples_test.py

test-vision: test-vision-driver test-vision-models test-vision-examples
test-vision: \
test-vision-driver \
test-vision-latency \
test-vision-models \
test-vision-examples

deb:
dpkg-buildpackage -b -rfakeroot -us -uc -tc
Expand Down

0 comments on commit 2121255

Please sign in to comment.