From e61295e2429c6dbff26e03e777059e2311f06250 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Sun, 25 Dec 2022 18:22:10 +0400 Subject: [PATCH] test.sh->check.sh, changes in Makefile --- Makefile | 10 ++++++++-- test.sh => check.sh | 0 2 files changed, 8 insertions(+), 2 deletions(-) rename test.sh => check.sh (100%) 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