We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
callTest
1 parent 3aafb55 commit f086ad5Copy full SHA for f086ad5
flake-modules/tests.nix
@@ -1,4 +1,9 @@
1
-{ self, helpers, ... }:
+{
2
+ self,
3
+ lib,
4
+ helpers,
5
+ ...
6
+}:
7
{
8
perSystem =
9
@@ -11,6 +16,19 @@
11
16
}:
12
17
let
13
18
inherit (self'.legacyPackages) nixvimConfiguration;
19
+ callTest = lib.callPackageWith (
20
+ pkgs
21
+ // {
22
+ inherit
23
+ helpers
24
+ lib
25
+ makeNixvimWithModule
26
+ pkgsUnfree
27
+ self
28
+ system
29
+ ;
30
+ }
31
+ );
14
32
in
15
33
34
checks = {
@@ -52,6 +70,6 @@
52
70
package-options = pkgs.callPackage ../tests/package-options.nix { inherit nixvimConfiguration; };
53
71
54
72
lsp-all-servers = pkgs.callPackage ../tests/lsp-servers.nix { inherit nixvimConfiguration; };
55
- } // import ../tests { inherit pkgs pkgsUnfree helpers; };
73
+ } // callTest ../tests { };
56
74
};
57
75
}
0 commit comments