about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2020-11-04 18:10:07 -0500
committerGitHub <noreply@github.com>2020-11-04 18:10:07 -0500
commit18d375cae7df73383db7382d9704ac4beab875a2 (patch)
treea1ca018228b8388b33aa2bea6b9d37f1aa55127e /nixos/tests
parent8201f4f6fda71709ae607ca767a30b9e897adb82 (diff)
parentfb396b7ea5fd1bf42d870345f528d0c84197b960 (diff)
Merge pull request #102817 from NeQuissimus/ammonite_update
ammonite: Add test reference, update script
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/ammonite.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 76b2af9d578c8..b412b1dfbbe57 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -24,6 +24,7 @@ in
   _3proxy = handleTest ./3proxy.nix {};
   acme = handleTest ./acme.nix {};
   agda = handleTest ./agda.nix {};
+  ammonite = handleTest ./ammonite.nix {};
   atd = handleTest ./atd.nix {};
   avahi = handleTest ./avahi.nix {};
   avahi-with-resolved = handleTest ./avahi.nix { networkd = true; };
diff --git a/nixos/tests/ammonite.nix b/nixos/tests/ammonite.nix
index 1955e42be5f02..e9f06358e13f6 100644
--- a/nixos/tests/ammonite.nix
+++ b/nixos/tests/ammonite.nix
@@ -8,7 +8,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
     amm =
       { pkgs, ... }:
         {
-          environment.systemPackages = [ pkgs.ammonite ];
+          environment.systemPackages = [ (pkgs.ammonite.override { jre = pkgs.jre8; }) ];
         };
     };