We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2119e8 commit 23947adCopy full SHA for 23947ad
1 file changed
e2e-tests/e2e-helper.ts
@@ -143,9 +143,10 @@ export function createE2ESuite(cfg: E2EConfig) {
143
}, 600000);
144
145
// Container builds go through CodeBuild which is slower and more prone to transient failures.
146
+ // Memory deployment time can be flaky and take at least 3-5 minutes.
147
const isContainerBuild = cfg.build === 'Container';
- const deployRetries = isContainerBuild ? 3 : 1;
148
- const deployTimeout = isContainerBuild ? 900000 : 600000;
+ const deployRetries = isContainerBuild || cfg.memory ? 3 : 1;
149
+ const deployTimeout = isContainerBuild || cfg.memory ? 900000 : 600000;
150
151
it.skipIf(!canRun)(
152
'deploys to AWS successfully',
0 commit comments