summary refs log tree commit diff
diff options
context:
space:
mode:
authorScott Worley <scottworley@scottworley.com>2020-09-16 08:54:14 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2020-10-25 11:01:31 +0100
commit19034ed7a4b2264191fdf74d462c8de09858b97c (patch)
tree90ae649271859b1585654207a7b96c928d4f646a
parentd16e547f2e3dd220928022014d2b92b895a2f928 (diff)
downloadnixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar.gz
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar.bz2
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar.lz
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar.xz
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.tar.zst
nixpkgs-19034ed7a4b2264191fdf74d462c8de09858b97c.zip
nixos/tests/metabase: Use curl --fail
-rw-r--r--nixos/tests/metabase.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/metabase.nix b/nixos/tests/metabase.nix
index 1450a4e9086..65619cc793a 100644
--- a/nixos/tests/metabase.nix
+++ b/nixos/tests/metabase.nix
@@ -15,6 +15,6 @@ import ./make-test-python.nix ({ pkgs, ... }: {
     start_all()
     machine.wait_for_unit("metabase.service")
     machine.wait_for_open_port(3000)
-    machine.wait_until_succeeds("curl -L http://localhost:3000/setup | grep Metabase")
+    machine.wait_until_succeeds("curl -fL http://localhost:3000/setup | grep Metabase")
   '';
 })