https://github.com/bashtage/arch
Raw File
Tip revision: 256887c5ffe45856ea07859295fa316f63cb4590 authored by Kevin Sheppard on 05 January 2024, 16:06:48 UTC
Merge pull request #708 from bashtage/fix-pip-pre
Tip revision: 256887c
azure-pipelines.yml
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops#passing-parameters

trigger:
- main

variables:
  MKL_NUM_THREADS: 1
  NUMEXPR_NUM_THREADS: 1
  OMP_NUM_THREADS: 1
  VML_NUM_THREADS: 1
  OPENBLAS_NUM_THREADS: 1
  PYTHONHASHSEED: 12345678 # Ensure tests are correctly gathered by xdist
  TEST_INSTALL: false
  MPLBACKEND: agg
  PYTEST_PATTERN: "(not slow)"
  coverage: true
  test.install: false
  pip.pre: false

jobs:
- template: ci/azure/azure_template_posix.yml
  parameters:
    name: Linux
    vmImage: ubuntu-20.04

- template: ci/azure/azure_template_windows.yml
  parameters:
    name: Windows
    vmImage: windows-2019
back to top