aboutsummaryrefslogtreecommitdiffstats
path: root/coin_build_instructions.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-11-17 13:06:37 +0100
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-11-25 21:50:17 +0100
commit69d511949fdf1da8309c9adab8b00ed6f80053a0 (patch)
tree313e4f8578fcd4797a8b411c31aedaf35f3ee9a7 /coin_build_instructions.py
parent2914408d9017d192f254b4c7b2d298bb7b6e885e (diff)
Improve code style with flake8
- We agreed on 100 columns time ago, so I move around a few things, - Removing unused modules, - Fix white-spaces tabs without being multiple of 4, - Encourage the use of os.path.join when joining paths, - Using .format() for string formatting, - Remove white-spaces from default arguments, - Adjusting white-spaces before inline comments, - Adding extra newlines when expected, - Adjust spaces for lines under-indented for visual indent, - Remove white-spaces from parenthesis, and adding them for arithmetic operators. Change-Id: I9cb28cefd114d63580b584a063c452f90d3ca885 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'coin_build_instructions.py')
-rw-r--r--coin_build_instructions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index dbdbdbd0d..cd55b9bcd 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -101,6 +101,9 @@ def is_snapshot_build():
return False
def call_setup(python_ver, phase):
+ print("call_setup")
+ print("python_ver", python_ver)
+ print("phase", phase)
_pExe, _env, env_pip, env_python = get_qtci_virtualEnv(python_ver, CI_HOST_OS, CI_HOST_ARCH, CI_TARGET_ARCH)
if phase in ["BUILD"]: