tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
nixosTests.bluesky-pds: rename from nixosTests.pds
isabelroses.com
8 months ago
06ec782d
ddd7db50
+3
-3
2 changed files
expand all
collapse all
unified
split
nixos
tests
all-tests.nix
bluesky-pds.nix
+1
-1
nixos/tests/all-tests.nix
reviewed
···
276
276
blint = runTest ./blint.nix;
277
277
blockbook-frontend = runTest ./blockbook-frontend.nix;
278
278
blocky = runTest ./blocky.nix;
279
279
+
bluesky-pds = runTest ./bluesky-pds.nix;
279
280
bookstack = runTest ./bookstack.nix;
280
281
boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { };
281
282
bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { };
···
1151
1150
parsedmarc = handleTest ./parsedmarc { };
1152
1151
password-option-override-ordering = runTest ./password-option-override-ordering.nix;
1153
1152
pdns-recursor = runTest ./pdns-recursor.nix;
1154
1154
-
pds = runTest ./pds.nix;
1155
1153
peerflix = runTest ./peerflix.nix;
1156
1154
peering-manager = runTest ./web-apps/peering-manager.nix;
1157
1155
peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { };
+2
-2
nixos/tests/pds.nix
nixos/tests/bluesky-pds.nix
reviewed
···
3
3
name = "PDS";
4
4
5
5
nodes.machine = {
6
6
-
services.pds = {
6
6
+
services.bluesky-pds = {
7
7
enable = true;
8
8
settings = {
9
9
PDS_PORT = 3000;
···
18
18
};
19
19
20
20
testScript = ''
21
21
-
machine.wait_for_unit("pds.service")
21
21
+
machine.wait_for_unit("bluesky-pds.service")
22
22
machine.wait_for_open_port(3000)
23
23
machine.succeed("curl --fail http://localhost:3000")
24
24
'';