diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index e8794f0cd502..2b16b4e8111c 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -276,6 +276,7 @@ in blint = runTest ./blint.nix; blockbook-frontend = runTest ./blockbook-frontend.nix; blocky = runTest ./blocky.nix; + bluesky-pds = runTest ./bluesky-pds.nix; bookstack = runTest ./bookstack.nix; boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { }; bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { }; @@ -1150,7 +1151,6 @@ in parsedmarc = handleTest ./parsedmarc { }; password-option-override-ordering = runTest ./password-option-override-ordering.nix; pdns-recursor = runTest ./pdns-recursor.nix; - pds = runTest ./pds.nix; peerflix = runTest ./peerflix.nix; peering-manager = runTest ./web-apps/peering-manager.nix; peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { }; diff --git a/nixos/tests/pds.nix b/nixos/tests/bluesky-pds.nix similarity index 89% rename from nixos/tests/pds.nix rename to nixos/tests/bluesky-pds.nix index a07a2c1fcf72..b74c74955f54 100644 --- a/nixos/tests/pds.nix +++ b/nixos/tests/bluesky-pds.nix @@ -3,7 +3,7 @@ name = "PDS"; nodes.machine = { - services.pds = { + services.bluesky-pds = { enable = true; settings = { PDS_PORT = 3000; @@ -18,7 +18,7 @@ }; testScript = '' - machine.wait_for_unit("pds.service") + machine.wait_for_unit("bluesky-pds.service") machine.wait_for_open_port(3000) machine.succeed("curl --fail http://localhost:3000") '';