aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahooinc.com>2023-07-11 09:20:09 +0200
committerArnstein Ressem <aressem@yahooinc.com>2023-07-11 09:20:09 +0200
commit923943f8ceecf973f39ce1d327c442e255e4bc19 (patch)
tree302798df64c76d08266340ceb80e97e9f5e86bc8
parent3008439ac5f2f2dfd0c5acccc1a6b8cf202f9933 (diff)
Use python3.9 explicitly.
-rwxr-xr-xscrewdriver/test-quick-start-guide.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/screwdriver/test-quick-start-guide.sh b/screwdriver/test-quick-start-guide.sh
index f3f12c229b0..de8c815edfa 100755
--- a/screwdriver/test-quick-start-guide.sh
+++ b/screwdriver/test-quick-start-guide.sh
@@ -12,7 +12,7 @@ cd $TESTDIR
# Clone and setup doc tests
git clone -q --depth 1 https://github.com/vespa-engine/documentation
cd documentation
-python3 -m pip install -qqq -r test/requirements.txt --user
+python3.9 -m pip install -qqq -r test/requirements.txt --user
echo -e "urls:\n - en/vespa-quick-start.html" > test/_quick-start.yaml
# Get the required vespa CLI
@@ -21,5 +21,5 @@ curl -fsSL https://github.com/vespa-engine/vespa/releases/download/v${VESPA_CLI_
ln -sf /opt/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64/bin/vespa /usr/local/bin/
# Run test
-test/test.py -v -c test/_quick-start.yaml
+python3.9 test/test.py -v -c test/_quick-start.yaml