nixosTests.bluesky-pds: rename from nixosTests.pds

This commit is contained in:
isabel
2025-08-19 00:16:09 +01:00
parent ddd7db501d
commit 06ec782dba
2 changed files with 3 additions and 3 deletions

View File

@@ -276,6 +276,7 @@ in
blint = runTest ./blint.nix; blint = runTest ./blint.nix;
blockbook-frontend = runTest ./blockbook-frontend.nix; blockbook-frontend = runTest ./blockbook-frontend.nix;
blocky = runTest ./blocky.nix; blocky = runTest ./blocky.nix;
bluesky-pds = runTest ./bluesky-pds.nix;
bookstack = runTest ./bookstack.nix; bookstack = runTest ./bookstack.nix;
boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { }; boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { };
bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { }; bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { };
@@ -1150,7 +1151,6 @@ in
parsedmarc = handleTest ./parsedmarc { }; parsedmarc = handleTest ./parsedmarc { };
password-option-override-ordering = runTest ./password-option-override-ordering.nix; password-option-override-ordering = runTest ./password-option-override-ordering.nix;
pdns-recursor = runTest ./pdns-recursor.nix; pdns-recursor = runTest ./pdns-recursor.nix;
pds = runTest ./pds.nix;
peerflix = runTest ./peerflix.nix; peerflix = runTest ./peerflix.nix;
peering-manager = runTest ./web-apps/peering-manager.nix; peering-manager = runTest ./web-apps/peering-manager.nix;
peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { }; peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { };

View File

@@ -3,7 +3,7 @@
name = "PDS"; name = "PDS";
nodes.machine = { nodes.machine = {
services.pds = { services.bluesky-pds = {
enable = true; enable = true;
settings = { settings = {
PDS_PORT = 3000; PDS_PORT = 3000;
@@ -18,7 +18,7 @@
}; };
testScript = '' testScript = ''
machine.wait_for_unit("pds.service") machine.wait_for_unit("bluesky-pds.service")
machine.wait_for_open_port(3000) machine.wait_for_open_port(3000)
machine.succeed("curl --fail http://localhost:3000") machine.succeed("curl --fail http://localhost:3000")
''; '';