Skip to content

Commit

Permalink
chore(integ): run all CDK integ tests with -v (aws#10503)
Browse files Browse the repository at this point in the history
Now that we suppress output of non-failing tests, it becomes
all the more important to have detailed information for failing tests.


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr authored Sep 24, 2020
1 parent b5303a4 commit c8e72e5
Show file tree
Hide file tree
Showing 3 changed files with 326 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Added a `-v` switch to the cdk executions that also needs to be
applied to the regression tesets so we have a better chance
of catching sporadically failing tests in the act.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/aws-cdk/test/integ/cli/cdk-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class TestFixture {
}

public async cdk(args: string[], options: CdkCliOptions = {}) {
return this.shell(['cdk', ...args], {
return this.shell(['cdk', '-v', ...args], {
...options,
modEnv: {
AWS_REGION: this.aws.region,
Expand Down

0 comments on commit c8e72e5

Please sign in to comment.