mirror of
https://github.com/feder-cr/invisible_playwright.git
synced 2026-07-22 11:51:11 +02:00
Merge 524a5e8a61 into aa7277a1ef
This commit is contained in:
commit
53b0f378e5
5 changed files with 10 additions and 5 deletions
3
.github/ISSUE_TEMPLATE/01-launch-failure.yml
vendored
3
.github/ISSUE_TEMPLATE/01-launch-failure.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue