feat: [#41] tests check

This commit is contained in:
ksieuk
2023-10-08 22:22:41 +03:00
parent fdad002dde
commit 5fdc5d676f
+12 -1
View File
@@ -1,3 +1,14 @@
include ../../common_makefile.mk
PROJECT_FOLDERS = bin lib tests
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