"""Keep the suite's stall verdicts off the developer's notification daemon.

The end-to-end tests drive the real binary in a subprocess, so the only channel
that reaches them is the inherited environment; set it at import, before any
test spawns.
"""

from __future__ import annotations

import os

os.environ["STALL_GUARD_NOTIFY"] = "0"
