pkgs/generate-test-vars: Add basic module test

Add a basic module test that can catch breaking changes in module
usage.
This commit is contained in:
a-kenji
2025-05-26 15:41:48 +02:00
parent 94deed32b9
commit cca0c2aff8

View File

@@ -11,4 +11,9 @@ buildPythonApplication {
nativeBuildInputs = [
(python.withPackages (ps: [ ps.setuptools ]))
];
checkPhase = ''
runHook preCheck
$out/bin/generate-test-vars --help
runHook preCheck
'';
}