13 lines
251 B
Makefile
13 lines
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)
|