danish-dynaword / makefile
Kenneth Enevoldsen
update makefile command to always update "default" dataset
36cd36a unverified
raw
history blame
721 Bytes
install:
@echo "--- 🚀 Installing project dependencies ---"
uv sync
test:
@echo "--- 🧪 Running tests ---"
uv run pytest src/tests/ | tee test_results.log
lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check . --fix # running ruff linting
bump-version:
@echo "--- 🚀 Bumping patch version ---"
uv run src/dynaword/bump_version.py
update-descriptive-statistics:
@echo "--- 🚀 Recomputing Descriptive statistics ---"
uv run src/dynaword/update_descriptive_statistics.py # compute missing descriptive statistics for all datasets
uv run src/dynaword/update_descriptive_statistics.py --dataset default --force # always ensure default dataset is up to date