-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
48 lines (36 loc) · 1.67 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
SRC:=src tests plugins
RUN_UNDER?=uvx
ARGS?=
.PHONY: format ruff format_check mypy lint check test ci help docs docs-publish
default: help
format:
@printf "\033[1;34m==> Formatting code with Black...\033[0m\n"
$(RUN_UNDER) black $(SRC)
ruff:
@printf "\033[1;34m==> Running lint checks with ruff...\033[0m\n"
$(RUN_UNDER) ruff check $(SRC)
format_check:
@printf "\033[1;34m==> Running black check...\033[0m\n"
$(RUN_UNDER) black --check $(SRC)
mypy:
@printf "\033[1;34m==> Running mypy checks...\033[0m\n"
$(RUN_UNDER) mypy --strict --disable-error-code=type-arg --disable-error-code=no-untyped-call --ignore-missing-import --disable-error-code=unused-ignore --allow-subclassing-any $(SRC)
lint: ruff mypy format_check
test:
@printf "\033[1;34m==> Running tests...\033[0m\n"
$(RUN_UNDER) tox -e py -- $(ARGS)
ci: lint test
@printf "\n\033[1;32m==> All CI checks completed successfully.\033[0m\n"
help:
@printf "\033[1;33mAvailable targets:\033[0m\n"
@printf "\t\033[1;32mformat\033[0m - Format code with Black\n"
@printf "\t\033[1;32mlint\033[0m - Run lint checks with ruff and black\n"
@printf "\t\033[1;32mtest\033[0m - Run tests with tox\n"
@printf "\t\033[1;32mci\033[0m - Run all CI checks (lint, check, test)\n"
@printf "\t\033[1;32mhelp\033[0m - Display this help message\n"
docs:
@printf "\033[1;34m==> Building docs...\033[0m\n"
@$(RUN_UNDER) --from 'sphinx<7.0.0' --with sphinx_rtd_theme --with . --with plugins/fcp_dbc --with plugins/fcp_nop --with plugins/fcp_can_c sphinx-build -M html docs docs/build
docs-publish: docs
@printf "\033[1;34m==> Building published docs...\033[0m\n"
@tar -cf docs/build/artifact.tar docs/build/html/**/* docs/build/html/*