mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Fetch the unit eval commit before checking it out (#42636)
Release Notes: - N/A
This commit is contained in:
parent
b500470391
commit
eadc2301e0
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
if [ -n "${UNIT_EVAL_COMMIT:-}" ]; then
|
if [ -n "${UNIT_EVAL_COMMIT:-}" ]; then
|
||||||
git checkout "$UNIT_EVAL_COMMIT"
|
git fetch origin "$UNIT_EVAL_COMMIT" && git checkout "$UNIT_EVAL_COMMIT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
GPUI_TEST_TIMEOUT=1500 cargo nextest run --workspace --no-fail-fast --features unit-eval --no-capture -E 'test(::eval_)'
|
GPUI_TEST_TIMEOUT=1500 cargo nextest run --workspace --no-fail-fast --features unit-eval --no-capture -E 'test(::eval_)'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue