Added Makefile
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
PYTHON=python3
|
||||
|
||||
prepare::
|
||||
bash .pylint.sh
|
||||
|
||||
check::
|
||||
PYTHONPATH=${PWD} pyanalyze \
|
||||
tox_wrapper/tox.py tox_wrapper/tests/tests_wrapper.py \
|
||||
> .pyanal.out 2>&1
|
||||
|
||||
install::
|
||||
$(PYTHON) setup.py install
|
||||
|
||||
test;:
|
||||
$(PYTHON) tox_wrapper/tests/tests_wrapper.py
|
||||
|
||||
clean::
|
||||
rm -f *~ */*~ */*/*~
|
||||
rm -rf *.egg-info
|
Reference in New Issue
Block a user