django-for-runners_ynh/Makefile

49 lines
1.4 KiB
Makefile
Raw Normal View History

2020-12-22 18:55:11 +01:00
SHELL := /bin/bash
2021-01-17 11:32:28 +01:00
MAX_LINE_LENGTH := 119
2020-12-22 18:55:11 +01:00
all: help
help:
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9 -]+:.*?## / {printf "\033[36m%-22s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
check-poetry:
@if [[ "$(shell poetry --version 2>/dev/null)" == *"Poetry"* ]] ; \
then \
echo "Poetry found, ok." ; \
else \
echo 'Please install poetry first, with e.g.:' ; \
echo 'make install-poetry' ; \
exit 1 ; \
fi
install-poetry: ## install or update poetry
2021-01-17 11:32:28 +01:00
pip3 install -U pip
2020-12-22 18:55:11 +01:00
pip3 install -U poetry
install: check-poetry ## install project via poetry
poetry install
2021-01-17 11:32:28 +01:00
update: install-poetry ## update the sources and installation and generate "conf/requirements.txt"
poetry run pip install -U pip
2020-12-22 18:55:11 +01:00
poetry update
2021-01-17 11:32:28 +01:00
poetry export -f requirements.txt --output conf/requirements.txt
2020-12-22 18:55:11 +01:00
2021-01-17 11:32:28 +01:00
tox-listenvs: check-poetry ## List all tox test environments
poetry run tox --listenvs
tox: check-poetry ## Run pytest via tox with all environments
poetry run tox
pytest: install ## Run pytest
poetry run python3 ./run_pytest.py
local-test: install ## Run local_test.py to run the project locally
poetry run python3 ./local_test.py
2020-12-22 18:55:11 +01:00
local-diff-settings: ## Run "manage.py diffsettings" with local test
poetry run python3 local_test/opt_yunohost/manage.py diffsettings
##############################################################################
.PHONY: help check-poetry install-poetry install update local-test