Skip to content

Commit 19cdb26

Browse files
committed
fix(data): make dataviewer validation install test extras
🧪 - Generated by Copilot
1 parent 1fa4def commit 19cdb26

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

data-management/viewer/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
"build:worker": "cd operator-worker && uv sync --frozen --extra dev",
1414
"build:frontend": "cd frontend && npm ci && npm run build",
1515
"build": "npm run build:backend && npm run build:worker && npm run build:frontend",
16-
"test:backend": "cd backend && uv run --with-editable ../../../evaluation/vlm_judge pytest",
17-
"test:worker": "cd operator-worker && uv run pytest",
16+
"test:backend": "cd backend && uv run --extra dev --extra analysis --extra hdf5 --extra export --extra auth --with-editable ../../../evaluation/vlm_judge pytest",
17+
"test:worker": "cd operator-worker && uv run --extra dev pytest",
1818
"test:frontend": "cd frontend && npm run validate",
1919
"test": "npm run test:backend && npm run test:worker && npm run test:frontend",
20-
"lint:backend": "cd backend && uv run ruff check src/",
21-
"lint:worker": "cd operator-worker && uv run ruff check src tests",
20+
"lint:backend": "cd backend && uv run --extra dev ruff check src/",
21+
"lint:worker": "cd operator-worker && uv run --extra dev ruff check src tests",
2222
"lint:frontend": "cd frontend && npm run lint",
2323
"lint": "npm run lint:backend && npm run lint:worker && npm run lint:frontend",
24-
"validate:backend": "cd backend && uv run ruff check src/ && uv run --with-editable ../../../evaluation/vlm_judge pytest",
25-
"validate:worker": "cd operator-worker && uv lock --check && uv run ruff check src tests && uv run pytest",
24+
"validate:backend": "cd backend && uv run --extra dev ruff check src/ && uv run --extra dev --extra analysis --extra hdf5 --extra export --extra auth --with-editable ../../../evaluation/vlm_judge pytest",
25+
"validate:worker": "cd operator-worker && uv lock --check && uv run --extra dev ruff check src tests && uv run --extra dev pytest",
2626
"validate:frontend": "cd frontend && npm run validate",
2727
"validate": "npm run validate:backend && npm run validate:worker && npm run validate:frontend",
28-
"validate:fix": "cd backend && uv run ruff check src/ --fix && cd ../frontend && npm run lint:fix && npm run format:fix && npm run validate",
28+
"validate:fix": "cd backend && uv run --extra dev ruff check src/ --fix && cd ../frontend && npm run lint:fix && npm run format:fix && npm run validate",
2929
"clean": "rm -rf frontend/dist frontend/node_modules backend/.venv operator-worker/.venv"
3030
}
3131
}

0 commit comments

Comments
 (0)