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:
parent
09502f6fc7
commit
7338667e7e
7 changed files with 440 additions and 11 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue