nixosTests.mosquitto: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-02 19:07:43 +02:00
parent 50bfb2f2f8
commit 2f5740a2b9
No known key found for this signature in database
GPG Key ID: EC0DE1CB9D5258B4
2 changed files with 209 additions and 211 deletions

View File

@ -801,7 +801,7 @@ in
mopidy = handleTest ./mopidy.nix { }; mopidy = handleTest ./mopidy.nix { };
morph-browser = runTest ./morph-browser.nix; morph-browser = runTest ./morph-browser.nix;
morty = handleTest ./morty.nix { }; morty = handleTest ./morty.nix { };
mosquitto = handleTest ./mosquitto.nix { }; mosquitto = runTest ./mosquitto.nix;
moosefs = handleTest ./moosefs.nix { }; moosefs = handleTest ./moosefs.nix { };
movim = discoverTests (import ./web-apps/movim { inherit handleTestOn; }); movim = discoverTests (import ./web-apps/movim { inherit handleTestOn; });
mpd = handleTest ./mpd.nix { }; mpd = handleTest ./mpd.nix { };

View File

@ -1,5 +1,4 @@
import ./make-test-python.nix ( { pkgs, ... }:
{ pkgs, lib, ... }:
let let
port = 1888; port = 1888;
@ -226,4 +225,3 @@ import ./make-test-python.nix (
]) ])
''; '';
} }
)