clan-core/checks/lib/container-driver/test-script-prepend.py

10 lines
231 B
Python
Raw Normal View History

2023-10-14 13:54:56 +00:00
# This file contains type hints that can be prepended to Nix test scripts so they can be type
# checked.
2023-11-29 11:40:48 +00:00
from collections.abc import Callable
2023-10-14 13:54:56 +00:00
from test_driver import Machine
start_all: Callable[[], None]
2023-11-29 11:40:48 +00:00
machines: list[Machine]