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 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 .
|
||||||
|
|
Reference in a new issue