💚 Fix CI test suite for Windows and MacOS (#1307)

This commit is contained in:
Sofie Van Landeghem
2025-09-18 00:19:41 +02:00
committed by GitHub
parent 192ba90b1e
commit 35c0005f44
3 changed files with 24 additions and 10 deletions

View File

@ -25,17 +25,30 @@ jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ "3.13" ]
pydantic-version:
- pydantic-v1
- pydantic-v2
include:
- os: macos-latest
python-version: "3.8"
pydantic-version: pydantic-v1
- os: windows-latest
python-version: "3.9"
pydantic-version: pydantic-v2
- os: ubuntu-latest
python-version: "3.10"
pydantic-version: pydantic-v1
- os: macos-latest
python-version: "3.11"
pydantic-version: pydantic-v2
- os: windows-latest
python-version: "3.12"
pydantic-version: pydantic-v1
- os: ubuntu-latest
python-version: "3.12"
pydantic-version: pydantic-v2
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
@ -78,7 +91,7 @@ jobs:
- name: Store coverage files
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
name: coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
path: coverage
include-hidden-files: true

View File

@ -81,6 +81,7 @@ source = [
]
context = '${CONTEXT}'
dynamic_context = "test_function"
relative_files = true
[tool.coverage.report]
show_missing = true

View File

@ -13,7 +13,7 @@ def test_select_gen() -> None:
env = os.environ.copy()
env["CHECK_JINJA"] = "1"
result = subprocess.run(
[sys.executable, "scripts/generate_select.py"],
[sys.executable, Path("scripts") / "generate_select.py"],
env=env,
check=True,
cwd=root_path,