Files
clan-core/lib/test/container-test-driver/test-script-prepend.py
2025-04-23 19:49:02 +07:00

10 lines
231 B
Python

# This file contains type hints that can be prepended to Nix test scripts so they can be type
# checked.
from collections.abc import Callable
from test_driver import Machine
start_all: Callable[[], None]
machines: list[Machine]