Add slugify_or_default for core-hub parity, bump to 0.2.0, document ecosystem position in INTENT/SCOPE/README, wire capability relations to state-hub and core-hub, and extend utils tests. Part of CUST-WP-0057 consolidation.
13 lines
No EOL
251 B
Makefile
13 lines
No EOL
251 B
Makefile
.PHONY: install test ecosystem-regression
|
|
|
|
UV ?= uv
|
|
ECOSYSTEM_REGRESSION ?= /home/worsch/the-custodian/scripts/hub-ecosystem-regression.sh
|
|
|
|
install:
|
|
$(UV) sync
|
|
|
|
test:
|
|
$(UV) run python -m pytest -q
|
|
|
|
ecosystem-regression:
|
|
bash $(ECOSYSTEM_REGRESSION)
|