You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
increasing default handler timeout for cfn test (#554)
* increasing default handler timeout for cfn test
#486
* clarifying cfn test --enforce-timeout in README
Co-authored-by: Kevin DeJong <kddejong@amazon.com>
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -52,10 +52,10 @@ To run the contract tests for a resource type, use the `test` command.
52
52
53
53
```bash
54
54
cfn test
55
-
cfn test -- -k contract_delete_update #to run a single test
56
-
cfn test -- --tb=long #exhaustive, informative traceback formatting
57
-
cfn test --enforce-timeout 60 #set the RL handler timeout to 60 seconds and CUD handler timeout to 120 seconds.
58
-
cfn test --enforce-timeout 60 -- -k contract_delete_update # combine args
55
+
cfn test -- -k contract_delete_update #to run a single test
56
+
cfn test -- --tb=long #exhaustive, informative traceback formatting
57
+
cfn test --enforce-timeout 60 # Read/List handler timeout (Create/Update/Delete handler timeout is twice the Read/List handler timeout)
58
+
cfn test --enforce-timeout 60 -- -k contract_delete_update # combine arguments
59
59
cfn test --log-group-name cw_log_group --log-role-arn log_delivery_role_arn # Handler logs generated by contract tests will be delivered to the specified cw_log_group using the credentials from log_delivery_role_arn
0 commit comments