.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)