release: bump version to 0.71.1
This commit is contained in:
34
scripts/harness/quick-check.sh
Executable file
34
scripts/harness/quick-check.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
||||
|
||||
run() {
|
||||
printf "+ %s\n" "$*" >&2
|
||||
"$@"
|
||||
}
|
||||
|
||||
main() {
|
||||
cd "$ROOT_DIR"
|
||||
|
||||
run scripts/harness/doctor.sh
|
||||
run git diff --check
|
||||
run zsh -n planet.sh
|
||||
run bash -n scripts/bootstrap-dev.sh
|
||||
run bash -n scripts/harness/doctor.sh
|
||||
run bash -n scripts/harness/quick-check.sh
|
||||
run bash -n scripts/harness/validate.sh
|
||||
|
||||
(
|
||||
cd "$ROOT_DIR/backend"
|
||||
run uv run --frozen --group dev --project "$ROOT_DIR" python -m pytest -s \
|
||||
tests/test_api.py \
|
||||
tests/test_realtime_sources.py \
|
||||
-q
|
||||
)
|
||||
|
||||
printf "harness quick check passed\n"
|
||||
}
|
||||
|
||||
main "$@"
|
||||
Reference in New Issue
Block a user