File size: 519 Bytes
3d99d06
7ed5f43
3d99d06
 
7ed5f43
 
0cef317
7ed5f43
c81d415
 
 
 
73fd2fd
 
 
ef0f90a
73fd2fd
 
 
ef0f90a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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/bump_version.py

update-descriptive-statistics:
	@echo "--- 🚀 Recomputing Descriptive statistics ---"
	uv run src/update_descriptive_statistics.py