Parametrize test_seek_mode functions #7384
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: Test | |
on: | |
push: | |
branches: | |
- "**" | |
paths-ignore: | |
- ".github/workflows/docs.yml" | |
- ".github/workflows/wheels*" | |
- ".gitmodules" | |
- "docs/**" | |
- "wheels/**" | |
pull_request: | |
paths-ignore: | |
- ".github/workflows/docs.yml" | |
- ".github/workflows/wheels*" | |
- ".gitmodules" | |
- "docs/**" | |
- "wheels/**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
COVERAGE_CORE: sysmon | |
FORCE_COLOR: 1 | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
"macos-14", | |
"ubuntu-latest", | |
] | |
python-version: [ | |
"pypy3.10", | |
"pypy3.9", | |
"3.13", | |
"3.12", | |
"3.11", | |
"3.10", | |
"3.9", | |
"3.8", | |
] | |
include: | |
- python-version: "3.11" | |
PYTHONOPTIMIZE: 1 | |
REVERSE: "--reverse" | |
- python-version: "3.10" | |
PYTHONOPTIMIZE: 2 | |
# M1 only available for 3.10+ | |
- os: "macos-latest" | |
python-version: "3.9" | |
- os: "macos-latest" | |
python-version: "3.8" | |
exclude: | |
- os: "macos-14" | |
python-version: "3.9" | |
- os: "macos-14" | |
python-version: "3.8" | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
cache: pip | |
cache-dependency-path: | | |
".ci/*.sh" | |
"pyproject.toml" | |
- name: Build system information | |
run: python3 .github/workflows/system-info.py | |
- name: Cache libimagequant | |
if: startsWith(matrix.os, 'ubuntu') | |
uses: actions/cache@v4 | |
id: cache-libimagequant | |
with: | |
path: ~/cache-libimagequant | |
key: ${{ runner.os }}-libimagequant-${{ hashFiles('depends/install_imagequant.sh') }} | |
- name: Install Linux dependencies | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
.ci/install.sh | |
env: | |
GHA_PYTHON_VERSION: ${{ matrix.python-version }} | |
GHA_LIBIMAGEQUANT_CACHE_HIT: ${{ steps.cache-libimagequant.outputs.cache-hit }} | |
- name: Install macOS dependencies | |
if: startsWith(matrix.os, 'macOS') | |
run: | | |
.github/workflows/macos-install.sh | |
env: | |
GHA_PYTHON_VERSION: ${{ matrix.python-version }} | |
- name: Register gcc problem matcher | |
if: "matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'" | |
run: echo "::add-matcher::.github/problem-matchers/gcc.json" | |
- name: Build | |
run: | | |
.ci/build.sh | |
- name: Test | |
run: | | |
if [ $REVERSE ]; then | |
python3 -m pip install pytest-reverse | |
fi | |
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then | |
xvfb-run -s '-screen 0 1024x768x24' sway& | |
export WAYLAND_DISPLAY=wayland-1 | |
.ci/test.sh | |
else | |
.ci/test.sh | |
fi | |
env: | |
PYTHONOPTIMIZE: ${{ matrix.PYTHONOPTIMIZE }} | |
REVERSE: ${{ matrix.REVERSE }} | |
- name: Prepare to upload errors | |
if: failure() | |
run: | | |
mkdir -p Tests/errors | |
- name: Upload errors | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: errors | |
path: Tests/errors | |
- name: After success | |
run: | | |
.ci/after_success.sh | |
- name: Upload coverage | |
uses: codecov/[email protected] | |
with: | |
flags: ${{ matrix.os == 'ubuntu-latest' && 'GHA_Ubuntu' || 'GHA_macOS' }} | |
name: ${{ matrix.os }} Python ${{ matrix.python-version }} | |
gcov: true | |
success: | |
permissions: | |
contents: none | |
needs: build | |
runs-on: ubuntu-latest | |
name: Test Successful | |
steps: | |
- name: Success | |
run: echo Test Successful |