Skip to content

Add Cron dependency for cron-style task scheduling #873

Add Cron dependency for cron-style task scheduling

Add Cron dependency for cron-style task scheduling #873

Workflow file for this run

name: Docket CI
on:
push:
branches: [main]
pull_request:
workflow_call:
permissions:
contents: read
jobs:
test:
name: Test Python ${{ matrix.python-version }}, ${{ matrix.backend.name }}
runs-on: ubuntu-latest
timeout-minutes: 4
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
backend:
- name: "Memory (in-memory backend)"
redis-version: "memory"
redis-py-version: ">=5"
- name: "Redis 6.2, redis-py <5"
redis-version: "6.2"
redis-py-version: ">=5,<6"
- name: "Redis 7.4, redis-py >=5"
redis-version: "7.4"
redis-py-version: ">=5"
- name: "Redis 8.0, redis-py >=5"
redis-version: "8.0"
redis-py-version: ">=5"
- name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
- name: "Valkey 8.0, redis-py >=5"
redis-version: "valkey-8.0"
redis-py-version: ">=5"
include:
- python-version: "3.10"
cov-threshold: 100
pytest-args: ""
# Python 3.11 coverage reporting is unstable, so use 98% threshold
- python-version: "3.11"
cov-threshold: 98
pytest-args: ""
- python-version: "3.12"
cov-threshold: 100
pytest-args: ""
- python-version: "3.13"
cov-threshold: 100
pytest-args: ""
- python-version: "3.14"
cov-threshold: 100
pytest-args: ""
# Memory backend: CLI tests are skipped via pytest skip markers because
# CLI rejects memory:// URLs. Use separate coverage config to exclude CLI.
# Coverage threshold is lower due to pytest-xdist coverage data combination issues.
- backend:
name: "Memory (in-memory backend)"
redis-version: "memory"
redis-py-version: ">=5"
cov-threshold: 95
pytest-args: "--cov-config=.coveragerc-memory"
# Debug hanging tests in 3.12 cluster mode
- python-version: "3.12"
backend:
name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
pytest-args: "-v -s -W ignore::ResourceWarning"
# Cluster mode emits ResourceWarning about unclosed sockets during
# test teardown. The warnings appear related to redis-py's cluster
# pub/sub connection management. Ignoring until upstream fixes land.
- python-version: "3.10"
backend:
name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
pytest-args: "-W ignore::ResourceWarning"
- python-version: "3.11"
backend:
name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
pytest-args: "-W ignore::ResourceWarning"
- python-version: "3.13"
backend:
name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
pytest-args: "-W ignore::ResourceWarning"
- python-version: "3.14"
backend:
name: "Redis 8.0 Cluster"
redis-version: "8.0-cluster"
redis-py-version: ">=5"
pytest-args: "-W ignore::ResourceWarning"
# ACL variants only run on latest Python to save CI time
- python-version: "3.14"
backend:
name: "Redis 8.0 with ACL"
redis-version: "8.0-acl"
redis-py-version: ">=5"
cov-threshold: 100
pytest-args: ""
- python-version: "3.14"
backend:
name: "Valkey 8.0 with ACL"
redis-version: "valkey-8.0-acl"
redis-py-version: ">=5"
cov-threshold: 100
pytest-args: ""
steps:
- uses: actions/checkout@v6
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Install dependencies
run: uv sync --upgrade-package 'redis${{ matrix.backend.redis-py-version }}'
- name: Run tests
env:
REDIS_VERSION: ${{ matrix.backend.redis-version }}
run: uv run pytest --cov-branch --cov-fail-under=${{ matrix.cov-threshold }} --cov-report=xml --cov-report=term-missing:skip-covered ${{ matrix.pytest-args }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: python-${{ matrix.python-version }}
prek:
name: Prek checks
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Install dependencies
run: uv sync
- name: Run prek
uses: j178/prek-action@v1