nixosTests.auth-mysql: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-13 23:45:17 +01:00
parent add74983e7
commit 3f2541bbb1
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 157 additions and 159 deletions

View file

@ -183,7 +183,7 @@ in {
atticd = runTest ./atticd.nix; atticd = runTest ./atticd.nix;
atuin = runTest ./atuin.nix; atuin = runTest ./atuin.nix;
audiobookshelf = runTest ./audiobookshelf.nix; audiobookshelf = runTest ./audiobookshelf.nix;
auth-mysql = handleTest ./auth-mysql.nix {}; auth-mysql = runTest ./auth-mysql.nix;
authelia = handleTest ./authelia.nix {}; authelia = handleTest ./authelia.nix {};
auto-cpufreq = handleTest ./auto-cpufreq.nix {}; auto-cpufreq = handleTest ./auto-cpufreq.nix {};
autobrr = handleTest ./autobrr.nix {}; autobrr = handleTest ./autobrr.nix {};

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }: { pkgs, lib, ... }:
let let
@ -177,4 +176,3 @@ import ./make-test-python.nix (
machine.wait_until_tty_matches("5", "login:") machine.wait_until_tty_matches("5", "login:")
''; '';
} }
)