nixosTests.archi: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-13 23:35:22 +01:00
parent 653313abe1
commit f13c50690f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 29 additions and 31 deletions

View file

@ -174,7 +174,7 @@ in {
appliance-repart-image = runTest ./appliance-repart-image.nix;
appliance-repart-image-verity-store = runTest ./appliance-repart-image-verity-store.nix;
apparmor = runTest ./apparmor;
archi = handleTest ./archi.nix {};
archi = runTest ./archi.nix;
aria2 = handleTest ./aria2.nix {};
armagetronad = handleTest ./armagetronad.nix {};
artalk = runTest ./artalk.nix;

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix (
{ lib, ... }:
{
{ lib, ... }:
{
name = "archi";
meta.maintainers = with lib.maintainers; [ paumr ];
@ -34,5 +33,4 @@ import ./make-test-python.nix (
machine.screenshot("welcome-screen")
'';
}
)
}