nixosTests.gerrit: Migrate to runTest (#396222)

This commit is contained in:
Pol Dellaiera 2025-04-05 18:13:33 +02:00 committed by GitHub
commit ceb8b4a5f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 47 additions and 49 deletions

View File

@ -511,7 +511,7 @@ in
gemstash = handleTest ./gemstash.nix { };
geoclue2 = runTest ./geoclue2.nix;
geoserver = runTest ./geoserver.nix;
gerrit = handleTest ./gerrit.nix { };
gerrit = runTest ./gerrit.nix;
geth = handleTest ./geth.nix { };
ghostunnel = handleTest ./ghostunnel.nix { };
gitdaemon = handleTest ./gitdaemon.nix { };

View File

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
@ -54,4 +53,3 @@ import ./make-test-python.nix (
client.succeed("nc -z server 2222")
'';
}
)