aboutsummaryrefslogtreecommitdiffstats
path: root/coin_test_instructions.py
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2019-06-18 13:43:40 +0300
committerSimo Fält <simo.falt@qt.io>2019-06-18 13:43:40 +0300
commit28b1e4a8ee80750454ae9a5e3e4394ebd6d20f58 (patch)
tree25607a1d645ad243814043e070f6a204f4ce56a0 /coin_test_instructions.py
parentee226dff8334cea7c4970051fcd3ade392cd85b0 (diff)
Unpin wheel package
The fix we were waiting for has landed to released wheel package. Change-Id: I1d83be7cd9662ca2e076e9c03c03c38f1b0c9ecb Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'coin_test_instructions.py')
-rw-r--r--coin_test_instructions.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index acb27875d..c560f2175 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -39,7 +39,6 @@
from build_scripts.options import has_option
from build_scripts.options import option_value
from build_scripts.utils import install_pip_dependencies
-from build_scripts.utils import install_pip_wheel_package
from build_scripts.utils import get_qtci_virtualEnv
from build_scripts.utils import run_instruction
from build_scripts.utils import rmtree
@@ -67,8 +66,7 @@ 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"])
- install_pip_wheel_package(env_pip)
+ install_pip_dependencies(env_pip, ["pip", "numpy", "PyOpenGL", "setuptools", "six", "pyinstaller", "wheel"])
cmd = [env_python, "testrunner.py", "test",
"--blacklist", "build_history/blacklist.txt",
"--buildno=" + buildnro]