mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 11:44:32 +02:00
tests: Fix netman tests by including docker (#267)
Netman tries to call 'docker -v' and it hangs neovim if the docker command is not found. This adds the docker binary to the derivation running checks
This commit is contained in:
parent
261a59a8ad
commit
bf042c5809
2 changed files with 1 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
pkgs.stdenv.mkDerivation {
|
pkgs.stdenv.mkDerivation {
|
||||||
name = name;
|
name = name;
|
||||||
|
|
||||||
nativeBuildInputs = [nvim];
|
nativeBuildInputs = [nvim pkgs.docker-client];
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
# We need to set HOME because neovim will try to create some files
|
# We need to set HOME because neovim will try to create some files
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
{
|
{
|
||||||
empty = {
|
empty = {
|
||||||
tests.dontRun = true;
|
|
||||||
plugins.netman.enable = true;
|
plugins.netman.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
withNeotree = {
|
withNeotree = {
|
||||||
tests.dontRun = true;
|
|
||||||
plugins.neo-tree.enable = true;
|
plugins.neo-tree.enable = true;
|
||||||
plugins.netman = {
|
plugins.netman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue