aboutsummaryrefslogtreecommitdiffstats
path: root/coin_test_instructions.py
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2018-06-08 13:08:55 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2018-06-08 13:08:55 +0200
commit12756772e3971f9b832435b1221aef4e32d6970a (patch)
tree4c7110f9d3f470d3f7970a4efd22a99c4878bf60 /coin_test_instructions.py
parentf2ebeb1546702f26bde8c296794852871d3aa25a (diff)
parentff8b698d3547b39ba20c97a4c68881a4a789b211 (diff)
Merge branch '5.9' into 5.11
Diffstat (limited to 'coin_test_instructions.py')
-rw-r--r--coin_test_instructions.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index e90316784..bd65b5b7e 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -77,10 +77,14 @@ def run_test_instructions():
exit()
os.chdir(CI_ENV_AGENT_DIR)
- call_testrunner("", "0")
+ testRun = 0
+ # We didn't build for Python 2 in win
+ if CI_HOST_OS != "Windows":
+ call_testrunner("", str(testRun))
+ testRun =+ 1
# We know that second build was with python3
if CI_RELEASE_CONF and CI_HOST_OS_VER not in ["RHEL_6_6"]:
- call_testrunner("3", "1")
+ call_testrunner("3", str(testRun))
if __name__ == "__main__":
run_test_instructions()