add container test driver

This commit is contained in:
Jörg Thalheim
2023-10-14 15:54:56 +02:00
committed by Mic92
parent 755c7f4620
commit 1d336ed863
9 changed files with 557 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# 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]