-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
67 lines (56 loc) · 1.86 KB
/
Makefile
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
.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
.PHONY: test
test: venvcheck ## Run the TOX tests in a TOX environment
poetry run tox
.PHONY: dev-test
test: venvcheck ## Run the tests in dev environment
poetry run pytest --cov=pyshacl test/
.PHONY: format
format: venvcheck ## Run Black and isort Formatters
ifeq ("$(FilePath)", "")
poetry run black --config=./pyproject.toml --verbose sanic_plugin_toolkit
poetry run isort sanic_plugin_toolkit
else
poetry run black --config=./pyproject.toml --verbose "$(FilePath)"
poetry run isort "$(FilePath)"
endif
.PHONY: lint
lint: venvcheck ## Validate with Black and isort in check-only mode
ifeq ("$(FilePath)", "")
poetry run flake8 sanic_plugin_toolkit
poetry run black --config=./pyproject.toml --check --verbose sanic_plugin_toolkit
poetry run isort --check-only sanic_plugin_toolkit
else
poetry run flake8 "$(FilePath)"
poetry run black --config=./pyproject.toml --check --verbose "$(FilePath)"
poetry run isort --check-only "$(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
.PHONY: publish
publish: venvcheck ## Build and publish to PYPI
poetry build
poetry publish