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

10 lines
228 B
Python

# 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]