aboutsummaryrefslogtreecommitdiffstats
path: root/screwdriver/test-quick-start-guide.sh
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahooinc.com>2023-11-15 13:51:14 +0100
committerArnstein Ressem <aressem@yahooinc.com>2023-11-15 13:51:14 +0100
commit5f8872a53d7627844191c68d1fb757c429fa2f43 (patch)
tree506c1dd9c186f4c124912f04a2f3d9755774bab7 /screwdriver/test-quick-start-guide.sh
parent29109450c8c2c98d969a711b8f6240bb5594c150 (diff)
Install python as it is not part of base image anymore.
Diffstat (limited to 'screwdriver/test-quick-start-guide.sh')
-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 eead39fecaa..4c3feb35a21 100755
--- a/screwdriver/test-quick-start-guide.sh
+++ b/screwdriver/test-quick-start-guide.sh
@@ -13,7 +13,7 @@ cd $TESTDIR
# Clone and setup doc tests
git clone -q --depth 1 https://github.com/vespa-engine/documentation
cd documentation
-python3.9 -m pip install -qqq -r test/requirements.txt --user
+python3 -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
@@ -22,5 +22,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
-python3.9 test/test.py -v -c test/_quick-start.yaml
+python3 test/test.py -v -c test/_quick-start.yaml