mirror of
https://gitlab.com/TECHNOFAB/nixtest.git
synced 2025-12-17 04:23:54 +01:00
11 lines
202 B
Nix
11 lines
202 B
Nix
|
|
{inputs, ...}: let
|
||
|
|
inherit (inputs) pkgs ntlib;
|
||
|
|
in {
|
||
|
|
tests = ntlib.mkNixtest {
|
||
|
|
modules = ntlib.autodiscover {dir = "${inputs.self}/tests";};
|
||
|
|
args = {
|
||
|
|
inherit pkgs ntlib;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|