about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kubernetes
diff options
context:
space:
mode:
authorAlexandru Scvortov <code@scvalex.net>2021-07-30 16:16:23 +0100
committerAlexandru Scvortov <code@scvalex.net>2021-08-16 14:59:58 +0100
commit8afd31c625f7278237ed4622b4e3f8d449a55894 (patch)
treeae48b58b055751896ea3269e5cc622daec77f649 /pkgs/applications/networking/cluster/kubernetes
parent13aa00156246eec1043c795a9cd3f09dac6928fa (diff)
kubernetes: fix flaky test and run tests as group
Diffstat (limited to 'pkgs/applications/networking/cluster/kubernetes')
-rw-r--r--pkgs/applications/networking/cluster/kubernetes/default.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/applications/networking/cluster/kubernetes/default.nix b/pkgs/applications/networking/cluster/kubernetes/default.nix
index b59a5549b72d1..7c1d366a4b628 100644
--- a/pkgs/applications/networking/cluster/kubernetes/default.nix
+++ b/pkgs/applications/networking/cluster/kubernetes/default.nix
@@ -97,10 +97,5 @@ stdenv.mkDerivation rec {
     platforms = platforms.unix;
   };
 
-  passthru.tests = with nixosTests.kubernetes; {
-    dns-single-node = dns.singlenode;
-    dns-multi-node = dns.multinode;
-    rbac-single-node = rbac.singlenode;
-    rbac-multi-node = rbac.multinode;
-  };
+  passthru.tests = nixosTests.kubernetes;
 }