about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-10-28 18:00:54 +0200
committerGitHub <noreply@github.com>2021-10-28 18:00:54 +0200
commitbb9350344ebcbf5bfd44d364b89c377843b6be16 (patch)
tree75b034eb28e9fdedeb06bdfced4023c053b1bcc8 /nixos
parentcc558ba20576ce71ef18b362c7991ed0a908b65a (diff)
parent4dc3596fd172c26ed418c1eac64044a28679d21e (diff)
downloadnixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar.gz
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar.bz2
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar.lz
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar.xz
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.tar.zst
nixlib-bb9350344ebcbf5bfd44d364b89c377843b6be16.zip
Merge pull request #143366 from Synthetica9/yq-test-rm
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/yq.nix12
2 files changed, 0 insertions, 13 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 63c307c09833..06d6e5170c2e 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -499,7 +499,6 @@ in
   xterm = handleTest ./xterm.nix {};
   yabar = handleTest ./yabar.nix {};
   yggdrasil = handleTest ./yggdrasil.nix {};
-  yq = handleTest ./yq.nix {};
   zfs = handleTest ./zfs.nix {};
   zigbee2mqtt = handleTest ./zigbee2mqtt.nix {};
   zoneminder = handleTest ./zoneminder.nix {};
diff --git a/nixos/tests/yq.nix b/nixos/tests/yq.nix
deleted file mode 100644
index cdcb3d6e2462..000000000000
--- a/nixos/tests/yq.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-import ./make-test-python.nix ({ pkgs, ... }: {
-  name = "yq";
-  meta = with pkgs.lib.maintainers; { maintainers = [ nequissimus ]; };
-
-  nodes.yq = { pkgs, ... }: { environment.systemPackages = with pkgs; [ jq yq ]; };
-
-  testScript = ''
-    assert "hello:\n  foo: bar\n" in yq.succeed(
-        'echo \'{"hello":{"foo":"bar"}}\' | yq -y .'
-    )
-  '';
-})