Unverified Commit 08dc9736 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

nixosTests.n8n: migrate to runTest (#394932)

parents e34066f0 090c2790
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -756,7 +756,7 @@ in {
  mysql-autobackup = handleTest ./mysql/mysql-autobackup.nix {};
  mysql-backup = handleTest ./mysql/mysql-backup.nix {};
  mysql-replication = handleTest ./mysql/mysql-replication.nix {};
  n8n = handleTest ./n8n.nix {};
  n8n = runTest ./n8n.nix;
  nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix {};
  nar-serve = handleTest ./nar-serve.nix {};
  nat.firewall = handleTest ./nat.nix { withFirewall = true; };
+25 −27
Original line number Diff line number Diff line
import ./make-test-python.nix (
{ lib, ... }:
let
  port = 5678;
@@ -27,4 +26,3 @@ import ./make-test-python.nix (
    machine.succeed("grep -qF ${webhookUrl} /etc/systemd/system/n8n.service")
  '';
}
)