mirror of
https://github.com/zed-industries/zed.git
synced 2026-04-18 07:47:53 +00:00
eadc2301e0
Release Notes: - N/A
10 lines
281 B
Bash
Executable File
10 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [ -n "${UNIT_EVAL_COMMIT:-}" ]; then
|
|
git fetch origin "$UNIT_EVAL_COMMIT" && 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_)'
|