Skip to content
Snippets Groups Projects
Commit 235ca0eb authored by David Trattnig's avatar David Trattnig
Browse files

Chore: Run test suite from make file

parent 66b30b90
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ help:
@echo " lint - verify code style"
@echo " spelling - check spelling of text"
@echo " style - apply automatic formatting"
@echo " test - run the test suite"
@echo
......@@ -24,3 +25,7 @@ spelling:
style:
python3 -m isort .
black .
.PHONY: test
test:
python3 -m unittest discover tests
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment