webcheck/Makefile

34 lines
841 B
Makefile
Raw Normal View History

2024-01-11 14:36:01 +00:00
.PHONY: default install wheel dev test coverage black-check black-diff safety tag
guard-%:
@ if [ "${${*}}" = "" ]; then echo "Run 'pipenv shell' before command"; exit 1; fi
default: test
install: guard-PIPENV_ACTIVE
pip install -e .
wheel: guard-PIPENV_ACTIVE coverage black-check safety
python setup.py bdist_wheel
dev: guard-PIPENV_ACTIVE
pipenv install --dev --skip-lock
test: guard-PIPENV_ACTIVE
PYTHONPATH=./src pytest
coverage: guard-PIPENV_ACTIVE
PYTHONPATH=./src pytest --cov-report term --cov=./src/cli ./tests --cov-report term-missing
black-check: guard-PIPENV_ACTIVE
black --check src/ tests/
black-diff: guard-PIPENV_ACTIVE
black --diff src/ tests/
safety: guard-PIPENV_ACTIVE
pipenv lock --requirements | safety check --stdin
upload: guard-PIPENV_ACTIVE
python3 -m twine upload --repository gitea dist/*