From 632608042d1fe3bb75ebfc6c5c94e31dadf3e7fa Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sun, 12 Mar 2023 11:53:10 -0400 Subject: [PATCH] ci: Force pip install for functional tests See 550f9192ae4e5c4dd486ba08738ecee322929fce. Signed-off-by: James Valleroy [sunil: Rely fully on running the install.sh script remove the pip3 rerun] Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- .ci/functional-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.ci/functional-tests.yml b/.ci/functional-tests.yml index 18651dae3..1655fd651 100644 --- a/.ci/functional-tests.yml +++ b/.ci/functional-tests.yml @@ -34,7 +34,6 @@ - adduser tester --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password && echo "tester:password" | chpasswd script: - cp -r . /home/tester/freedombox && chown -R tester:tester /home/tester/freedombox - - sudo -u tester bash -c 'pip3 install --user selenium==4.2.0 splinter==0.17.0 pytest-splinter pytest-reporter-html1' - | sudo FREEDOMBOX_URL="https://$APP_SERVER_IP" -u tester bash -c \ 'cd /home/tester/freedombox && py.test-3 -v --durations=10 --include-functional --splinter-headless --template=html1/index.html --report=functional-tests.html'