nixosTests.fancontrol: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-18 21:28:41 +02:00
parent bdac73554f
commit 610021f4b6
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 36 additions and 38 deletions

View file

@ -460,7 +460,7 @@ in
evcc = runTest ./evcc.nix; evcc = runTest ./evcc.nix;
fail2ban = runTest ./fail2ban.nix; fail2ban = runTest ./fail2ban.nix;
fakeroute = handleTest ./fakeroute.nix { }; fakeroute = handleTest ./fakeroute.nix { };
fancontrol = handleTest ./fancontrol.nix { }; fancontrol = runTest ./fancontrol.nix;
fanout = handleTest ./fanout.nix { }; fanout = handleTest ./fanout.nix { };
fcitx5 = handleTest ./fcitx5 { }; fcitx5 = handleTest ./fcitx5 { };
fedimintd = runTest ./fedimintd.nix; fedimintd = runTest ./fedimintd.nix;

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix ( { pkgs, ... }:
{ pkgs, ... }: {
{
name = "fancontrol"; name = "fancontrol";
meta = with pkgs.lib.maintainers; { meta = with pkgs.lib.maintainers; {
maintainers = [ evils ]; maintainers = [ evils ];
@ -35,5 +34,4 @@ import ./make-test-python.nix (
) )
machine.shutdown() machine.shutdown()
''; '';
} }
)