about summary refs log tree commit diff
path: root/nixos/tests/calibre-web.nix
diff options
context:
space:
mode:
authorPavel Borzenkov <pavel@borzenkov.net>2021-09-27 20:51:30 +0200
committerPavel Borzenkov <pavel@borzenkov.net>2021-09-27 20:51:30 +0200
commit80f7656229efee8817880250b2ca097a69898330 (patch)
tree442ccfe1421b6dc951e065fc958d4142b9816e1a /nixos/tests/calibre-web.nix
parent9c6c62f724949bf8199223d1b8fee666676f778d (diff)
calibre-web: 0.6.12 -> 0.6.13
calibre-web no longer starts without proper calibre DB path configured,
so the default testcase (completely unconfigured) is removed.
Diffstat (limited to 'nixos/tests/calibre-web.nix')
-rw-r--r--nixos/tests/calibre-web.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/nixos/tests/calibre-web.nix b/nixos/tests/calibre-web.nix
index 0af997317fcd4..9832d54697872 100644
--- a/nixos/tests/calibre-web.nix
+++ b/nixos/tests/calibre-web.nix
@@ -11,10 +11,6 @@ import ./make-test-python.nix (
         meta.maintainers = with pkgs.lib.maintainers; [ pborzenkov ];
 
         nodes = {
-          default = { ... }: {
-            services.calibre-web.enable = true;
-          };
-
           customized = { pkgs, ... }: {
             services.calibre-web = {
               enable = true;
@@ -33,12 +29,6 @@ import ./make-test-python.nix (
         testScript = ''
           start_all()
 
-          default.wait_for_unit("calibre-web.service")
-          default.wait_for_open_port(${toString defaultPort})
-          default.succeed(
-              "curl --fail 'http://localhost:${toString defaultPort}/basicconfig' | grep 'Basic Configuration'"
-          )
-
           customized.succeed(
               "mkdir /tmp/books && calibredb --library-path /tmp/books add -e --title test-book"
           )