Commit 743cd3df authored by Robert Hensing's avatar Robert Hensing
Browse files

nixosTests.pgadmin4: Use runTest

parent 082193ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -870,7 +870,7 @@ in {
  peering-manager = handleTest ./web-apps/peering-manager.nix {};
  peertube = handleTestOn ["x86_64-linux"] ./web-apps/peertube.nix {};
  peroxide = handleTest ./peroxide.nix {};
  pgadmin4 = handleTest ./pgadmin4.nix {};
  pgadmin4 = runTest ./pgadmin4.nix;
  pgbouncer = handleTest ./pgbouncer.nix {};
  pghero = runTest ./pghero.nix;
  pgweb = runTest ./pgweb.nix;
+72 −74
Original line number Diff line number Diff line
import ./make-test-python.nix (
  { pkgs, lib, ... }:
{ lib, ... }:

{
  name = "pgadmin4";
@@ -85,4 +84,3 @@ import ./make-test-python.nix (
      machine2.wait_for_console_text("Password must be at least 12 characters long")
  '';
}
)