diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-09-29 07:35:34 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-09-29 07:35:34 +0200 |
| commit | 3bbcb7b0e6e0342569aa155d695bca46a7459eb0 (patch) | |
| tree | e3675d77f409db4ecbc4f92cdfdbfa62763cb2d4 /coin_test_instructions.py | |
| parent | 9881b68c4c7bc1715cd266c41c63a3a918d83b07 (diff) | |
| parent | 50247e7d4a67e892a85dff7472f889bac97c91c7 (diff) | |
Merge remote-tracking branch 'origin/5.15' into dev
Change-Id: Ie6da3938b82f5ebe96dd12bd65a3ccc4180d2fba
Diffstat (limited to 'coin_test_instructions.py')
| -rw-r--r-- | coin_test_instructions.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py index 16ba601f7..30d808e25 100644 --- a/coin_test_instructions.py +++ b/coin_test_instructions.py @@ -110,7 +110,12 @@ def run_test_instructions(): testRun =+ 1 # We know that second build was with python3 if CI_RELEASE_CONF: - 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() |
