-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (26 loc) · 874 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (26 loc) · 874 Bytes
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
.PHONY: fmt fmt-check lint type test example ci
fmt:
python -m ruff format src/ tests/ examples/
fmt-check:
python -m ruff format --check src/ tests/ examples/
lint:
python -m ruff check src/ tests/ examples/
type:
python -m mypy src/
test:
python -m pytest -q --cov=weaver_kernel --cov-branch --cov-report=term-missing
example:
python examples/basic_cli.py
python examples/billing_demo.py
python examples/http_driver_demo.py
python examples/tutorial.py
python examples/readme_quickstart.py
python examples/contextweaver_policy_flow.py
python examples/repository_safety_check.py
python examples/chainweaver_flow.py
python examples/evaluation_artifact_policy.py
python examples/trace_export_demo.py
python examples/persistent_audit_demo.py
python examples/ocsf_export_demo.py
python examples/trace_replay_demo.py
ci: fmt-check lint type test example