toxygen_wrapper/Makefile
emdee@macaw.me 7338667e7e
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Added Makefile
2023-12-15 14:24:07 +00:00

20 lines
303 B
Makefile

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