nixosTests.zookeeper: migrate to runTest

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

View file

@ -1316,7 +1316,7 @@ in {
};
zipline = handleTest ./zipline.nix {};
zoneminder = handleTest ./zoneminder.nix {};
zookeeper = handleTest ./zookeeper.nix {};
zookeeper = runTest ./zookeeper.nix;
zram-generator = runTest ./zram-generator.nix;
zrepl = runTest ./zrepl.nix;
zsh-history = runTest ./zsh-history.nix;

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }:
let
@ -51,4 +50,3 @@ import ./make-test-python.nix (
)
'';
}
)