summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMrinal Purohit <github@mrinalpurohit.in>2021-10-30 14:10:44 +0530
committerMrinal Purohit <github@mrinalpurohit.in>2021-10-30 14:13:42 +0530
commit9e431da51578ff00600d1fa5b25b8ffcd7a6afd3 (patch)
tree504403e63343687651d08d617e826c1cd53afa9d /nixos
parent8793bbc759b5745c129ffe50a172873a87956704 (diff)
downloadnixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar.gz
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar.bz2
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar.lz
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar.xz
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.tar.zst
nixpkgs-9e431da51578ff00600d1fa5b25b8ffcd7a6afd3.zip
ammonite: move nixos test to installCheckPhase
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/ammonite.nix20
2 files changed, 0 insertions, 21 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 847c9b7e567..6be38886bbb 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -26,7 +26,6 @@ in
   agda = handleTest ./agda.nix {};
   airsonic = handleTest ./airsonic.nix {};
   amazon-init-shell = handleTest ./amazon-init-shell.nix {};
-  ammonite = handleTest ./ammonite.nix {};
   apparmor = handleTest ./apparmor.nix {};
   atd = handleTest ./atd.nix {};
   atop = handleTest ./atop.nix {};
diff --git a/nixos/tests/ammonite.nix b/nixos/tests/ammonite.nix
deleted file mode 100644
index 4b674f35e3c..00000000000
--- a/nixos/tests/ammonite.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-import ./make-test-python.nix ({ pkgs, ...} : {
-  name = "ammonite";
-  meta = with pkgs.lib.maintainers; {
-    maintainers = [ nequissimus ];
-  };
-
-  nodes = {
-    amm =
-      { pkgs, ... }:
-        {
-          environment.systemPackages = [ (pkgs.ammonite.override { jre = pkgs.jre8; }) ];
-        };
-    };
-
-  testScript = ''
-    start_all()
-
-    amm.succeed("amm -c 'val foo = 21; println(foo * 2)' | grep 42")
-  '';
-})