mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +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 = handleTest ./qgis.nix { package = pkgs.qgis; };
|
||||||
qgis-ltr = handleTest ./qgis.nix { package = pkgs.qgis-ltr; };
|
qgis-ltr = handleTest ./qgis.nix { package = pkgs.qgis-ltr; };
|
||||||
qownnotes = handleTest ./qownnotes.nix {};
|
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 {};
|
quake3 = handleTest ./quake3.nix {};
|
||||||
quicktun = handleTest ./quicktun.nix {};
|
quicktun = handleTest ./quicktun.nix {};
|
||||||
quickwit = handleTest ./quickwit.nix {};
|
quickwit = handleTest ./quickwit.nix {};
|
||||||
|
@ -968,7 +968,7 @@ in {
|
||||||
radarr = handleTest ./radarr.nix {};
|
radarr = handleTest ./radarr.nix {};
|
||||||
radicale = handleTest ./radicale.nix {};
|
radicale = handleTest ./radicale.nix {};
|
||||||
radicle = runTest ./radicle.nix;
|
radicle = runTest ./radicle.nix;
|
||||||
ragnarwm = handleTest ./ragnarwm.nix {};
|
ragnarwm = runTestOn ["x86_64-linux" "aarch64-linux"] ./ragnarwm.nix;
|
||||||
rasdaemon = handleTest ./rasdaemon.nix {};
|
rasdaemon = handleTest ./rasdaemon.nix {};
|
||||||
rathole = handleTest ./rathole.nix {};
|
rathole = handleTest ./rathole.nix {};
|
||||||
readarr = handleTest ./readarr.nix {};
|
readarr = handleTest ./readarr.nix {};
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import ../make-test-python.nix (
|
{ lib, ... }:
|
||||||
{ lib, ... }:
|
{
|
||||||
{
|
|
||||||
name = "qtile";
|
name = "qtile";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -50,5 +49,4 @@ import ../make-test-python.nix (
|
||||||
machine.sleep(2)
|
machine.sleep(2)
|
||||||
machine.screenshot("terminal")
|
machine.screenshot("terminal")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import ./make-test-python.nix (
|
{ lib, ... }:
|
||||||
{ lib, ... }:
|
{
|
||||||
{
|
|
||||||
name = "ragnarwm";
|
name = "ragnarwm";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -36,5 +35,4 @@ import ./make-test-python.nix (
|
||||||
machine.sleep(2)
|
machine.sleep(2)
|
||||||
machine.screenshot("terminal")
|
machine.screenshot("terminal")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue