From 5fdc5d676f59c245d5a4354e84e4d0724c6930d2 Mon Sep 17 00:00:00 2001 From: ksieuk Date: Sun, 8 Oct 2023 22:22:41 +0300 Subject: [PATCH] feat: [#41] tests check --- src/assistant/Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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