vibes
This commit is contained in:
parent
80c093b7ba
commit
f72c43a9fa
101 changed files with 2168 additions and 1177 deletions
19
Taskfile.yml
19
Taskfile.yml
|
|
@ -24,10 +24,14 @@ tasks:
|
|||
|
||||
test:python:
|
||||
cmds:
|
||||
- uv run -m pipeline.utils.test_fuzzy_join
|
||||
- uv run pytest pipeline/utils/test_haversine.py
|
||||
- uv run pytest pipeline/utils/test_poi_counts.py
|
||||
- uv run pytest pipeline/transform/postcode_boundaries/test_postcode_boundaries.py
|
||||
|
||||
test:python:fuzzy-join:
|
||||
desc: Run fuzzy join test (requires data files in data/)
|
||||
cmds:
|
||||
- uv run -m pipeline.utils.test_fuzzy_join
|
||||
|
||||
test:server:
|
||||
desc: Run Rust backend tests
|
||||
|
|
@ -107,6 +111,19 @@ tasks:
|
|||
cmds:
|
||||
- cargo fmt --all
|
||||
|
||||
ci:
|
||||
desc: Run CI checks locally (lint + typecheck + test, no builds)
|
||||
cmds:
|
||||
- task: lint
|
||||
- task: typecheck
|
||||
- task: test
|
||||
|
||||
typecheck:
|
||||
desc: TypeScript typecheck only
|
||||
dir: frontend
|
||||
cmds:
|
||||
- npm run typecheck
|
||||
|
||||
check:
|
||||
desc: Run all checks (lint, typecheck, build)
|
||||
cmds:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue