nixosTests.bluesky-pds: rename from nixosTests.pds

Changed files
+3 -3
nixos
+1 -1
nixos/tests/all-tests.nix
···
blint = runTest ./blint.nix;
blockbook-frontend = runTest ./blockbook-frontend.nix;
blocky = runTest ./blocky.nix;
bookstack = runTest ./bookstack.nix;
boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { };
bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { };
···
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 { };
···
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 { };
···
parsedmarc = handleTest ./parsedmarc { };
password-option-override-ordering = runTest ./password-option-override-ordering.nix;
pdns-recursor = runTest ./pdns-recursor.nix;
peerflix = runTest ./peerflix.nix;
peering-manager = runTest ./web-apps/peering-manager.nix;
peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { };
+2 -2
nixos/tests/pds.nix nixos/tests/bluesky-pds.nix
···
name = "PDS";
nodes.machine = {
-
services.pds = {
enable = true;
settings = {
PDS_PORT = 3000;
···
};
testScript = ''
-
machine.wait_for_unit("pds.service")
machine.wait_for_open_port(3000)
machine.succeed("curl --fail http://localhost:3000")
'';
···
name = "PDS";
nodes.machine = {
+
services.bluesky-pds = {
enable = true;
settings = {
PDS_PORT = 3000;
···
};
testScript = ''
+
machine.wait_for_unit("bluesky-pds.service")
machine.wait_for_open_port(3000)
machine.succeed("curl --fail http://localhost:3000")
'';