Skip to content

Commit 861d795

Browse files
authored
PYTHON-3180 Use server v3 toolchain in perf tests (#905)
1 parent da81c69 commit 861d795

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.evergreen/run-perf-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd ..
1313
export TEST_PATH="${PROJECT_DIRECTORY}/driver-performance-test-data"
1414
export OUTPUT_FILE="${PROJECT_DIRECTORY}/results.json"
1515

16-
MTCBIN=/opt/mongodbtoolchain/v2/bin
16+
MTCBIN=/opt/mongodbtoolchain/v3/bin
1717
VIRTUALENV="$MTCBIN/virtualenv -p $MTCBIN/python3"
1818

1919
$VIRTUALENV pyperftest

.evergreen/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ if [ -z "$PYTHON_BINARY" ]; then
6969
# system python3 doesn't exist or exists but is older than 3.6.
7070
if is_python_36 "$(command -v python3)"; then
7171
PYTHON=$(command -v python3)
72-
elif is_python_36 "$(command -v /opt/mongodbtoolchain/v2/bin/python3)"; then
73-
PYTHON=$(command -v /opt/mongodbtoolchain/v2/bin/python3)
72+
elif is_python_36 "$(command -v /opt/mongodbtoolchain/v3/bin/python3)"; then
73+
PYTHON=$(command -v /opt/mongodbtoolchain/v3/bin/python3)
7474
else
7575
echo "Cannot test without python3.6+ installed!"
7676
fi

0 commit comments

Comments
 (0)