mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
nixosTests.{qtile,ragnarwm}: migrate to runTestOn
This commit is contained in:
parent
9161971a37
commit
1434add94c
3 changed files with 80 additions and 84 deletions
|
@ -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 {};
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import ../make-test-python.nix (
|
||||
{ lib, ... }:
|
||||
{
|
||||
{ lib, ... }:
|
||||
{
|
||||
name = "qtile";
|
||||
|
||||
meta = {
|
||||
|
@ -50,5 +49,4 @@ import ../make-test-python.nix (
|
|||
machine.sleep(2)
|
||||
machine.screenshot("terminal")
|
||||
'';
|
||||
}
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import ./make-test-python.nix (
|
||||
{ lib, ... }:
|
||||
{
|
||||
{ lib, ... }:
|
||||
{
|
||||
name = "ragnarwm";
|
||||
|
||||
meta = {
|
||||
|
@ -36,5 +35,4 @@ import ./make-test-python.nix (
|
|||
machine.sleep(2)
|
||||
machine.screenshot("terminal")
|
||||
'';
|
||||
}
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue