Skip to content

TST: pin uv to 0.4.9 #936

TST: pin uv to 0.4.9

TST: pin uv to 0.4.9 #936

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
schedule:
# run this every Wednesday at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:
concurrency:
# auto-cancel any in-progress job *on the same branch*
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- name: Check build
run: |
uvx check-manifest
uv build
unit-tests:
name: ${{matrix.os}} x py${{matrix.python-version}} ${{matrix.marker}}
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- '3.11'
- '3.12'
marker: [''] # needed to avoid collision with PY_LIB job
install-args: [--no-build]
include:
- os: macos-latest
python-version: '3.12'
install-args: --no-build
- os: windows-latest
python-version: '3.12'
install-args: --no-build
# test with minimal requirements
- marker: minimal
os: ubuntu-20.04
python-version: '3.11'
install-args: --no-build --resolution=lowest-direct
# test GPGI_PY_LIB
- marker: PY_LIB
os: ubuntu-latest
python-version: '3.12'
install-args: --no-build
# add coverage for Python dev
- os: ubuntu-latest
python-version: 3.13-dev
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install ${{ matrix.python-version }}
if: matrix.python-version != '3.13-dev'
- run: uv python install 3.13
if: matrix.python-version == '3.13-dev'
- run: echo $(pwd) # TODO: clean up (maybe use it on other archs first)
if: matrix.os == 'ubuntu-latest'
- name: Test
env:
GPGI_PY_LIB: ${{ matrix.marker == 'PY_LIB' }}
shell: bash # for windows-compat (using `\` as a line continuation)
# pinning [email protected] inline so it's up to date
# even with UV_RESOLUTION=lowest-direct
run: |
uvx --with-requirements=requirements/tests.txt ${{ matrix.install-args }} \
[email protected] run --parallel-mode -m pytest --color=yes -ra
- name: Upload coverage data
# only using reports from ubuntu because
# combining reports from multiple platforms is tricky (or impossible ?)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: gpgi_coverage_data-${{matrix.os}}-${{matrix.python-version}}-${{matrix.marker}}
path: .coverage.*
if-no-files-found: ignore
include-hidden-files: true
image-tests:
name: Image tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- name: Run Image Tests
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-summary=html \
--mpl-results-path=gpgi_pytest_mpl_results \
--mpl-baseline-path=tests/pytest_mpl_baseline
- name: Generate new image baseline
if: failure()
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-path=gpgi_pytest_mpl_new_baseline \
--last-failed
# always attempt to upload artifacts, even
# (and especially) in case of failure.
- name: Upload pytest-mpl report
if: always()
uses: actions/upload-artifact@v4
with:
name: gpgi_pytest_mpl_results
path: gpgi_pytest_mpl_results/*
- name: Upload pytest-mpl baseline
if: always()
uses: actions/upload-artifact@v4
with:
name: gpgi_pytest_mpl_new_baseline
path: gpgi_pytest_mpl_new_baseline/*
if-no-files-found: ignore
concurrency-tests:
name: Thread concurrency tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- name: Run Concurrency Tests
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --count 500 tests/test_concurrent.py
coverage:
name: Combine & check coverage.
runs-on: ubuntu-latest
needs: unit-tests
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- uses: actions/download-artifact@v4
with:
pattern: gpgi_coverage_data-*
merge-multiple: true
- name: Check coverage
run: |
uv python install 3.12
uv tool install coverage
coverage combine
coverage html --skip-covered --skip-empty
coverage report --fail-under=100 # >> $GITHUB_STEP_SUMMARY
- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v4
with:
name: gpgi_coverage_report
path: htmlcov
if: ${{ failure() }}
typecheck:
strategy:
matrix:
python-version:
- '3.11'
- '3.12'
runs-on: ubuntu-latest
name: type check
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install ${{ matrix.python-version }}
- name: Typecheck
run: |
uvx --with-requirements=requirements/typecheck.txt \
mypy src/gpgi
future:
name: 'py${{ matrix.python-version }} (free-threading: ${{ matrix.free-threading }})'
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version:
- 3.13-dev
free-threading:
- false
- true
steps:
- uses: actions/checkout@v4
- if: ${{ !matrix.free-threading }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- if: ${{ matrix.free-threading }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python-version }}
nogil: true
- name: Build
# not using uv here because it doesn't currently (0.2.33) detect python3.13t as
# the active interpreter, and may instead see 3.10, which is not supported in gpgi
run: |
python -m pip install -U pip
python -m pip install --pre setuptools wheel
python -m pip install --pre numpy Cython \
--only-binary ':all:' \
--extra-index-url \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install . --no-build-isolation --no-deps
- name: Install minimal test env
run: python -m pip install --pre pytest pytest-repeat
- run: python -m pip list
- name: Tests
run: |
pytest --color=yes
pytest --color=yes --count 500 tests/test_concurrent.py
create-issue:
if: ${{ failure() && github.event_name == 'schedule' }}
needs: [future]
permissions:
issues: write
runs-on: ubuntu-latest
name: Create issue on failure
steps:
- name: Create issue on failure
uses: imjohnbo/issue-bot@v3
with:
title: 'TST: Upcoming dependency test failures'
body: |
The weekly build with future Python, Cython and numpy
has failed. Check the logs for any updates that need to be
made in gpgi.
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
pinned: false
close-previous: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}