diff options
| author | Alexandru Croitor <alexandru.croitor@qt.io> | 2018-06-08 11:09:32 +0000 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2018-06-08 12:05:31 +0000 |
| commit | 9bf80d1b4b2aa9930bfee41b874ede0e204e3324 (patch) | |
| tree | caf112a361f6923c8a29c64eb616b803efae748f /coin_test_instructions.py | |
| parent | bda686d4cb32e8295b483bb14d205cbc56a1a65a (diff) | |
| parent | 12756772e3971f9b832435b1221aef4e32d6970a (diff) | |
Merge "Merge branch '5.9' into 5.11" into refs/staging/5.11
Diffstat (limited to 'coin_test_instructions.py')
| -rw-r--r-- | coin_test_instructions.py | 8 |
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() |
