Commit 1434add9 authored by Sigmanificient's avatar Sigmanificient
Browse files

nixosTests.{qtile,ragnarwm}: migrate to runTestOn

parent 9161971a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -959,7 +959,7 @@ in {
  qgis = handleTest ./qgis.nix { package = pkgs.qgis; };
  qgis-ltr = handleTest ./qgis.nix { package = pkgs.qgis-ltr; };
  qownnotes = handleTest ./qownnotes.nix {};
  qtile = handleTestOn ["x86_64-linux" "aarch64-linux"] ./qtile/default.nix {};
  qtile = runTestOn ["x86_64-linux" "aarch64-linux"] ./qtile/default.nix;
  quake3 = handleTest ./quake3.nix {};
  quicktun = handleTest ./quicktun.nix {};
  quickwit = handleTest ./quickwit.nix {};
@@ -968,7 +968,7 @@ in {
  radarr = handleTest ./radarr.nix {};
  radicale = handleTest ./radicale.nix {};
  radicle = runTest ./radicle.nix;
  ragnarwm = handleTest ./ragnarwm.nix {};
  ragnarwm = runTestOn ["x86_64-linux" "aarch64-linux"] ./ragnarwm.nix;
  rasdaemon = handleTest ./rasdaemon.nix {};
  rathole = handleTest ./rathole.nix {};
  readarr = handleTest ./readarr.nix {};
+49 −51
Original line number Diff line number Diff line
import ../make-test-python.nix (
{ lib, ... }:
{
  name = "qtile";
@@ -51,4 +50,3 @@ import ../make-test-python.nix (
        machine.screenshot("terminal")
  '';
}
)
+33 −35
Original line number Diff line number Diff line
import ./make-test-python.nix (
{ lib, ... }:
{
  name = "ragnarwm";
@@ -37,4 +36,3 @@ import ./make-test-python.nix (
        machine.screenshot("terminal")
  '';
}
)