Unverified Commit ce207587 authored by Piotr Kwiecinski's avatar Piotr Kwiecinski
Browse files

nixosTests.noto-fonts: migrate to runTest

Part of #386873
parent 7271b3a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -948,7 +948,7 @@ in
  nomad = runTest ./nomad.nix;
  non-default-filesystems = handleTest ./non-default-filesystems.nix { };
  non-switchable-system = runTest ./non-switchable-system.nix;
  noto-fonts = handleTest ./noto-fonts.nix { };
  noto-fonts = runTest ./noto-fonts.nix;
  noto-fonts-cjk-qt-default-weight = handleTest ./noto-fonts-cjk-qt-default-weight.nix { };
  novacomd = handleTestOn [ "x86_64-linux" ] ./novacomd.nix { };
  npmrc = handleTest ./npmrc.nix { };
+29 −29
Original line number Diff line number Diff line
import ./make-test-python.nix (
  { pkgs, lib, ... }:
{ lib, ... }:
{
  name = "noto-fonts";
  meta.maintainers = with lib.maintainers; [
@@ -7,7 +6,9 @@ import ./make-test-python.nix (
    midchildan
  ];

    nodes.machine = {
  nodes.machine =
    { pkgs, ... }:
    {
      imports = [ ./common/x11.nix ];
      environment.systemPackages = [ pkgs.gedit ];
      fonts = {
@@ -56,4 +57,3 @@ import ./make-test-python.nix (
      machine.screenshot("screen")
    '';
}
)