Skip to content

Commit 188cbdf

Browse files
committed
tests
1 parent 13be391 commit 188cbdf

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

azure-pipelines-templates/run-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
# Otherwise we may hit the GitHub anonymous download limit.
5353
- task: UsePythonVersion@0
5454
inputs:
55-
versionSpec: ${{ parameters.python_version }}
55+
versionSpec: "3.7"
56+
allowUnstable: true
5657

5758
# Install all dependencies needed for running the tests. This command is good
5859
# for all OSes

azure-pipelines.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,22 @@ parameters:
6262
- name: python_versions
6363
type: object
6464
default:
65-
- '3.9'
66-
- '3.10'
67-
- '3.11'
65+
- '3.7'
66+
# - '3.9'
67+
# - '3.10'
68+
# - '3.11'
6869

6970
- name: os_versions
7071
type: object
7172
default:
7273
- name: Linux
7374
vm_image: ubuntu-latest
7475

75-
- name: macOS
76-
vm_image: macOS-latest
76+
# - name: macOS
77+
# vm_image: macOS-latest
7778

78-
- name: Windows
79-
vm_image: windows-latest
79+
# - name: Windows
80+
# vm_image: windows-latest
8081

8182
# This here is the list of jobs we want to run for our build.
8283
# Jobs run in parallel.

0 commit comments

Comments
 (0)