Skip to content

Commit 6f7f1d2

Browse files
committed
tests: disable papis test on darwin
NixOS/nixpkgs#408528
1 parent 1b2abfb commit 6f7f1d2

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

tests/test-sources/plugins/by-name/papis/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
{
1+
{ lib, pkgs, ... }:
2+
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
3+
# https://github.com/NixOS/nixpkgs/issues/408528
4+
lib.optionalAttrs (!pkgs.stdenv.hostPlatform.isDarwin) {
25
empty = {
36
plugins.papis.enable = true;
47
};

tests/test-sources/plugins/cmp/all-sources.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
]
3636
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
3737
"cmp_tabnine"
38+
]
39+
++ lib.optionals hostPlatform.isDarwin [
40+
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
41+
# https://github.com/NixOS/nixpkgs/issues/408528
42+
"papis"
3843
];
3944
in
4045
pipe config.cmpSourcePlugins [

0 commit comments

Comments
 (0)