nixosTests.zipline: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt
2025-03-14 22:46:10 +01:00
parent 7c443382b2
commit 75702914a7
2 changed files with 35 additions and 37 deletions

View File

@@ -1314,7 +1314,7 @@ in {
imports = [ ./zigbee2mqtt.nix ];
_module.args.package = pkgs.zigbee2mqtt_2;
};
zipline = handleTest ./zipline.nix {};
zipline = runTest ./zipline.nix;
zoneminder = runTest ./zoneminder.nix;
zookeeper = runTest ./zookeeper.nix;
zram-generator = runTest ./zram-generator.nix;

View File

@@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ lib, ... }:
{
name = "zipline";
@@ -41,4 +40,3 @@ import ./make-test-python.nix (
assert json.loads(resp)["user"]["id"] == data["user"]["id"]
'';
}
)