Skip to content

Commit 99fd8a1

Browse files
authored
chore(cli-integ): run telemetry integ tests separately (#962)
this is done to avoid IP address throttling. in #775, these tests are modified to explicitly check if telemetry is sent successfully, so we must make sure that they are not throttled. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
1 parent 94cce1e commit 99fd8a1

File tree

5 files changed

+282
-96
lines changed

5 files changed

+282
-96
lines changed

.github/workflows/integ.yml

Lines changed: 91 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/deploy/cdk-deploy-telemetry.integtest.ts renamed to packages/@aws-cdk-testing/cli-integ/tests/telemetry-integ-tests/cdk-deploy-telemetry.integtest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as path from 'path';
22
import * as fs from 'fs-extra';
3-
import { integTest, withDefaultFixture } from '../../../lib';
3+
import { integTest, withDefaultFixture } from '../../lib';
44

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

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/synth/cdk-synth-telemetry-with-errors.integtest.ts renamed to packages/@aws-cdk-testing/cli-integ/tests/telemetry-integ-tests/cdk-synth-telemetry-with-errors.integtest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as path from 'path';
22
import * as fs from 'fs-extra';
3-
import { integTest, withDefaultFixture } from '../../../lib';
3+
import { integTest, withDefaultFixture } from '../../lib';
44

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

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/synth/cdk-synth-telemetry.integtest.ts renamed to packages/@aws-cdk-testing/cli-integ/tests/telemetry-integ-tests/cdk-synth-telemetry.integtest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as path from 'path';
22
import * as fs from 'fs-extra';
3-
import { integTest, withDefaultFixture } from '../../../lib';
3+
import { integTest, withDefaultFixture } from '../../lib';
44

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

0 commit comments

Comments
 (0)