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

10 lines
228 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.
from typing import Callable, List
from test_driver import Machine
start_all: Callable[[], None]
machines: List[Machine]