aboutsummaryrefslogtreecommitdiff
path: root/nixos/release.nix
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-09-18 19:27:36 +0200
committerGitHub <noreply@github.com>2018-09-18 19:27:36 +0200
commita83d61b70864e7b539e129faa8842113b5a55716 (patch)
treecff809c1ea9e8500ccc86f84ec86a52d16ed54d0 /nixos/release.nix
parent3126be4308c4e8a8737a0d251260eccee391348f (diff)
nixos/release.nix: disable tests.ec2-config (#46830)
This test doesn't work in a sandbox and never succeeded on Hydra. It simulates an EC2 instance reconfiguring itself at runtime, which needs network access.
Diffstat (limited to 'nixos/release.nix')
-rw-r--r--nixos/release.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/release.nix b/nixos/release.nix
index ee31564bcf7..d26aacb669a 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -285,7 +285,8 @@ in rec {
tests.ecryptfs = callTest tests/ecryptfs.nix {};
tests.etcd = callTestOnMatchingSystems ["x86_64-linux"] tests/etcd.nix {};
tests.ec2-nixops = (callSubTestsOnMatchingSystems ["x86_64-linux"] tests/ec2.nix {}).boot-ec2-nixops or {};
- tests.ec2-config = (callSubTestsOnMatchingSystems ["x86_64-linux"] tests/ec2.nix {}).boot-ec2-config or {};
+ # ec2-config doesn't work in a sandbox as the simulated ec2 instance needs network access
+ #tests.ec2-config = (callSubTestsOnMatchingSystems ["x86_64-linux"] tests/ec2.nix {}).boot-ec2-config or {};
tests.elk = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/elk.nix {};
tests.env = callTest tests/env.nix {};
tests.ferm = callTest tests/ferm.nix {};