Skip to content

Commit 89852ba

Browse files
authored
PYTHON-5001 Fix import time check (#2027)
1 parent ff2f959 commit 89852ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.evergreen/run-import-time-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ function get_import_time() {
2525
}
2626

2727
get_import_time $HEAD_SHA
28-
git stash
28+
git stash || true
2929
git checkout $BASE_SHA
3030
get_import_time $BASE_SHA
3131
git checkout $HEAD_SHA
32-
git stash apply
32+
git stash apply || true
3333
python tools/compare_import_time.py $HEAD_SHA $BASE_SHA

0 commit comments

Comments
 (0)