lol

nixos/lib/test-driver: add driver-timeout as a passthru test

From now on, we will aim to ensure that the test driver
gets tested by OfBorg using all our available tests.

This commit adds the driver timeout test to the driver.

+5
+5
nixos/lib/test-driver/default.nix
··· 11 11 , tesseract4 12 12 , vde2 13 13 , extraPythonPackages ? (_ : []) 14 + , nixosTests 14 15 }: 15 16 16 17 python3Packages.buildPythonApplication { ··· 30 31 ] 31 32 ++ (lib.optionals enableOCR [ imagemagick_light tesseract4 ]) 32 33 ++ extraPythonPackages python3Packages; 34 + 35 + passthru.tests = { 36 + inherit (nixosTests.nixos-test-driver) driver-timeout; 37 + }; 33 38 34 39 doCheck = true; 35 40 nativeCheckInputs = with python3Packages; [ mypy ruff black ];