1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

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;
fail2ban = runTest ./fail2ban.nix;
fakeroute = handleTest ./fakeroute.nix { };
fancontrol = handleTest ./fancontrol.nix { };
fancontrol = runTest ./fancontrol.nix;
fanout = handleTest ./fanout.nix { };
fcitx5 = handleTest ./fcitx5 { };
fedimintd = runTest ./fedimintd.nix;

View file

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