Run windows tests in multiple shells #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
env: | |
LANG: en_US.utf-8 | |
LC_ALL: en_US.utf-8 | |
PYTHONIOENCODING: UTF-8 | |
PYTHON_VERSIONS: "" | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
- name: Install dependencies | |
run: make setup | |
- name: Check if the documentation builds correctly | |
run: make check-docs | |
- name: Check the code quality | |
run: make check-quality | |
- name: Check if the code is correctly typed | |
run: make check-types | |
- name: Check for breaking changes in the API | |
run: make check-api | |
tests: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- "3.13" | |
resolution: | |
- highest | |
- lowest-direct | |
exclude: | |
- os: macos-latest | |
resolution: lowest-direct | |
- os: windows-latest | |
resolution: lowest-direct | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.python-version == '3.14' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
cache-suffix: py${{ matrix.python-version }} | |
- name: Install dependencies | |
env: | |
UV_RESOLUTION: ${{ matrix.resolution }} | |
run: make setup | |
- name: Run the test suite | |
run: make test | |
tests-pwsh: | |
defaults: | |
run: | |
shell: pwsh | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
python-version: | |
- "3.13" | |
resolution: | |
- highest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
cache-suffix: py${{ matrix.python-version }} | |
- name: Install dependencies | |
env: | |
UV_RESOLUTION: ${{ matrix.resolution }} | |
run: make setup | |
- name: Run the test suite | |
run: uv run pytest | |
- name: Passing smoke test capture both | |
if: '!cancelled()' | |
run: uv run tests/smoketest.py passing both | |
- name: Failing smoke test capture both | |
if: '!cancelled()' | |
run: uv run tests/smoketest.py failing both | |
- name: Passing smoke test capture none | |
if: '!cancelled()' | |
run: uv run tests/smoketest.py passing none | |
- name: Failing smoke test capture none | |
if: '!cancelled()' | |
run: uv run tests/smoketest.py failing none | |
- name: Passing smoke test capture both with legacy stdio | |
if: '!cancelled()' | |
env: | |
PYTHONLEGACYWINDOWSSTDIO: 1 | |
run: uv run tests/smoketest.py passing both | |
- name: Failing smoke test capture both with legacy stdio | |
if: '!cancelled()' | |
env: | |
PYTHONLEGACYWINDOWSSTDIO: 1 | |
run: uv run tests/smoketest.py failing both | |
- name: Passing smoke test capture none with legacy stdio | |
if: '!cancelled()' | |
env: | |
PYTHONLEGACYWINDOWSSTDIO: 1 | |
run: uv run tests/smoketest.py passing none | |
- name: Failing smoke test capture none with legacy stdio | |
if: '!cancelled()' | |
env: | |
PYTHONLEGACYWINDOWSSTDIO: 1 | |
run: uv run tests/smoketest.py failing none |