nixosTests.xfce: migrate to runTest

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

View file

@ -1287,7 +1287,7 @@ in {
wstunnel = runTest ./wstunnel.nix; wstunnel = runTest ./wstunnel.nix;
xandikos = handleTest ./xandikos.nix {}; xandikos = handleTest ./xandikos.nix {};
xautolock = handleTest ./xautolock.nix {}; xautolock = handleTest ./xautolock.nix {};
xfce = handleTest ./xfce.nix {}; xfce = runTest ./xfce.nix;
xfce-wayland = runTest ./xfce-wayland.nix; xfce-wayland = runTest ./xfce-wayland.nix;
xmonad = runTest ./xmonad.nix; xmonad = runTest ./xmonad.nix;
xmonad-xdg-autostart = runTest ./xmonad-xdg-autostart.nix; xmonad-xdg-autostart = runTest ./xmonad-xdg-autostart.nix;

View file

@ -1,5 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{ {
name = "xfce"; name = "xfce";
@ -73,4 +71,3 @@ import ./make-test-python.nix (
machine.screenshot("screen") machine.screenshot("screen")
''; '';
} }
)