Files
zed/script/run-unit-evals
Richard Feldman 908ef03502 Split out cron and non-cron unit evals (#42472)
Release Notes:

- N/A

---------

Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de>
2025-11-11 13:45:48 -05:00

10 lines
241 B
Bash
Executable File

#!/usr/bin/env bash
set -euxo pipefail
if [ -n "${UNIT_EVAL_COMMIT:-}" ]; then
git checkout "$UNIT_EVAL_COMMIT"
fi
GPUI_TEST_TIMEOUT=1500 cargo nextest run --workspace --no-fail-fast --features unit-eval --no-capture -E 'test(::eval_)'