aboutsummaryrefslogtreecommitdiffstats
path: root/coin_test_instructions.py
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2020-05-05 09:04:13 +0300
committerSimo Fält <simo.falt@qt.io>2020-09-24 11:01:51 +0300
commit9eee97b5e66c9771e428539eb340b2c2a3756968 (patch)
tree4f5c01a16768675f8adbeb94691f55293cb528f7 /coin_test_instructions.py
parentcad869b619fdc0969216e6e9b63fd1afb5edb7db (diff)
Test with additional python version
Change-Id: I17726f6bd02d36a7acc3ed99ca11796b780b837d Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'coin_test_instructions.py')
-rw-r--r--coin_test_instructions.py7
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()