/
niceSOFT
/
python3-more-itertools
Обзор
Документация
Войти
/
niceSOFT
/
python3-more-itertools
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v10.2.0
Makefile
35 строк
697 B
Hauke D
Remove an unused variable in Makefile
03 янв 2024, 13:08
03 янв 2024, 13:08
e512a9c
Код
Авторство
О чём код?
.PHONY: all-checks all-checks: requirements coverage check docs package .PHONY: requirements requirements: python3 -m pip install -r requirements/development.txt python3 -m pip install --editable . .PHONY: check check: black --check . flake8 --exclude .venv,venv,docs/conf.py . stubtest more_itertools.more more_itertools.recipes .PHONY: format format: black . .PHONY: coverage coverage: coverage run --include="more_itertools/*.py" -m unittest coverage report --show-missing --fail-under=99 .PHONY: test test: python3 -m unittest -v .PHONY: docs docs: sphinx-build -W -b html docs docs/_build/html .PHONY: package package: requirements flit build --setup-py twine check dist/*