about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-10-12 14:26:48 +0900
committerGitHub <noreply@github.com>2023-10-12 14:26:48 +0900
commitd570cfb5b0006e76da1b0e5b801f5eba980c5b06 (patch)
tree3fda4c37cb0dca72d8f7373fe4f4dbb3f30ade10 /nixos
parentde06eb1f311a9457a20dca57397346c452a51664 (diff)
parentcb719dfa72f36546313e80355cbf0516091abef1 (diff)
downloadnixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar.gz
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar.bz2
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar.lz
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar.xz
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.tar.zst
nixlib-d570cfb5b0006e76da1b0e5b801f5eba980c5b06.zip
Merge pull request #260433 from adamcstephens/sabctools/7.1.2
python311Packages.sabctools: 7.0.2 -> 7.1.2, fix sabnzbd
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/sabnzbd.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/tests/sabnzbd.nix b/nixos/tests/sabnzbd.nix
index 075bd0b1fe09..64cb655b4315 100644
--- a/nixos/tests/sabnzbd.nix
+++ b/nixos/tests/sabnzbd.nix
@@ -18,5 +18,8 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
     machine.wait_until_succeeds(
         "curl --fail -L http://localhost:8080/"
     )
+    _, out = machine.execute("grep SABCTools /var/lib/sabnzbd/logs/sabnzbd.log")
+    machine.log(out)
+    machine.fail("grep 'SABCTools disabled: no correct version found!' /var/lib/sabnzbd/logs/sabnzbd.log")
   '';
 })