From 35c9e591c98b3739b16ec9126cecbc87f8317a34 Mon Sep 17 00:00:00 2001 From: LoveIsGrief Date: Tue, 2 Apr 2019 20:02:57 +0200 Subject: [PATCH] functional tests: Fix wheel errors when provisioning VM > error: invalid command 'bdist_wheel' Kept popping up in the logs. It seems like `wheel` isn't in the deps of the installed python packages. Therefore we now install it ourselves. freedombox/plinth#1521 - Provision VM to run function functional tests Reviewed-by: James Valleroy --- functional_tests/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/functional_tests/install.sh b/functional_tests/install.sh index 1596e3b28..e8496953b 100755 --- a/functional_tests/install.sh +++ b/functional_tests/install.sh @@ -7,6 +7,7 @@ sudo apt-get install -yq --no-install-recommends \ python3-pytest \ python3-pip firefox \ xvfb +pip3 install wheel pip3 install splinter pytest-splinter pytest-bdd pytest-xvfb echo "Installing geckodriver"