devshell/nix/repo/tests.nix

11 lines
220 B
Nix
Raw Normal View History

{inputs, ...}: let
inherit (inputs) pkgs ntlib devshell;
2025-07-31 12:37:19 +02:00
in {
tests = ntlib.mkNixtest {
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
args = {
inherit ntlib devshell pkgs;
};
};
}