diff --git a/Makefile b/Makefile index 9b28648..8857c08 100644 --- a/Makefile +++ b/Makefile @@ -11,9 +11,15 @@ clean: rm -rf tests/__pycache__ rm -rf site .mypy_cache +test: + python -m unittest discover -v ./tests + check: - chmod +x test.sh - bash test.sh + python -m mypy . + python -m pylint ./python_aternos + +fullcheck: + chmod +x check.sh; bash check.sh format: python -m autopep8 -r --in-place . diff --git a/test.sh b/check.sh similarity index 100% rename from test.sh rename to check.sh