test.sh->check.sh, changes in Makefile

This commit is contained in:
DarkCat09 2022-12-25 18:22:10 +04:00
parent c788976ab2
commit e61295e242
2 changed files with 8 additions and 2 deletions

View file

@ -11,9 +11,15 @@ clean:
rm -rf tests/__pycache__ rm -rf tests/__pycache__
rm -rf site .mypy_cache rm -rf site .mypy_cache
test:
python -m unittest discover -v ./tests
check: check:
chmod +x test.sh python -m mypy .
bash test.sh python -m pylint ./python_aternos
fullcheck:
chmod +x check.sh; bash check.sh
format: format:
python -m autopep8 -r --in-place . python -m autopep8 -r --in-place .

View file