about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2021-10-28 14:44:26 +0200
committerPatrick Hilhorst <git@hilhorst.be>2021-10-28 14:44:26 +0200
commit88cff9d704469d6d42396141d1a78a01ec5d7c5f (patch)
tree8e56f1022af504746565c586b1bfd5c10e23586f /nixos
parent1c5a2ba890dba41eccc2c48a6842cecfd2209719 (diff)
downloadnixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar.gz
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar.bz2
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar.lz
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar.xz
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.tar.zst
nixlib-88cff9d704469d6d42396141d1a78a01ec5d7c5f.zip
google-cloud-sdk: move nixos test to installCheck
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/google-cloud-sdk.nix13
2 files changed, 0 insertions, 14 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 63c307c09833..9e5dbf1052bb 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -157,7 +157,6 @@ in
   gobgpd = handleTest ./gobgpd.nix {};
   gocd-agent = handleTest ./gocd-agent.nix {};
   gocd-server = handleTest ./gocd-server.nix {};
-  google-cloud-sdk = handleTest ./google-cloud-sdk.nix {};
   google-oslogin = handleTest ./google-oslogin {};
   gotify-server = handleTest ./gotify-server.nix {};
   grafana = handleTest ./grafana.nix {};
diff --git a/nixos/tests/google-cloud-sdk.nix b/nixos/tests/google-cloud-sdk.nix
deleted file mode 100644
index 3150b2d53c2c..000000000000
--- a/nixos/tests/google-cloud-sdk.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-import ./make-test-python.nix ({ pkgs, ... }: {
-  name = "google-cloud-sdk";
-  meta = with pkgs.lib.maintainers; { maintainers = [ iammrinal0 ]; };
-
-  machine = { pkgs, ... }: {
-    environment.systemPackages = [ pkgs.google-cloud-sdk ];
-  };
-
-  testScript = ''
-    import json
-    assert "${pkgs.google-cloud-sdk.version}" in json.loads(machine.succeed("gcloud version --format json"))["Google Cloud SDK"]
-  '';
-})