1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: venvcheck ## Check if venv is active
venvcheck:
ifeq ("$(VIRTUAL_ENV)","")
@echo "Venv is not activated!"
@echo "Activate venv first."
@echo
exit 1
endif
.PHONY: env
env: venvcheck ## Double check environment variables
env
.PHONY: install
install: venvcheck ## Install the dependencies, but not dev-dependencies
poetry install --no-dev
.PHONY: dev
dev: venvcheck ## Install dependencies and dev-dependencies, but not this project itself
poetry install --no-root --extras "js dev-lint dev-type-checking dev-coverage"
.PHONY: test
test: venvcheck ## Run the TOX tests in a TOX environment
poetry run tox
.PHONY: dev-test
dev-test: venvcheck ## Run the tests in dev environment
poetry run pytest --cov=pyshacl test/
poetry run pytest test/issues/
.PHONY: format
format: venvcheck ## Run Ruff and isort Formatters
ifeq ("$(FilePath)", "")
poetry run ruff check --select I --fix ./pyshacl #isort fix
poetry run ruff format --no-preview --target-version py39 pyshacl
else
poetry run ruff check --select I --fix "$(FilePath)" #isort fix
poetry run ruff format --no-preview --target-version py39 "$(FilePath)"
endif
.PHONY: lint
lint: venvcheck ## Validate with Ruff and isort in check-only mode
ifeq ("$(FilePath)", "")
poetry run ruff check ./pyshacl #flake8
poetry run ruff check --select I ./pyshacl #isort
poetry run ruff format --check --no-preview --target-version py39 pyshacl
else
poetry run ruff check ./"$(FilePath)" #flake8
poetry run ruff check --select I ./"$(FilePath)" #isort
poetry run ruff format --check --no-preview --target-version py39 "$(FilePath)"
endif
.PHONY: type-check
type-check: venvcheck ## Validate with MyPy in check-only mode
ifeq ("$(FilePath)", "")
poetry run python3 -m mypy --python-version 3.9 --ignore-missing-imports pyshacl
else
poetry run python3 -m mypy --python-version 3.9 --ignore-missing-imports "$(FilePath)"
endif
.PHONY: upgrade
upgrade: venvcheck ## Upgrade the dependencies
poetry update
.PHONY: downgrade
downgrade: venvcheck ## Downgrade the dependencies
git checkout pyproject.toml && git checkout poetry.lock
poetry install --no-root --extras "js dev-lint dev-type-checking dev-coverage"
.PHONY: publish
publish: venvcheck ## Build and publish to PYPI
poetry build
poetry publish
|