-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
62 lines (43 loc) · 1.22 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
.PHONY: install install-core install-dev install-demo lint format test clean build publish all install-hooks hooks docs docs-clean docs-html docs-coverage
install-core:
poetry install
install-dev:
poetry install --with dev
install-demo:
poetry install --with demo
install-all:
poetry install --with dev,demo
install-docs:
poetry install --with docs
install: install-core
install-hooks:
poetry run pre-commit install
hooks:
poetry run pre-commit run --all-files
lint:
poetry run flake8 --extend-ignore E501,W293,E128,W291,E402,E203 agentconnect/ demos/api/ demos/utils/
format:
poetry run black agentconnect/ demos/
test:
@echo "Tests are disabled - skipping test execution"
@exit 0
docs:
$(MAKE) -C docs html
docs-clean:
$(MAKE) -C docs clean
docs-html:
$(MAKE) -C docs html
docs-coverage:
poetry run python docs/doc_coverage.py
clean:
rm -rf dist/ build/ *.egg-info/ .pytest_cache/ .coverage htmlcov/
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type d -name "*.egg-info" -exec rm -rf {} +
find . -type f -name "*.pyc" -delete
find . -type f -name "*.pyo" -delete
find . -type f -name "*.pyd" -delete
build:
poetry build
publish:
poetry publish
all: install-all lint format test hooks docs