aboutsummaryrefslogtreecommitdiffstats
path: root/coin_test_instructions.py
diff options
context:
space:
mode:
Diffstat (limited to 'coin_test_instructions.py')
-rw-r--r--coin_test_instructions.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index d52521615..da53b1c12 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -186,7 +186,16 @@ def run_test_instructions():
p_ver = "pypy"
call_testrunner(p_ver, str(testRun), pypy)
else:
- call_testrunner("3", str(testRun))
+ # In win machines, there are additional python versions to test with
+ if CI_HOST_OS == "Windows":
+ if os.environ.get('HOST_OSVERSION_COIN') == 'windows_10_21h2':
+ call_testrunner("3.10.0", str(testRun))
+ else:
+ call_testrunner("3.7.9", str(testRun))
+ elif CI_HOST_OS == "Linux":
+ call_testrunner("3.8", str(testRun))
+ else:
+ call_testrunner("3", str(testRun))
if __name__ == "__main__":