about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-02-21 18:34:07 -0500
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-02-22 10:07:42 -0500
commitcb72a93d2e4d84c19599679a29794f9867443ef4 (patch)
tree9d014e5e5993e7d9f7639a7ac55ca27d3a8a443a /nixos
parenta59e1712867ed2b38b404adcc8f863d91b4ddcc3 (diff)
sbt-extras: Convert VM test into installCheckPhase
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/sbt-extras.nix16
2 files changed, 0 insertions, 17 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 89e2ee2722847..b0561c36fe4a3 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -345,7 +345,6 @@ in
   samba-wsdd = handleTest ./samba-wsdd.nix {};
   sanoid = handleTest ./sanoid.nix {};
   sbt = handleTest ./sbt.nix {};
-  sbt-extras = handleTest ./sbt-extras.nix {};
   sddm = handleTest ./sddm.nix {};
   searx = handleTest ./searx.nix {};
   service-runner = handleTest ./service-runner.nix {};
diff --git a/nixos/tests/sbt-extras.nix b/nixos/tests/sbt-extras.nix
deleted file mode 100644
index f1672bf20665c..0000000000000
--- a/nixos/tests/sbt-extras.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-import ./make-test-python.nix ({ pkgs, ...} : {
-  name = "sbt-extras";
-  meta = with pkgs.lib.maintainers; {
-    maintainers = [ nequissimus ];
-  };
-
-  machine = { pkgs, ... }:
-    {
-      environment.systemPackages = [ pkgs.sbt-extras ];
-    };
-
-  testScript =
-    ''
-      machine.succeed("(sbt -h)")
-    '';
-})