about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2021-10-28 14:06:05 +0200
committerPatrick Hilhorst <git@hilhorst.be>2021-10-28 17:31:03 +0200
commit4dc3596fd172c26ed418c1eac64044a28679d21e (patch)
tree279d496d90a6494f2019c5be5150760aefdfc02e /nixos
parente29cb6cb57fd0fe293d4678c4010d5e26928c5f3 (diff)
downloadnixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar.gz
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar.bz2
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar.lz
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar.xz
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.tar.zst
nixlib-4dc3596fd172c26ed418c1eac64044a28679d21e.zip
nixosTests.yq: remove, move to yq package
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 9e5dbf1052bb..847c9b7e5672 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -498,7 +498,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 .'
-    )
-  '';
-})