nixosTests.miriway: Migrate to runTest

This commit is contained in:
OPNA2608 2025-03-22 13:55:56 +01:00
parent 59e6a84a7b
commit de76a1e852
2 changed files with 129 additions and 131 deletions

View file

@ -706,7 +706,7 @@ in {
miniflux = handleTest ./miniflux.nix {};
minio = handleTest ./minio.nix {};
miracle-wm = runTest ./miracle-wm.nix;
miriway = handleTest ./miriway.nix {};
miriway = runTest ./miriway.nix;
misc = handleTest ./misc.nix {};
misskey = handleTest ./misskey.nix {};
mjolnir = handleTest ./matrix/mjolnir.nix {};

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{
{ pkgs, lib, ... }:
{
name = "miriway";
meta = {
@ -144,5 +143,4 @@ import ./make-test-python.nix (
machine.wait_until_fails("pgrep alacritty")
'';
}
)
}