mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
16 lines
551 B
Nix
16 lines
551 B
Nix
{ makeTest ? import <nixpkgs/nixos/tests/make-test-python.nix>
|
|
, pkgs ? (import <nixpkgs> { })
|
|
}@args:
|
|
let
|
|
lib = pkgs.lib;
|
|
makeDiskoTest = (pkgs.callPackage ./lib.nix { inherit makeTest; }).makeDiskoTest;
|
|
allTestFilenames =
|
|
builtins.map (lib.removeSuffix ".nix") (
|
|
builtins.filter
|
|
(x: lib.hasSuffix ".nix" x && x != "default.nix" && x != "lib.nix")
|
|
(lib.attrNames (builtins.readDir ./.))
|
|
);
|
|
|
|
allTests = lib.genAttrs (allTestFilenames) (test: import (./. + "/${test}.nix") { inherit makeDiskoTest; });
|
|
in
|
|
allTests
|