From 656098a45179410f286664d1457766aa33695ebc Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Thu, 26 Aug 2021 21:09:23 +0800 Subject: [PATCH] Add python3-xvfbwrapper for python 3 - workaround for Qt tests --- travis2bash.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/travis2bash.sh b/travis2bash.sh index 7e75110..25b70c5 100755 --- a/travis2bash.sh +++ b/travis2bash.sh @@ -89,6 +89,7 @@ function pyqt5() { # install pyqt5 on python > 3 if [[ ! "$TRAVIS_PYTHON" == "2.7" ]]; then sudo apt -y install qtbase5-dev qt5-default + sudo apt -y install python3-xvfbwrapper fi }