summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2023-11-08 16:38:01 +0100
committerRaito Bezarius <masterancpp@gmail.com>2023-11-17 20:26:55 +0100
commit72911a99d34a4d290671728d40016ba5254f72fe (patch)
tree80033cba4fc93e4bcce0aa761e9bbf545d8be978 /nixos/tests
parenta2976db919afc97b69ce3b7699a1a44ce61bbe5f (diff)
downloadnixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar.gz
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar.bz2
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar.lz
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar.xz
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.tar.zst
nixpkgs-72911a99d34a4d290671728d40016ba5254f72fe.zip
code-server: drop
Depends on Node.js 16 and cannot be trivially upgraded to Node.js 18.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/code-server.nix22
2 files changed, 0 insertions, 23 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 6c127efa4ce..6a654b00d76 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -192,7 +192,6 @@ in {
   cntr = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cntr.nix {};
   cockpit = handleTest ./cockpit.nix {};
   cockroachdb = handleTestOn ["x86_64-linux"] ./cockroachdb.nix {};
-  code-server = handleTest ./code-server.nix {};
   coder = handleTest ./coder.nix {};
   collectd = handleTest ./collectd.nix {};
   connman = handleTest ./connman.nix {};
diff --git a/nixos/tests/code-server.nix b/nixos/tests/code-server.nix
deleted file mode 100644
index 7d523dfc617..00000000000
--- a/nixos/tests/code-server.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-import ./make-test-python.nix ({pkgs, lib, ...}:
-{
-  name = "code-server";
-
-  nodes = {
-    machine = {pkgs, ...}: {
-      services.code-server = {
-        enable = true;
-        auth = "none";
-      };
-    };
-  };
-
-  testScript = ''
-    start_all()
-    machine.wait_for_unit("code-server.service")
-    machine.wait_for_open_port(4444)
-    machine.succeed("curl -k --fail http://localhost:4444", timeout=10)
-  '';
-
-  meta.maintainers = [ lib.maintainers.drupol ];
-})