Temporarily disable CI tests

This commit is contained in:
Adriane Boyd 2022-04-06 15:43:20 +02:00
parent b91255a454
commit 1dee505920
1 changed files with 58 additions and 58 deletions

View File

@ -35,64 +35,64 @@ jobs:
python -m flake8 spacy --count --select=E901,E999,F821,F822,F823 --show-source --statistics python -m flake8 spacy --count --select=E901,E999,F821,F822,F823 --show-source --statistics
displayName: "flake8" displayName: "flake8"
- job: "Test" # - job: "Test"
dependsOn: "Validate" # dependsOn: "Validate"
strategy: # strategy:
matrix: # matrix:
# We're only running one platform per Python version to speed up builds # # We're only running one platform per Python version to speed up builds
Python36Linux: # Python36Linux:
imageName: "ubuntu-latest" # imageName: "ubuntu-latest"
python.version: "3.6" # python.version: "3.6"
# Python36Windows: # # Python36Windows:
# imageName: "windows-latest" # # imageName: "windows-latest"
# python.version: "3.6" # # python.version: "3.6"
# Python36Mac: # # Python36Mac:
# imageName: "macos-latest" # # imageName: "macos-latest"
# python.version: "3.6" # # python.version: "3.6"
# Python37Linux: # # Python37Linux:
# imageName: "ubuntu-latest" # # imageName: "ubuntu-latest"
# python.version: "3.7" # # python.version: "3.7"
Python37Windows: # Python37Windows:
imageName: "windows-latest" # imageName: "windows-latest"
python.version: "3.7" # python.version: "3.7"
# Python37Mac: # # Python37Mac:
# imageName: "macos-latest" # # imageName: "macos-latest"
# python.version: "3.7" # # python.version: "3.7"
# Python38Linux: # # Python38Linux:
# imageName: "ubuntu-latest" # # imageName: "ubuntu-latest"
# python.version: "3.8" # # python.version: "3.8"
# Python38Windows: # # Python38Windows:
# imageName: "windows-latest" # # imageName: "windows-latest"
# python.version: "3.8" # # python.version: "3.8"
Python38Mac: # Python38Mac:
imageName: "macos-latest" # imageName: "macos-latest"
python.version: "3.8" # python.version: "3.8"
Python39Linux: # Python39Linux:
imageName: "ubuntu-latest" # imageName: "ubuntu-latest"
python.version: "3.9" # python.version: "3.9"
# Python39Windows: # # Python39Windows:
# imageName: "windows-latest" # # imageName: "windows-latest"
# python.version: "3.9" # # python.version: "3.9"
# Python39Mac: # # Python39Mac:
# imageName: "macos-latest" # # imageName: "macos-latest"
# python.version: "3.9" # # python.version: "3.9"
Python310Linux: # Python310Linux:
imageName: "ubuntu-latest" # imageName: "ubuntu-latest"
python.version: "3.10" # python.version: "3.10"
Python310Windows: # Python310Windows:
imageName: "windows-latest" # imageName: "windows-latest"
python.version: "3.10" # python.version: "3.10"
Python310Mac: # Python310Mac:
imageName: "macos-latest" # imageName: "macos-latest"
python.version: "3.10" # python.version: "3.10"
maxParallel: 4 # maxParallel: 4
pool: # pool:
vmImage: $(imageName) # vmImage: $(imageName)
steps: # steps:
- template: .github/azure-steps.yml # - template: .github/azure-steps.yml
parameters: # parameters:
python_version: '$(python.version)' # python_version: '$(python.version)'
architecture: 'x64' # architecture: 'x64'
# - job: "TestGPU" # - job: "TestGPU"
# dependsOn: "Validate" # dependsOn: "Validate"