nixosTests.xfce-wayland: migrate to runTest

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

View file

@ -1288,7 +1288,7 @@ in {
xandikos = handleTest ./xandikos.nix {}; xandikos = handleTest ./xandikos.nix {};
xautolock = handleTest ./xautolock.nix {}; xautolock = handleTest ./xautolock.nix {};
xfce = handleTest ./xfce.nix {}; xfce = handleTest ./xfce.nix {};
xfce-wayland = handleTest ./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;
xpadneo = runTest ./xpadneo.nix; xpadneo = runTest ./xpadneo.nix;

View file

@ -1,6 +1,4 @@
import ./make-test-python.nix ( {
{ pkgs, ... }:
{
name = "xfce-wayland"; name = "xfce-wayland";
nodes.machine = nodes.machine =
@ -67,5 +65,4 @@ import ./make-test-python.nix (
machine.sleep(10) machine.sleep(10)
machine.screenshot("screen") machine.screenshot("screen")
''; '';
} }
)