nixosTests.zoneminder: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-14 22:45:38 +01:00
parent 1c825e3db4
commit 7c443382b2
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 21 additions and 23 deletions

View file

@ -1315,7 +1315,7 @@ in {
_module.args.package = pkgs.zigbee2mqtt_2;
};
zipline = handleTest ./zipline.nix {};
zoneminder = handleTest ./zoneminder.nix {};
zoneminder = runTest ./zoneminder.nix;
zookeeper = runTest ./zookeeper.nix;
zram-generator = runTest ./zram-generator.nix;
zrepl = runTest ./zrepl.nix;

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ lib, ... }:
{
@ -23,4 +22,3 @@ import ./make-test-python.nix (
machine.succeed("curl --fail http://localhost:8095/")
'';
}
)