Better
This commit is contained in:
parent
ca771a7edf
commit
d7f844d566
12 changed files with 198 additions and 251 deletions
8
check.sh
8
check.sh
|
|
@ -14,6 +14,14 @@ step "Python lint: ruff" uv run ruff check .
|
|||
step "Python dependency lint: deptry" uv run deptry .
|
||||
step "Python unit tests" uv run pytest pipeline
|
||||
|
||||
(
|
||||
cd "$ROOT_DIR/finder"
|
||||
# finder is a separate uv project (the scraper) with its own venv, so the
|
||||
# root `pytest pipeline` run above never reaches it. pytest is not a declared
|
||||
# finder dependency, so pull it in ephemerally as its README documents.
|
||||
step "Finder (scraper) unit tests" uv run --with pytest pytest -q
|
||||
)
|
||||
|
||||
(
|
||||
cd "$ROOT_DIR/frontend"
|
||||
step "Frontend lint: ESLint" npm run lint
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue