* Properly close files used for testing * Add support for GraalPy * Help GraalPy discover build tools on Windows * Expect manylinux-interpreters ensure graalpy* warning in pip * Workaround GraalPy bugs on Windows * Workaround oracle/graalpython#491 also when uv is not available * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update azure-pipelines.yml * Update azure-pipelines.yml * refacotor: use pathlib.write_text Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Include GraalPy in docker_warmup and remove workaround for installing it late --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
pr:
|
|
paths:
|
|
exclude:
|
|
- docs/*
|
|
- .pre-commit-config.yaml
|
|
|
|
jobs:
|
|
- job: linux_311
|
|
timeoutInMinutes: 180
|
|
pool: {vmImage: 'Ubuntu-22.04'}
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.11'
|
|
- bash: |
|
|
docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
|
|
python -m pip install dependency-groups
|
|
python -m dependency_groups test | xargs python -m pip install -e.
|
|
python ./bin/run_tests.py
|
|
|
|
- job: macos_311
|
|
pool: {vmImage: 'macOS-13'}
|
|
timeoutInMinutes: 120
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.11'
|
|
- bash: |
|
|
python -m pip install dependency-groups
|
|
python -m dependency_groups test | xargs python -m pip install -e.
|
|
python ./bin/run_tests.py
|
|
|
|
- job: windows_311
|
|
pool: {vmImage: 'windows-2019'}
|
|
timeoutInMinutes: 180
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.11'
|
|
- bash: |
|
|
python -m pip install dependency-groups
|
|
python -m dependency_groups test | xargs python -m pip install -e.
|
|
python ./bin/run_tests.py
|