nixosTests.fail2ban: migrate to runTest

This commit is contained in:
Philipp Bartsch 2025-03-30 20:08:47 +02:00 committed by Masum Reza
parent cd200e7fae
commit 0dbddf816a
2 changed files with 16 additions and 18 deletions

View File

@ -386,7 +386,7 @@ in {
etebase-server = handleTest ./etebase-server.nix {};
etesync-dav = handleTest ./etesync-dav.nix {};
evcc = runTest ./evcc.nix;
fail2ban = handleTest ./fail2ban.nix { };
fail2ban = runTest ./fail2ban.nix;
fakeroute = handleTest ./fakeroute.nix {};
fancontrol = handleTest ./fancontrol.nix {};
fanout = handleTest ./fanout.nix {};

View File

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "fail2ban";
@ -18,4 +17,3 @@ import ./make-test-python.nix (
machine.wait_for_unit("fail2ban")
'';
}
)