Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions tests/test_build_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,16 @@ def test_windows_signer_preflight_terminates_a_stalled_provider(tmp_path):
"1",
],
check=False,
timeout=10,
timeout=15,
)

assert result.returncode == 2
assert time.monotonic() - started < 8
# Native Windows PowerShell may need roughly two seconds to initialize its
# 64-bit certificate-provider view before the one-second inspection and
# bounded process-tree cleanup run. Keep this assertion below the outer
# outer harness timeout without constraining normal provider startup to
# the older in-process timing envelope.
assert time.monotonic() - started < 9.5
Comment thread
Sykezzz marked this conversation as resolved.


def test_windows_setup_builder_pins_compiler_and_emits_unsigned_receipts():
Expand Down
Loading