Skip to content

Commit 2f94033

Browse files
committed
hm
1 parent 8dd545a commit 2f94033

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

eng/templates/official/jobs/base-unit-tests.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
parameters:
2-
- name: python_versions
2+
- name: python_versions_list
33
type: object
4-
default:
5-
# 3.8 is EOL, don't run tests for it
6-
- python39: '3.9'
7-
- python310: '3.10'
8-
- python311: '3.11'
9-
- python312: '3.12'
10-
- python313: '3.13'
4+
default: ['python39', 'python310', 'python311', 'python312', 'python313']
5+
- name: python_version
6+
type: object
7+
default: ['3.9', '3.10', '3.11', '3.12', '3.13']
118

129
jobs:
1310
- job: "BaseTests"
1411
displayName: "Base Extension Tests"
1512
dependsOn: []
1613
strategy:
17-
matrix: ${{ parameters.python_versions }}
14+
matrix:
15+
${{ parameters.python_versions_list }}:
16+
PYTHON_VERSION: ${{ parameters.python_version }}
1817
condition: always()
1918
steps:
2019
- task: UsePythonVersion@0

0 commit comments

Comments
 (0)