File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ jobs:
104104- job : # # "Run_tests" ## I don't have to ...
105105 strategy :
106106 matrix :
107- ${{ each os_version in parameters.os_versions }} :
108- ${{ each python_version in parameters.python_versions }} :
109- Run_Tests_ ${{ os_version.name }}_Python_ ${{ python_version }} :
107+ ${{ each python_version in parameters.python_versions }} :
108+ ${{ each os_version in parameters.os_versions }} :
109+ " Run Tests ${{ os_version.name }} Python ${{ python_version }}" :
110110 imageName : ' ${{ os_version.vm_image }}'
111111 python.version : ' ${{ python_version }}'
112112 # linux_py310:
@@ -128,6 +128,7 @@ jobs:
128128 # imageName: 'windows-latest'
129129 # python.version: '3.11'
130130 maxParallel : 3
131+ # limiting the parallel jobs to 3 to avoid race condition issues between tests..... :(
131132
132133 # displayName: "Run tests_$( imageName )_$( python.version )"
133134 pool :
You can’t perform that action at this time.
0 commit comments