Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,9 @@ describe("PrimeAgentDaemonManager lifecycle", () => {
shutdownRejects: true,
shutdownDoesNotExit: true,
postKillExitHangs: true,
shutdownTimeout: Duration.millis(5),
// This timeout also covers real private-socket cleanup before the exit wait.
// Leave room for filesystem scheduling under parallel CI load.
shutdownTimeout: Duration.millis(250),
});
return closeFixtureLive(fixture).pipe(
Effect.andThen(
Expand Down
3 changes: 3 additions & 0 deletions apps/server/src/sourceControl/PrTemplateDetection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ const runWithTempDirectory = <A, E, R>(
const fileSystem = yield* FileSystem.FileSystem;
const cwd = yield* fileSystem.makeTempDirectoryScoped({ prefix: "t3-pr-template-" });
yield* runGit(cwd, ["init", "--initial-branch=main"]);
// Auto maintenance may still write object packs after the scoped fixture
// starts removing this temporary repository under parallel CI load.
yield* runGit(cwd, ["config", "gc.auto", "0"]);
yield* runGit(cwd, ["config", "user.email", "test@example.com"]);
yield* runGit(cwd, ["config", "user.name", "Test User"]);
return yield* test(cwd);
Expand Down
Loading