aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2021-04-28 14:31:22 +0300
committerSimo Fält <simo.falt@qt.io>2021-04-29 16:56:58 +0300
commit88fff87519e741a3a999b8c1545834d116859faa (patch)
tree343832c68dd0f771c5ae67790dadf231081c8325
parent48524ca57c8d3927545f725bc1bf24df5b112afa (diff)
Enable running test with non packaging CI configs
Change-Id: I269956d5daf5807098a8c9b547ab8631956fa921 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
-rw-r--r--coin_test_instructions.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index 4d06e41dc..95d79cd7d 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -111,13 +111,12 @@ def run_test_instructions():
os.chdir(CI_ENV_AGENT_DIR)
testRun = 0
- if CI_RELEASE_CONF:
- # In win machines, there are additional python versions to test with
- if CI_HOST_OS == "Windows":
- call_testrunner("3.6.1", str(testRun))
- call_testrunner("3.8.1", str(testRun))
- else:
- call_testrunner("3", str(testRun))
+ # In win machines, there are additional python versions to test with
+ if CI_HOST_OS == "Windows":
+ call_testrunner("3.6.1", str(testRun))
+ call_testrunner("3.8.1", str(testRun))
+ else:
+ call_testrunner("3", str(testRun))
if __name__ == "__main__":
run_test_instructions()