hub-core/Makefile

13 lines
251 B
Makefile
Raw Normal View History

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