test.sh->check.sh, changes in Makefile
This commit is contained in:
parent
c788976ab2
commit
e61295e242
2 changed files with 8 additions and 2 deletions
10
Makefile
10
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 .
|
||||
|
|
Reference in a new issue