0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixosTests.tuxguitar: migrate to runTest (#396010)

This commit is contained in:
Pol Dellaiera 2025-04-04 19:19:04 +02:00 committed by GitHub
commit b6f910a2f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 28 deletions

View file

@ -1350,7 +1350,7 @@ in
tuptime = handleTest ./tuptime.nix { }; tuptime = handleTest ./tuptime.nix { };
turbovnc-headless-server = handleTest ./turbovnc-headless-server.nix { }; turbovnc-headless-server = handleTest ./turbovnc-headless-server.nix { };
turn-rs = handleTest ./turn-rs.nix { }; turn-rs = handleTest ./turn-rs.nix { };
tuxguitar = handleTest ./tuxguitar.nix { }; tuxguitar = runTest ./tuxguitar.nix;
twingate = runTest ./twingate.nix; twingate = runTest ./twingate.nix;
typesense = handleTest ./typesense.nix { }; typesense = handleTest ./typesense.nix { };
ucarp = handleTest ./ucarp.nix { }; ucarp = handleTest ./ucarp.nix { };

View file

@ -1,10 +1,7 @@
import ./make-test-python.nix ( { ... }:
{ pkgs, ... }:
{ {
name = "tuxguitar"; name = "tuxguitar";
meta = with pkgs.lib.maintainers; { meta.maintainers = [ ];
maintainers = [ ];
};
nodes.machine = nodes.machine =
{ config, pkgs, ... }: { config, pkgs, ... }:
@ -26,4 +23,3 @@ import ./make-test-python.nix (
machine.screenshot("tuxguitar") machine.screenshot("tuxguitar")
''; '';
} }
)