Skip to content
Merged
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
5 changes: 3 additions & 2 deletions e2e-tests/e2e-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ export function createE2ESuite(cfg: E2EConfig) {
}, 600000);

// Container builds go through CodeBuild which is slower and more prone to transient failures.
// Memory deployment time can be flaky and take at least 3-5 minutes.
const isContainerBuild = cfg.build === 'Container';
const deployRetries = isContainerBuild ? 3 : 1;
const deployTimeout = isContainerBuild ? 900000 : 600000;
const deployRetries = isContainerBuild || cfg.memory ? 3 : 1;
const deployTimeout = isContainerBuild || cfg.memory ? 900000 : 600000;

it.skipIf(!canRun)(
'deploys to AWS successfully',
Expand Down
Loading