nixosTests.xandikos: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-14 23:38:25 +01:00
parent ae0871bca2
commit ca409e5a02
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 62 additions and 64 deletions

View file

@ -1285,7 +1285,7 @@ in {
wrappers = handleTest ./wrappers.nix {};
writefreely = handleTest ./web-apps/writefreely.nix {};
wstunnel = runTest ./wstunnel.nix;
xandikos = handleTest ./xandikos.nix {};
xandikos = runTest ./xandikos.nix;
xautolock = runTest ./xautolock.nix;
xfce = runTest ./xfce.nix;
xfce-wayland = runTest ./xfce-wayland.nix;

View file

@ -1,7 +1,6 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{ lib, ... }:
{
{
name = "xandikos";
meta.maintainers = with lib.maintainers; [ _0x4A6F ];
@ -69,5 +68,4 @@ import ./make-test-python.nix (
"curl -s --fail -u xandikos:snakeOilPassword -H 'Host: xandikos.local' http://xandikos_proxy/xandikos/user/ | grep -i Xandikos"
)
'';
}
)
}