Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.
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
2 changes: 1 addition & 1 deletion packages/@aws-cdk-testing/cli-integ/lib/with-aws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function withAws<A extends TestContext>(
return async (context: A) => {
if (atmosphereEnabled()) {
const atmosphere = new AtmosphereClient(atmosphereEndpoint());
const allocation = await atmosphere.acquire({ pool: atmospherePool(), requester: context.name });
const allocation = await atmosphere.acquire({ pool: atmospherePool(), requester: context.name, timeoutSeconds: 60 * 30 });
const aws = await AwsClients.forIdentity(allocation.environment.region, {
accessKeyId: allocation.credentials.accessKeyId,
secretAccessKey: allocation.credentials.secretAccessKey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withExtendedTimeoutFixture } from "../../../lib";

const language = 'csharp';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate --from-stack creates deployable ${language} app`,
withExtendedTimeoutFixture(async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { integTest, withExtendedTimeoutFixture } from "../../../lib";

const language = 'java';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime


integTest(
`cdk migrate --from-stack creates deployable ${language} app`,
withExtendedTimeoutFixture(async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withExtendedTimeoutFixture } from "../../../lib";

const language = 'python';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate --from-stack creates deployable ${language} app`,
withExtendedTimeoutFixture(async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withExtendedTimeoutFixture } from "../../../lib";

const language = 'typescript';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate --from-stack creates deployable ${language} app`,
withExtendedTimeoutFixture(async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withCDKMigrateFixture } from "../../../lib";

const language = 'csharp';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate ${language} deploys successfully`,
withCDKMigrateFixture(language, async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withCDKMigrateFixture } from "../../../lib";

const language = 'java';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate ${language} deploys successfully`,
withCDKMigrateFixture(language, async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withCDKMigrateFixture } from "../../../lib";

const language = 'python';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate ${language} deploys successfully`,
withCDKMigrateFixture(language, async (fixture) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { integTest, withCDKMigrateFixture } from "../../../lib";

const language = 'typescript';

jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime

integTest(
`cdk migrate ${language} deploys successfully`,
withCDKMigrateFixture(language, async (fixture) => {
Expand Down