aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-07-16 12:31:04 +0200
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-07-16 12:58:37 +0200
commit4905e2e2feacd346c2f781aa817b3d13ace3411d (patch)
tree5a255b7ae22ca7bb77c30c0941ead44bae20eadf
parentf1796628ec2d81c656876876148b2bf5db47c472 (diff)
Use PyInstaller version 3.4
The newest version, 3.5, seems to have an issue related to out test, which sadly is making the test to fail. Until this is not figured out, let's use 3.4 to avoid other patches to be merged. Change-Id: I71e8aa616dff37b6c5b2552711140c0c0bf10d21 Reviewed-by: Christian Tismer <tismer@stackless.com>
-rw-r--r--coin_test_instructions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index acb27875d..aeedd03e7 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -67,7 +67,8 @@ def call_testrunner(python_ver, buildnro):
_pExe, _env, env_pip, env_python = get_qtci_virtualEnv(python_ver, CI_HOST_OS, CI_HOST_ARCH, CI_TARGET_ARCH)
rmtree(_env, True)
run_instruction(["virtualenv", "-p", _pExe, _env], "Failed to create virtualenv")
- install_pip_dependencies(env_pip, ["pip", "numpy", "PyOpenGL", "setuptools", "six", "pyinstaller"])
+ # Keeping PyInstaller 3.4, because 3.5 seems to have broken our test
+ install_pip_dependencies(env_pip, ["pip", "numpy", "PyOpenGL", "setuptools", "six", "pyinstaller==3.4"])
install_pip_wheel_package(env_pip)
cmd = [env_python, "testrunner.py", "test",
"--blacklist", "build_history/blacklist.txt",