wifipumpkin3/makefile

34 lines
642 B
Makefile
Raw Normal View History

2020-04-12 23:26:30 +00:00
format:
black wifipumpkin3 setup.py
test:
2020-05-30 00:51:37 +00:00
python3.7 -m unittest -v
test_coverage:
2020-04-12 23:26:30 +00:00
python3.7 -m coverage run -m tests
python3.7 -m coverage report
python3.7 -m unittest -v
install:
find . -name '*.pyc' -delete
python3.7 setup.py install
install_env:
python3.7 -m pip install PyQt5==5.14
python3.7 -c "from PyQt5.QtCore import QSettings; print('done')"
2020-04-14 00:26:34 +00:00
find . -name '*.pyc' -delete
2020-04-12 23:26:30 +00:00
python3.7 setup.py install
2020-05-22 00:32:37 +00:00
install_dev:
pip3 uninstall wifipumpkin3
find . -name '*.pyc' -delete
python3.7 setup.py install
2020-04-12 23:26:30 +00:00
clean:
rm -rf build dist README MANIFEST *.egg-info
2020-04-14 00:26:34 +00:00
python3.7 setup.py clean --all
2020-04-12 23:26:30 +00:00
distclean: clean
2020-04-14 00:26:34 +00:00
rm -rf .venv