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 7e4e083014
commit 39995eef39

View File

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