diff --git a/src/assistant/Makefile b/src/assistant/Makefile index b8d750c..e4a42cb 100644 --- a/src/assistant/Makefile +++ b/src/assistant/Makefile @@ -1,3 +1,14 @@ include ../../common_makefile.mk -PROJECT_FOLDERS = bin lib tests \ No newline at end of file +PROJECT_FOLDERS = bin lib tests + + +.PHONY: test +test: + @echo 'Running tests...' + @$(PYTHON) -m pytest tests/unit + +.PHONY: ci-test +ci-test: + @echo 'Running tests...' + @$(PYTHON) -m pytest tests/unit