From 46152ae8d9bb57be6a6aff39617e61bbe5f53166 Mon Sep 17 00:00:00 2001 From: Josh Klar Date: Thu, 3 Feb 2022 01:06:53 -0800 Subject: [PATCH] feat(ci): run tests (from #288) in CI, which already runs make test --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eca9f1e..1757e8b 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,11 @@ powerwash: clean @echo "===> Removing pipenv-managed virtual environment" @$(PIPENV) --rm || true -test: lint +test: lint unit-tests + +.PHONY: unit-tests +unit-tests: devdeps + @$(PIPENV) run python3 -m unittest reset-bootloader: @echo "===> Rebooting your board to bootloader (safe to ignore file not found errors)"