atproto utils for zig zat.dev
atproto sdk zig

fix: remove pfrazee.com stress test from default test suite

192k records is too slow for CI. kept as a commented-out stress test
for local use.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+15 -14
+15 -14
src/internal/repo/repo_verifier.zig
··· 234 234 std.debug.print("verified zzstoatzz.io: {d} records, rev={s}\n", .{ result.record_count, result.commit_rev }); 235 235 } 236 236 237 - test "verify repo - pfrazee.com" { 238 - // did:plc:ragtjsm2j2vknwkz3zp4oxrd on bsky.network (bluesky-hosted PDS) 239 - var arena = std.heap.ArenaAllocator.init(std.testing.allocator); 240 - defer arena.deinit(); 241 - 242 - const result = verifyRepo(arena.allocator(), "pfrazee.com") catch |err| { 243 - std.debug.print("network error (expected in CI): {}\n", .{err}); 244 - return; 245 - }; 246 - 247 - try std.testing.expectEqualStrings("did:plc:ragtjsm2j2vknwkz3zp4oxrd", result.did); 248 - try std.testing.expect(result.record_count > 0); 249 - std.debug.print("verified pfrazee.com: {d} records, rev={s}\n", .{ result.record_count, result.commit_rev }); 250 - } 237 + // stress test: pfrazee.com (~192k records on bsky.network) 238 + // run manually with: zig test src/internal/repo/repo_verifier.zig -- 239 + // not included in `zig build test` — too slow for CI 240 + // 241 + // test "verify repo - pfrazee.com (stress)" { 242 + // var arena = std.heap.ArenaAllocator.init(std.testing.allocator); 243 + // defer arena.deinit(); 244 + // const result = verifyRepo(arena.allocator(), "pfrazee.com") catch |err| { 245 + // std.debug.print("network error: {}\n", .{err}); 246 + // return; 247 + // }; 248 + // try std.testing.expectEqualStrings("did:plc:ragtjsm2j2vknwkz3zp4oxrd", result.did); 249 + // try std.testing.expect(result.record_count > 0); 250 + // std.debug.print("verified pfrazee.com: {d} records, rev={s}\n", .{ result.record_count, result.commit_rev }); 251 + // }