nixosTests.github-runner: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-05 00:01:55 +02:00
parent 28e1b64f0d
commit 754a229d74
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 41 additions and 43 deletions

View file

@ -516,7 +516,7 @@ in
ghostunnel = handleTest ./ghostunnel.nix { };
gitdaemon = handleTest ./gitdaemon.nix { };
gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
github-runner = handleTest ./github-runner.nix { };
github-runner = runTest ./github-runner.nix;
gitlab = runTest ./gitlab.nix;
gitolite = handleTest ./gitolite.nix { };
gitolite-fcgiwrap = handleTest ./gitolite-fcgiwrap.nix { };

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
{ pkgs, ... }:
{
name = "github-runner";
meta = with pkgs.lib.maintainers; {
maintainers = [ veehaitch ];
@ -45,5 +44,4 @@ import ./make-test-python.nix (
machine.fail("systemctl list-unit-files | grep test-disabled")
'';
}
)
}