Skip to content

Commit

Permalink
PYTHON-5001 Fix import time check (#2027)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Dec 4, 2024
1 parent ff2f959 commit 89852ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .evergreen/run-import-time-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function get_import_time() {
}

get_import_time $HEAD_SHA
git stash
git stash || true
git checkout $BASE_SHA
get_import_time $BASE_SHA
git checkout $HEAD_SHA
git stash apply
git stash apply || true
python tools/compare_import_time.py $HEAD_SHA $BASE_SHA

0 comments on commit 89852ba

Please sign in to comment.