This commit is contained in:
Danny Ward 2026-07-20 20:27:05 +02:00 committed by GitHub
commit 53b0f378e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 5 deletions

View file

@ -25,7 +25,8 @@ body:
options:
- Windows 10/11 x86_64
- Linux x86_64
- macOS (unsupported)
- macOS arm64
- macOS x86_64
- Other
validations:
required: true

View file

@ -26,7 +26,8 @@ body:
options:
- Windows 10/11 x86_64
- Linux x86_64
- macOS (unsupported)
- macOS arm64
- macOS x86_64
- Other
validations:
required: true
@ -43,7 +44,7 @@ body:
id: headless
attributes:
label: headless=
description: Some bugs only repro on Windows headless=True (hidden alt-desktop path).
description: Some bugs only repro with headless=True (hidden-window path on Windows/macOS, Xvfb on Linux).
options:
- "True"
- "False"

View file

@ -35,7 +35,8 @@ body:
options:
- Windows 10/11 x86_64
- Linux x86_64
- macOS (unsupported)
- macOS arm64
- macOS x86_64
- Other
validations:
required: true

View file

@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-15, macos-15-intel]
python: ["3.11", "3.12"]
steps:

View file

@ -315,6 +315,8 @@ def test_ensure_binary_accepts_binary_mode_checksums(tmp_path, monkeypatch):
# Force the platform branch the test mocks:
monkeypatch.setattr("sys.platform", "win32")
import platform
monkeypatch.setattr(platform, "machine", lambda: "AMD64")
out = ensure_binary()
# No RuntimeError means the parser accepted the `*`-prefixed key.
assert out.exists()