forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.test_durations
2150 lines (2150 loc) · 272 KB
/
.test_durations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/aws/scenario/reference/test_lambda_scenario.py::TestBasicLambda::test_scenario_validate_infra": 2.9452711329997783,
"tests/aws/scenario/reference/test_lambda_scenario.py::TestBasicLambdaInS3::test_scenario_validate_infra": 3.01210771700039,
"tests/aws/scenario/reference/test_s3_cleanup.py::TestS3CleanupScenario::test_scenario_validate_infra": 1.4403234839999186,
"tests/aws/scenario/test_apigateway_scenario.py::TestApigatewayLambdaIntegrationScenario::test_scenario_validate_infra": 5.2552084339999965,
"tests/aws/scenario/test_ecs_scenario.py::TestEcsScenario::test_scenario_call_service": 0.0007761130000289995,
"tests/aws/scenario/test_ecs_scenario.py::TestEcsScenario::test_scenario_validate_infra": 0.001073818999998366,
"tests/aws/scenario/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns": 5.130692522000004,
"tests/aws/scenario/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra": 3.432292427999869,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table": 18.10304303600003,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED]": 4.419216917000085,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input1-SUCCEEDED]": 2.327644861000067,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input2-FAILED]": 2.324511502000064,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input3-FAILED]": 0.2755351769999379,
"tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]": 23.278776194999978,
"tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_another_scenario": 1.8476102649999575,
"tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api": 14.547484846000202,
"tests/aws/services/acm/test_acm.py::TestACM::test_boto_wait_for_certificate_validation": 1.2496409010000207,
"tests/aws/services/acm/test_acm.py::TestACM::test_certificate_for_subdomain_wildcard": 2.281493332999844,
"tests/aws/services/acm/test_acm.py::TestACM::test_domain_validation": 0.13359757299986086,
"tests/aws/services/acm/test_acm.py::TestACM::test_import_certificate": 0.10852032899992992,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_authorizer_crud_no_api": 0.017839015999925323,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_proxy_resource": 0.09292995099986001,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_proxy_resource_validation": 0.06349232799971105,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_resource_parent_invalid": 0.024362833999930444,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_rest_api_with_custom_id_tag": 0.0164405920002082,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_rest_api_with_optional_params": 0.05727091800008566,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_rest_api_with_tags": 0.03283188299997164,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_delete_resource": 0.055564686999559854,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_doc_arts_crud_no_api": 0.01896513699989555,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_get_api_case_insensitive": 0.02727518400001827,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_invoke_test_method": 0.19699409999998352,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_list_and_delete_apis": 0.05293283999958476,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_method_lifecycle": 0.0599874639999598,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_method_request_parameters": 0.04571901200006323,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_model_lifecycle": 0.051385814000241226,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_model_validation": 0.08115424200013877,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_put_method_model": 0.21398750299999847,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_put_method_validation": 0.07289629599995351,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_resource_lifecycle": 0.07946371200000613,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_method": 0.06820091200006573,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_method_validation": 0.11371022000002995,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_model": 0.06057377600018299,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_resource_behaviour": 0.11856860699981553,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_rest_api_behaviour": 0.04213464899999053,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_rest_api_compression": 0.05709281399981592,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_rest_api_invalid_api_id": 0.009617071000093347,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_rest_api_operation_add_remove": 0.0453762059996734,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_validators_crud_no_api": 0.01844572799996058,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_documentation_part_lifecycle": 0.06604337300018415,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_import_documentation_parts": 0.12232187299991892,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_create_documentation_part_operations": 0.03328839000005246,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_delete_documentation_part": 0.04727534100015873,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_get_documentation_part": 0.0393335990002015,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_get_documentation_parts": 0.010668790000181616,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_update_documentation_part": 0.04955628000038814,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_create_request_validator_invalid_api_id": 0.010407885000404349,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_delete_request_validator": 0.038282379999827754,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_get_request_validator": 0.0360507409998263,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_get_request_validators": 0.00986487499994837,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_update_request_validator_operations": 0.05135371199980909,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_request_validator_lifecycle": 0.08636813499992968,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_account": 0.04102012699968327,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_authorizer_crud": 0.01254242299978614,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_handle_domain_name": 0.12585553199983224,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_http_integration_with_path_request_parameter": 0.17931487400005608,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation": 1.4402403239998876,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration": 1.7653641709998737,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration_aws_type": 3.331328703000054,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration": 2.20605153099973,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method": 2.302385505999837,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method_with_path_param": 2.370957167999677,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded": 2.1843806090000726,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_path_param": 2.1981000530001893,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_mock_integration": 0.08609162699985973,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_update_resource_path_part": 0.051855017999741904,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_mock_integration_response_params": 0.06684748399993623,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_custom_authorization_method": 1.2867374040001778,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]": 1.4285054880001553,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[StartExecution]": 1.375558060999765,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[dev]": 1.8871530029998667,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[local]": 1.9688015509998422,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_test_invoke_method_api": 1.8148128269999688,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_base_path_mapping": 0.1326458510000066,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_base_path_mapping_root": 0.1092739379998875,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_create_rest_api_with_custom_id[host_based_url]": 0.07043645099975038,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_create_rest_api_with_custom_id[path_based_url]": 0.06030007099980139,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_delete_rest_api_with_invalid_id": 0.008481350000238308,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]": 0.07580905099985102,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]": 0.14216403499995067,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]": 0.20054907600024308,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]": 0.15805921899982422,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]": 0.07295160000012402,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]": 0.08347618900006637,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]": 0.06763440600002468,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]": 0.0707036619999144,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_malformed_response_apigw_invocation": 1.9165373650000674,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate": 0.5042585369999415,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template": 0.21093323800027974,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template": 0.11859770200021558,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw": 1.863040478999892,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_update_rest_api_deployment": 0.07522203600001376,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_http_integrations[custom]": 0.21988859300017793,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_http_integrations[proxy]": 0.21544621400016695,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_kinesis_integration": 2.414865897999789,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_s3_get_integration": 0.555840942000259,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_sqs_integration_with_event_source": 1.3887880849999874,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-host_based_url-GET]": 0.08907017599995015,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-host_based_url-POST]": 0.08851906699987921,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-path_based_url-GET]": 0.07944450600007258,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-path_based_url-POST]": 0.07924130200012769,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-host_based_url-GET]": 0.08828656399987267,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-host_based_url-POST]": 0.09703781700000036,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-path_based_url-GET]": 0.08164274599971577,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-path_based_url-POST]": 0.07889389799970559,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-host_based_url-GET]": 0.0931594479998239,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-host_based_url-POST]": 0.09147781899991969,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-path_based_url-GET]": 0.07767097399982958,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-path_based_url-POST]": 0.08091073299988238,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestTagging::test_tag_api": 0.07977161300004809,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_apigateway_rust_lambda": 0.001373123999883319,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_apigw_call_api_with_aws_endpoint_url": 0.04600811399996019,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-ANY]": 2.9305903829999806,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-GET]": 2.914682302000074,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-ANY]": 2.907596865999949,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-GET]": 2.787667143000135,
"tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_api_gateway_request_validator": 2.2786516670000765,
"tests/aws/services/apigateway/test_apigateway_common.py::TestDocumentations::test_documentation_parts_and_versions": 0.09149233299967818,
"tests/aws/services/apigateway/test_apigateway_common.py::TestStages::test_create_update_stages": 0.2191456109999308,
"tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_api_key_required_for_methods": 0.45710815899997215,
"tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_usage_plan_crud": 0.11036867000007078,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_error_aws_proxy_not_supported": 0.13019133300031172,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem]": 0.6555868999998893,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query]": 0.6953014369998982,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan]": 0.5580668980001064,
"tests/aws/services/apigateway/test_apigateway_eventbridge.py::test_apigateway_to_eventbridge": 0.20644359700008863,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_create_domain_names": 0.02463554199994178,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi": 0.05029930199998489,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi": 0.051547723999874506,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_api_keys": 0.11599367700000585,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_name": 0.023380917999929807,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_names": 0.024091533000046184,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[openapi.spec.tf.json]": 0.25560787999961576,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[swagger-mock-cors.json]": 0.3180914990000474,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api": 0.043918287000224154,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[ignore]": 5.660292969999773,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[prepend]": 0.6988598520001688,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[split]": 0.560187120999899,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[ignore]": 0.39466027000003123,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[prepend]": 0.38354787200023566,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[split]": 0.38741664100007256,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_swagger_api": 0.5293578839998645,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models": 0.2180933249996997,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models_and_request_validation": 0.32891926800016336,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_global_api_key_authorizer": 0.20628411700045035,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_stage_variables": 0.09443045499983782,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint": 16.917246885000168,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_http_integration": 0.08246474600014153,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_http_integration_status_code_selection": 0.1473919850002403,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_response_with_response_template": 0.056698794000112684,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_responses": 0.34178009200036286,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_validation": 0.2209409729998697,
"tests/aws/services/apigateway/test_apigateway_kinesis.py::test_apigateway_to_kinesis": 1.0948660990000008,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration": 1.9274781010001334,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_with_request_template": 1.964042481999968,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration": 5.689501133000022,
"tests/aws/services/apigateway/test_apigateway_sqs.py::test_api_gateway_sqs_integration": 0.3762861239999893,
"tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration": 0.32009652000033384,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_api_exceptions": 0.0008619149998594366,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_create_exceptions": 0.0007540130000052159,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_create_invalid_desiredstate": 0.0008443149999948218,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_double_create_with_client_token": 0.0008516160000908712,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_lifecycle": 0.0010463190001246403,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_list_resources": 0.000838414999861925,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_list_resources_with_resource_model": 0.000863015000049927,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_update": 0.0008602160000918957,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_edge_cases[FAIL]": 0.0008465149999210553,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_edge_cases[SUCCESS]": 0.0010789190000650706,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_request": 0.0008352140000624786,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_get_request_status": 0.0007536140001320746,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_invalid_request_token_exc": 0.0008339159999195545,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_list_request_status": 0.0008487150000746624,
"tests/aws/services/cloudformation/api/test_changesets.py::test_autoexpand_capability_requirement": 0.033557589999873016,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_remove_non_supported_resource_change_set": 2.297757150000052,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_remove_supported_resource_change_set": 2.2496655400000236,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_update_refreshes_template_metadata": 1.1507928100002118,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_create_existing": 1.063788005999868,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_import": 0.0008479159998842078,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_invalid_params": 0.009576476000120238,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_missing_stackname": 0.0020014379999793164,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_update_nonexisting": 0.010618296000075134,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_update_without_parameters": 1.1207721849998507,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_with_ssm_parameter": 1.1361667409998972,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_with_template_url": 0.000886216000026252,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_without_parameters": 0.05068488400002025,
"tests/aws/services/cloudformation/api/test_changesets.py::test_delete_change_set_exception": 0.014229062000140402,
"tests/aws/services/cloudformation/api/test_changesets.py::test_deleted_changeset": 0.03860427700010405,
"tests/aws/services/cloudformation/api/test_changesets.py::test_describe_change_set_nonexisting": 0.010334689999581315,
"tests/aws/services/cloudformation/api/test_changesets.py::test_empty_changeset": 0.22237130499979685,
"tests/aws/services/cloudformation/api/test_changesets.py::test_execute_change_set": 0.0008467159998417628,
"tests/aws/services/cloudformation/api/test_drift_detection.py::test_drift_detection_on_lambda": 0.0008097129998532182,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_crud_extension[HOOK-LocalStack::Testing::TestHook-hooks/localstack-testing-testhook.zip]": 0.00211533599986069,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_crud_extension[MODULE-LocalStack::Testing::TestModule::MODULE-modules/localstack-testing-testmodule-module.zip]": 0.0007595140002649714,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_crud_extension[RESOURCE-LocalStack::Testing::TestResource-resourcetypes/localstack-testing-testresource.zip]": 0.000774014000171519,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_not_complete": 0.0007606130000112898,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_type_configuration": 0.0007609140000113257,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_versioning": 0.0008126139998694271,
"tests/aws/services/cloudformation/api/test_extensions_hooks.py::TestExtensionsHooks::test_hook_deployment[FAIL]": 0.0007620129999850178,
"tests/aws/services/cloudformation/api/test_extensions_hooks.py::TestExtensionsHooks::test_hook_deployment[WARN]": 0.0007578130000638339,
"tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage": 0.0007726150001872156,
"tests/aws/services/cloudformation/api/test_extensions_resourcetypes.py::TestExtensionsResourceTypes::test_deploy_resource_type": 0.0007598129998314107,
"tests/aws/services/cloudformation/api/test_get_template_summary.py::test_get_template_summary": 1.1569098149998354,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_lifecycle_nested_stack": 0.0008308150001994363,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_output_in_params": 63.67801959700023,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack": 31.23214618499992,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack_output_refs": 31.215363276999824,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_with_nested_stack": 0.0009852169998794125,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicArn]": 1.095848260999901,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicName]": 1.1145496920000824,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_sub_resolving": 1.0979534989999138,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_create_stack_with_policy": 0.0007603130000006786,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_different_action_attribute": 0.00102801800017005,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_different_principal_attribute": 0.000761214000021937,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_empty_policy": 0.0007893140000305721,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_not_json_policy": 0.0007981140001902531,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_policy_during_update": 0.0007597129999794561,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_policy_lifecycle": 0.0009470170000440703,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_deletion[resource0]": 0.0007748150001134491,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_deletion[resource1]": 0.0007920139998986997,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_modifying_with_policy_specifying_resource_id": 0.0007645129999218625,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_replacement": 0.000797314000010374,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_update[AWS::S3::Bucket]": 0.0007679130001179146,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_update[AWS::SNS::Topic]": 0.00080101399976229,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_empty_policy_with_url": 0.0007740139999441453,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_invalid_policy_with_url": 0.0007779140003094653,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_both_policy_and_url": 0.0010248180001326546,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_with_update_operation": 0.0007993149999947491,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_with_url": 0.0008149150000917871,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_empty_policy": 0.0008019149997835484,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_overlapping_policies[False]": 0.0007719140000972402,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_overlapping_policies[True]": 0.0008005139998203958,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_policy": 0.0007624150000538066,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_creation[False-0]": 0.0010403190001397888,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_creation[True-1]": 0.0008280150002519804,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_update[False-2]": 0.0007530130001214275,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_update[True-1]": 0.0007582130001537735,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]": 1.1096276100001887,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[yaml]": 1.107472770999948,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_events_after_deployment": 1.1548514409998916,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_stack_resources_for_removed_resource": 2.204796962999808,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_description_special_chars": 1.1127668609999546,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_lifecycle": 2.2090194290001364,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_name_creation": 1.092575103000172,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_update_resources": 2.3533243880001464,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_actual_update": 2.2038887080002496,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_with_same_template_withoutchange": 1.099592335999887,
"tests/aws/services/cloudformation/api/test_stacks.py::test_events_resource_types": 1.125850034999985,
"tests/aws/services/cloudformation/api/test_stacks.py::test_linting_error_during_creation": 0.0007537130002219783,
"tests/aws/services/cloudformation/api/test_stacks.py::test_list_parameter_type": 1.1018031099999916,
"tests/aws/services/cloudformation/api/test_stacks.py::test_notifications": 0.000773913999864817,
"tests/aws/services/cloudformation/api/test_stacks.py::test_prevent_resource_deletion": 0.0007445139999617822,
"tests/aws/services/cloudformation/api/test_stacks.py::test_prevent_stack_update": 0.0007677139997213089,
"tests/aws/services/cloudformation/api/test_stacks.py::test_update_termination_protection": 1.1193741130002763,
"tests/aws/services/cloudformation/api/test_stacks.py::test_updating_an_updated_stack_sets_status": 3.3809933439999895,
"tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources": 1.795774996999853,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_basic_update": 31.17460063999988,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_no_parameters_update": 1.1690909190001548,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_no_template_error": 10.810758974999771,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_set_notification_arn_with_update": 1.1806102259999989,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_tags": 1.1491003049998199,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_using_template_url": 1.4331499569998414,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_capabilities[capability0]": 1.148624753999684,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_capabilities[capability1]": 1.2046713539998564,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_invalid_rollback_configuration_errors": 17.67327690800016,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_previous_parameter_value": 31.175034436999795,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_previous_template": 13.48819780599979,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_resource_types": 1.2047855570001502,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_role_without_permissions": 7.79450001400005,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_rollback_configuration": 31.304115981999985,
"tests/aws/services/cloudformation/engine/test_attributes.py::TestResourceAttributes::test_invalid_getatt_fails": 0.0009751170000527054,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]": 1.0838387859998875,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[production-us-east-1]": 1.1012607960003606,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[None-FallbackParamValue]": 1.125934161000032,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[false-DefaultParamValue]": 1.118267195999806,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[true-FallbackParamValue]": 1.1377060419997633,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref": 0.0009502170000814658,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref_intrinsic_fn_condition": 0.0008083139998689148,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref_with_macro": 0.0008020129998840275,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[prod-bucket-policy]": 0.000776912999981505,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[prod-nobucket-nopolicy]": 0.0008140140000705287,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[test-bucket-nopolicy]": 0.0007757140001558582,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[test-nobucket-nopolicy]": 0.0008180150000498543,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_output_reference_to_skipped_resource": 0.000798415000190289,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_condition_evaluation_deploys_resource": 1.1194032710000101,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_condition_evaluation_doesnt_deploy_resource": 0.06785360499975468,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[nope]": 1.0938899170000695,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[yep]": 1.0931809050005086,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_sub_in_conditions": 1.1169183729998622,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_maximum_nesting_depth": 0.000750712999888492,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_minimum_nesting_depth": 0.0007687150000492693,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_with_invalid_refs": 0.0007653140000911662,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_with_nonexisting_key": 0.0009026160000757955,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_simple_mapping_working": 1.1300783070000762,
"tests/aws/services/cloudformation/engine/test_references.py::TestDependsOn::test_depends_on_with_missing_reference": 0.0009239169999091246,
"tests/aws/services/cloudformation/engine/test_references.py::TestFnSub::test_fn_sub_cases": 1.1097060579998015,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values": 1.178204548000167,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box": 3.324682812999754,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt": 3.35218367199991,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestUpdates::test_update_without_replacement": 0.001105520000010074,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Arn]": 0.0007458140000835556,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Id]": 0.0007720129999597702,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Path]": 0.0007808139998815022,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[PermissionsBoundary]": 0.0007797129999289609,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[UserName]": 0.000755013000116378,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties": 3.3541413519999423,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_delete_role_detaches_role_policy": 2.2985808680000446,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key": 0.0010251179996885185,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname": 1.1543222720001722,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource": 2.367043685999988,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments": 1.2600025490000917,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy": 3.574817734000135,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[Arn]": 0.0007922140000573563,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainArn]": 0.0007620129997576441,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainEndpoint]": 0.0007940149998830748,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainName]": 0.0011613209999268292,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[EngineVersion]": 0.0008247150001352566,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[Id]": 0.0007655130000330246,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter.py::TestBasicCRD::test_black_box": 0.0007963139998992119,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter.py::TestUpdates::test_update_without_replacement": 0.0008124139999381441,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[AllowedPattern]": 0.0007943139999042614,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[DataType]": 0.0007757139999284846,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Description]": 0.0008025150002595183,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Id]": 0.0007924139999886393,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Name]": 0.0007681130000491976,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Policies]": 0.0007711129999279365,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Tier]": 0.0007683139999699051,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Type]": 0.0007745140001134132,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Value]": 0.0007927139999992505,
"tests/aws/services/cloudformation/resources/test_acm.py::test_cfn_acm_certificate": 1.1094070020001254,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_account": 3.171345672000143,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict": 1.1367890099998021,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration": 1.2741453690000526,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_rest_api": 5.228630564999776,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import": 1.3563201599999957,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger": 1.277123185000164,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration": 1.1522008719998666,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models": 1.2729420869998194,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources": 3.2641398619998654,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving": 4.6738973149999765,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan": 2.2549970869999925,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output": 1.1543799930000205,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]": 4.696641258999989,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]": 3.5597494580001694,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]": 4.552661594000028,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy": 9.780584011999963,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template": 15.403326836000133,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkSampleApp::test_cdk_sample": 1.3083335400001488,
"tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro": 2.196890362999966,
"tests/aws/services/cloudformation/resources/test_cloudformation.py::test_waitcondition": 1.1472490169996945,
"tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_alarm_creation": 1.1053782580002007,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]": 2.3616457940001965,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]": 2.3689244910001435,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table": 1.319138768999892,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table": 4.264192558999866,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table": 2.154418091000025,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations": 1.1909849280000344,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables": 1.1709019699999317,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr": 1.185792920999802,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg": 1.3648022259997106,
"tests/aws/services/cloudformation/resources/test_elasticsearch.py::test_cfn_handle_elasticsearch_domain": 1.2581725740001275,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource": 3.144755292000127,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule": 3.1736472439999943,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name": 3.2017683990000023,
"tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target": 1.10042578100024,
"tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs": 1.239301039000111,
"tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies": 2.224066971999946,
"tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement": 1.0905706070000178,
"tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source": 31.41484559100013,
"tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda": 4.99421294900003,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources": 17.383124983000016,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_default_parameters_kinesis": 15.192870474000074,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_describe_template": 0.10973752799986869,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf": 15.174737772999833,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation": 15.26106066400007,
"tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources": 3.1398305069999424,
"tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms": 3.1495871189997615,
"tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled": 1.0974436950000381,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaDestinations::test_generic_destination_routing[sqs-sqs]": 0.0012304209999456361,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source": 8.4207180410001,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source": 21.35653020199993,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions": 4.620795347999774,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source": 11.122290860999783,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url": 4.290971348000085,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config": 3.2274884980004117,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias": 3.3155443600001036,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run": 3.700405282000247,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_code_signing_config": 1.197860128000002,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version": 3.800685057999999,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_vpc": 0.0010810189999119757,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter": 0.000972917000126472,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn": 3.2095515519999935,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3": 3.7677087619997565,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_update_lambda_permissions": 6.352876269000035,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_conditional_deployment": 1.1407610519997888,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource": 3.1563289279999935,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name": 3.1673465480000687,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_log_group_resource": 3.1565403009997226,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_s3_notification_configuration[False-us-east-1]": 3.166447866999988,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_s3_notification_configuration[True-eu-west-1]": 3.204160098999864,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource": 3.2377074269998047,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub": 15.329121790000045,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_update_ec2_instance_type": 0.0014394250001714681,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports": 5.308543506999968,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table": 3.1987864269997317,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_deploy_stack_with_sub_select_and_sub_getaz": 1.3783949579999444,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name": 3.2093128120000074,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_resolve_transitive_placeholders_in_strings": 1.1092809710003166,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name": 4.552672160999919,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_update_conditions": 31.327106988000196,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_update_lambda_function": 6.342472909999742,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_updating_stack_with_iam_role": 4.284206970000469,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_validate_invalid_json_template_should_fail": 0.04532416199981526,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_validate_template": 0.012799315000165734,
"tests/aws/services/cloudformation/resources/test_logs.py::test_logstream": 1.1179669239995746,
"tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain": 1.2136521130000801,
"tests/aws/services/cloudformation/resources/test_redshift.py::test_redshift_cluster": 1.0973078600000008,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_id": 1.135149027999887,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_name": 1.1315090699999928,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_without_resource_record": 1.1163589299994783,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_autoname": 1.131640698999945,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_versioning": 1.1519073579997894,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucketpolicy": 2.228637585999877,
"tests/aws/services/cloudformation/resources/test_s3.py::test_cors_configuration": 1.4000078310004938,
"tests/aws/services/cloudformation/resources/test_s3.py::test_website_configuration": 1.4119616540001516,
"tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies": 3.3045073500002218,
"tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template": 3.7628421429999435,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_handle_secretsmanager_secret": 1.1265714029996161,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy": 1.1153294050000113,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secretsmanager_gen_secret": 1.1871347710002738,
"tests/aws/services/cloudformation/resources/test_sns.py::test_deploy_stack_with_sns_topic": 3.122880191000604,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_subscription": 1.1214217140000073,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_with_deduplication": 1.109485000999939,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_without_suffix_fails": 1.106161241999871,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_cfn_handle_sqs_resource": 3.1486115169996083,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name": 1.1154828190001354,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_non_fifo_queue_generates_valid_name": 1.111181242999919,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_queue_policy": 1.1134644830003708,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_deploy_patch_baseline": 1.2122442909999336,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_maintenance_window": 1.2765123230005884,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_parameter_defaults": 3.1650016739999955,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameter_tag": 2.236508386999958,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameters": 2.228716552000151,
"tests/aws/services/cloudformation/resources/test_stack_sets.py::test_create_stack_set_with_stack_instances": 30.123604450000585,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke": 4.7097061929998745,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost": 4.752108427999701,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path": 8.838658672999827,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path": 16.81474772699994,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies": 3.39904111199985,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2": 11.05400040099994,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_retry_and_catch": 18.561519876999228,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution": 4.40371241099956,
"tests/aws/services/cloudformation/test_cloudformation_ui.py::TestCloudFormationUi::test_get_cloudformation_ui": 2.455759781999859,
"tests/aws/services/cloudformation/test_cloudtrail_trace.py::test_cloudtrail_trace_example": 0.0010365189998537971,
"tests/aws/services/cloudformation/test_template_engine.py::TestImportValues::test_import_values_across_stacks": 2.2831318230003035,
"tests/aws/services/cloudformation/test_template_engine.py::TestImports::test_stack_imports": 0.0009474170001340099,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-0-0-False]": 0.06983614799969473,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-0-1-False]": 0.06751510699973551,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-1-0-False]": 0.0659830790000342,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-1-1-True]": 1.1308922079999775,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-0-0-False]": 0.06671379300018998,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-0-1-True]": 1.1378374309997525,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-1-0-True]": 1.1298100370001976,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-1-1-True]": 1.1382382109998161,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_base64_sub_and_getatt_functions": 1.1088581910003086,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_cidr_function": 0.001171021000118344,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_find_map_function": 1.1002427379996789,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_get_azs_function": 0.000843715000200973,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_split_length_and_join_functions": 1.1156623089998448,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_sub_not_ready": 1.1223236290002205,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_to_json_functions": 0.0010449190001509123,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements": 32.366420931999755,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_error_pass_macro_as_reference": 0.01324723399989125,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[raise_error.py]": 1.9093629760000113,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_invalid_template.py]": 1.8235127790001115,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_with_message.py]": 1.9607484499999828,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_without_message.py]": 1.8178297110000585,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_functions_and_references_during_transformation": 32.891172594999944,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_global_scope": 32.152188054000135,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_macro_deployment": 1.194495434999908,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_scope_order_and_parameters": 0.0007623139999850537,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_snipped_scope[transformation_snippet_topic.json]": 0.0007937139998830389,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_snipped_scope[transformation_snippet_topic.yml]": 0.0011961210000208666,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_to_validate_template_limit_for_macro": 1.5848889490000602,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_validate_lambda_internals": 32.18471100700003,
"tests/aws/services/cloudformation/test_template_engine.py::TestPreviousValues::test_parameter_usepreviousvalue_behavior": 1.1220137909999721,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager.yaml]": 1.1102700819999427,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager_full.yaml]": 1.1542967629998202,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager_partial.yaml]": 1.0974151530001564,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_create_stack_with_ssm_parameters": 1.1643735760001164,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm": 1.1165426140003092,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm_secure": 1.1350606210000933,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm_with_version": 1.1520531219998702,
"tests/aws/services/cloudformation/test_template_engine.py::TestStackEvents::test_invalid_stack_deploy": 1.3140831009998237,
"tests/aws/services/cloudformation/test_template_engine.py::TestTypes::test_implicit_type_conversion": 1.138420541999949,
"tests/aws/services/cloudformation/test_unsupported.py::test_unsupported": 1.0906525070001862,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_aws_sqs_metrics_created": 2.874302696999621,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions": 5.194251396000254,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_alarms_converts_date_format_correctly": 0.03424451200044132,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_enable_disable_alarm_actions": 10.237191661999532,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data": 0.14263694800001758,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_uniqueness": 0.03619934599964836,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_multiple_dimensions": 0.1087461420006548,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_composite_alarm_describe_alarms_converts_date_format_correctly": 0.02368472299986024,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_alarm": 189.024384887,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_alarm_escape_character": 0.0518034249998891,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data": 0.04432999200071208,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_gzip": 0.01981805399964287,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_values_list": 0.023964627999703225,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_set_alarm": 2.2716156640003646,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_store_tags": 0.05126961599989954,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary": 0.127917086999787,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items": 0.1502609919994029,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table": 0.0284544109995295,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema": 0.10385496100025193,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream": 1.8171827940004732,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update": 0.18908499600047435,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table": 0.10194282600014049,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency": 1.9883163919998879,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table": 0.1270775760003744,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement": 0.14008600599981946,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class": 0.11635128099987924,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification": 0.09066502299947388,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification": 0.06930144100078905,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction": 0.17340900299996065,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items": 0.09059762100014268,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing": 0.1427919570000995,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing": 0.12133567099999709,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_pay_per_request": 0.041375840000455355,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_records_with_update_item": 1.723174554000252,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator": 1.80855495600008,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type": 2.6087744709993785,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id": 0.2399724970000534,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format": 3.8783298450002803,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream": 2.3316999140006374,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values": 0.08684045200016044,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables": 0.09098192700002983,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019": 1.082578172999547,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index": 0.06956394400049248,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download": 0.46040813199988406,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource": 0.07261429799973484,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes": 0.17210717800026032,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions": 0.1703587469996819,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars": 0.1336215890000858,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region": 0.09082022899974618,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource": 0.104787975999443,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item": 0.1427230529998269,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement": 1.1913716040003237,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live": 0.14121802500039848,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items": 0.11069288199996663,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data": 0.1354440249997424,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled": 0.12267279500019868,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items": 0.15633679899974595,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index": 0.12530644100024801,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index": 0.07079726699930688,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association": 0.11844502600024498,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_vpc_end_point": 0.0980945609999253,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_describe_vpc_endpoints_with_filter": 0.0646352610001486,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_describe_vpn_gateways_filter_by_vpc": 0.07601106500032984,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[id]": 0.06203791400002956,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[name]": 0.05159412599959978,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_reserved_instance_api": 0.026658978999876126,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_vcp_peering_difference_regions": 0.10029290000011315,
"tests/aws/services/ec2/test_ec2.py::test_pickle_ec2_backend": 0.9368367170000056,
"tests/aws/services/ec2/test_ec2.py::test_raise_duplicate_launch_template_name": 0.030992756999694393,
"tests/aws/services/ec2/test_ec2.py::test_raise_invalid_launch_template_name": 0.011089699999956792,
"tests/aws/services/ec2/test_ec2.py::test_raise_modify_to_invalid_default_version": 0.027606196999386157,
"tests/aws/services/ec2/test_ec2.py::test_raise_when_launch_template_data_missing": 0.008140546000049653,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_create_domain": 15.642684929000097,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_create_existing_domain_causes_exception": 16.21326049300069,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_describe_domains": 15.182840773999942,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_domain_version": 29.788282014999822,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_get_compatible_version_for_domain": 15.597426672999973,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_get_compatible_versions": 0.014953968999634526,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_list_versions": 0.01704500600044412,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_path_endpoint_strategy": 14.53179099900035,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_update_domain_config": 15.670568824999918,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth0]": 0.0930853069994555,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth1]": 0.07220522500028892,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth2]": 0.07250713100029316,
"tests/aws/services/events/test_events.py::TestEvents::test_create_connection_validations": 0.009172169000066788,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_plural_should_fail[rate(1 days)]": 0.008749861000069359,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_plural_should_fail[rate(1 hours)]": 0.009157166999102628,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_plural_should_fail[rate(1 minutes)]": 0.011133704999792826,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_singular_should_succeed[rate(1 day)]": 0.013730550999753177,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_singular_should_succeed[rate(1 hour)]": 0.013914654000473092,
"tests/aws/services/events/test_events.py::TestEvents::test_create_rule_with_one_unit_in_singular_should_succeed[rate(1 minute)]": 0.014196360999449098,
"tests/aws/services/events/test_events.py::TestEvents::test_events_written_to_disk_are_timestamp_prefixed_for_chronological_ordering": 0.07200726700057203,
"tests/aws/services/events/test_events.py::TestEvents::test_list_tags_for_resource": 0.047271032000026025,
"tests/aws/services/events/test_events.py::TestEvents::test_put_event_with_content_base_rule_in_pattern": 0.12393227400025353,
"tests/aws/services/events/test_events.py::TestEvents::test_put_event_without_detail": 0.007589539000036893,
"tests/aws/services/events/test_events.py::TestEvents::test_put_event_without_source": 0.007847643000332027,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus": 0.1309731019996434,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_nonexistent_event_bus": 0.344152104999921,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_time": 0.11959291699986352,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus": 0.9275336260002405,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_input_path": 0.12653382100006638,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_input_path_multiple": 0.1631062930000553,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_nested_event_pattern": 0.1573128669997459,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_firehose": 0.19549808600004326,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_kinesis": 1.0276327510000556,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_lambda": 4.2238141100001485,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns": 1.1394145369995385,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs": 0.1192510979999497,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs_event_detail_match": 0.1550437270002476,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs_new_region": 0.04448281599979964,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_values_in_array": 0.18060967500014158,
"tests/aws/services/events/test_events.py::TestEvents::test_put_rule": 0.026382164000096964,
"tests/aws/services/events/test_events.py::TestEvents::test_put_target_id_validation": 0.06400809099977778,
"tests/aws/services/events/test_events.py::TestEvents::test_rule_disable": 0.107648209999752,
"tests/aws/services/events/test_events.py::TestEvents::test_scheduled_expression_events": 30.437806235000153,
"tests/aws/services/events/test_events.py::TestEvents::test_should_ignore_schedules_for_put_event": 56.40675291799971,
"tests/aws/services/events/test_events.py::TestEvents::test_test_event_pattern": 0.01617187300007572,
"tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change": 0.09596906100023261,
"tests/aws/services/events/test_events.py::TestEvents::test_verify_rule_event_content": 55.27749305999987,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source": 26.386103965000075,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup": 42.51643057699994,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]": 21.369066225000097,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path]": 21.82029465300002,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port]": 20.85363050700016,
"tests/aws/services/firehose/test_firehose.py::test_firehose_http[False]": 0.05765511900017373,
"tests/aws/services/firehose/test_firehose.py::test_firehose_http[True]": 1.84923299600041,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_role_with_malformed_assume_role_policy_document": 0.014139243999579776,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_add_permission_boundary_afterwards": 0.08967974700044579,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_with_permission_boundary": 0.07367087100010394,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_role": 0.09983372100032284,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_root": 0.02989361599975382,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user": 0.1721921690000272,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_detach_role_policy": 0.07221594600014214,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_iam_role_to_new_iam_user": 0.06436770999971486,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_describe_role": 0.06289838500060796,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_role_with_assume_role_policy": 0.08425305299988395,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_user_with_tags": 0.023912212000141153,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_delete_non_existent_policy_returns_no_such_entity": 0.008078539000052842,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_instance_profile_tags": 0.1227631179999662,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_list_roles_with_permission_boundary": 0.08168140800080437,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_recreate_iam_role": 0.03290026700051385,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_role_attach_policy": 0.23735409299979437,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_service_linked_role_name_should_match_aws[ecs.amazonaws.com-AWSServiceRoleForECS]": 0.01802611099992646,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_service_linked_role_name_should_match_aws[eks.amazonaws.com-AWSServiceRoleForAmazonEKS]": 0.015680670000165264,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_simulate_principle_policy": 0.018690121999497933,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_update_assume_role_policy": 0.03489230199966187,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_user_attach_policy": 0.2370254880001994,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_add_tags_to_stream": 0.6818723379997209,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count": 0.7039088839997021,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_stream_name_raises": 0.04464166900061173,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records": 0.7984942339999179,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_empty_stream": 0.7049549039998055,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_next_shard_iterator": 0.7012090800003534,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_record_lifecycle_data_integrity": 0.864442887000223,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers": 1.3595004570001947,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard": 7.766869513999609,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout": 6.403432327000246,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_with_sequence_number_as_iterator": 1.791032957000425,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl": 33.641798763000224,
"tests/aws/services/kms/test_kms.py::TestKMS::test_all_types_of_key_id_can_be_used_for_encryption": 0.06009466800014707,
"tests/aws/services/kms/test_kms.py::TestKMS::test_cant_delete_deleted_key": 0.029435622000164585,
"tests/aws/services/kms/test_kms.py::TestKMS::test_cant_use_disabled_or_deleted_keys": 0.04777344800004357,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_alias": 0.08396023599971159,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_invalid_key": 0.01703211200037913,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_same_name_two_keys": 0.04817578099982711,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_valid_key": 0.03285740100000112,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key": 0.09333410799990816,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key_custom_id": 0.023528129999704106,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_list_delete_alias": 0.0505014969999138,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_multi_region_key": 0.014774163000311091,
"tests/aws/services/kms/test_kms.py::TestKMS::test_describe_and_list_sign_key": 0.027852394999626995,
"tests/aws/services/kms/test_kms.py::TestKMS::test_disable_and_enable_key": 0.04394460400044409,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt[RSA_2048-RSAES_OAEP_SHA_256]": 0.0848185050003849,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt[SYMMETRIC_DEFAULT-SYMMETRIC_DEFAULT]": 0.031453859000066586,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt_encryption_context": 0.12861693000013474,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_2048-RSAES_OAEP_SHA_1]": 0.09337625799935267,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_2048-RSAES_OAEP_SHA_256]": 0.22266335299991624,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_3072-RSAES_OAEP_SHA_1]": 0.3054335229994649,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_3072-RSAES_OAEP_SHA_256]": 0.2207193180001923,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_1]": 1.0266783250008302,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]": 0.6556397389999802,
"tests/aws/services/kms/test_kms.py::TestKMS::test_error_messaging_for_invalid_keys": 0.15303507299995545,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_224-HMAC_SHA_224]": 0.09176625899999635,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_256-HMAC_SHA_256]": 0.0884031010000399,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_384-HMAC_SHA_384]": 0.0952464259999033,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_512-HMAC_SHA_512]": 0.08511934299986024,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[1024]": 0.06787890800023888,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[12]": 0.05817276400011906,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[1]": 0.05403178799952002,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[44]": 0.05992009500005224,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[91]": 0.05459139800041157,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[0]": 0.06265310700018745,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[1025]": 0.06232979999958843,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[None]": 0.06440223700019487,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_does_not_exist": 0.08467024800029321,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_in_different_region": 0.09959111999978632,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_invalid_uuid": 0.07429145900005096,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_public_key": 0.06776420300002428,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_put_list_key_policies": 0.04100402799986114,
"tests/aws/services/kms/test_kms.py::TestKMS::test_hmac_create_key": 0.08292307099918617,
"tests/aws/services/kms/test_kms.py::TestKMS::test_hmac_create_key_invalid_operations": 0.07681746400021439,
"tests/aws/services/kms/test_kms.py::TestKMS::test_import_key": 0.332781807000174,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_generate_mac[HMAC_224-HMAC_SHA_256]": 0.07247701299957043,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_generate_mac[HMAC_256-INVALID]": 0.07400204000032318,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_key_usage": 1.391670506000537,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_verify_mac[HMAC_256-HMAC_SHA_256-some different important message]": 0.12202361099934933,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_verify_mac[HMAC_256-HMAC_SHA_512-some important message]": 0.12250421999988248,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_verify_mac[HMAC_256-INVALID-some important message]": 0.1250999660001071,
"tests/aws/services/kms/test_kms.py::TestKMS::test_key_rotation_status": 0.04467789399996036,
"tests/aws/services/kms/test_kms.py::TestKMS::test_list_aliases_of_key": 0.0654476610002348,
"tests/aws/services/kms/test_kms.py::TestKMS::test_list_grants_with_invalid_key": 0.009629275999486708,
"tests/aws/services/kms/test_kms.py::TestKMS::test_list_keys": 0.023958038999808196,
"tests/aws/services/kms/test_kms.py::TestKMS::test_list_retirable_grants": 0.05810416299982535,
"tests/aws/services/kms/test_kms.py::TestKMS::test_non_multi_region_keys_should_not_have_multi_region_properties": 0.015390673000183597,
"tests/aws/services/kms/test_kms.py::TestKMS::test_plaintext_size_for_encrypt": 0.07160419799947704,
"tests/aws/services/kms/test_kms.py::TestKMS::test_replicate_key": 0.4109954959994866,
"tests/aws/services/kms/test_kms.py::TestKMS::test_retire_grant_with_grant_id_and_key_id": 0.045674135000354,
"tests/aws/services/kms/test_kms.py::TestKMS::test_retire_grant_with_grant_token": 0.046212745000502764,
"tests/aws/services/kms/test_kms.py::TestKMS::test_revoke_grant": 0.04422880999982226,
"tests/aws/services/kms/test_kms.py::TestKMS::test_schedule_and_cancel_key_deletion": 0.044481112999619654,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[ECC_NIST_P256-ECDSA_SHA_256]": 0.2301960859999781,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[ECC_NIST_P384-ECDSA_SHA_384]": 0.22316675999991276,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[ECC_SECG_P256K1-ECDSA_SHA_256]": 0.21496861600007833,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_256]": 0.6977768189999551,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_384]": 0.6893166699996982,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_512]": 0.6607960649998859,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_4096-RSASSA_PKCS1_V1_5_SHA_256]": 4.261338134000198,
"tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_4096-RSASSA_PKCS1_V1_5_SHA_512]": 3.1103431779997663,
"tests/aws/services/kms/test_kms.py::TestKMS::test_tag_untag_list_tags": 0.057704824000211374,
"tests/aws/services/kms/test_kms.py::TestKMS::test_update_alias": 0.05480477300034181,
"tests/aws/services/kms/test_kms.py::TestKMS::test_update_key_description": 0.038082275999386184,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_encryption_context_generate_data_key": 0.1256585759997506,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_encryption_context_generate_data_key_pair": 0.1369130809998751,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_encryption_context_generate_data_key_pair_without_plaintext": 0.1622346389995073,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_encryption_context_generate_data_key_without_plaintext": 0.13213399400001435,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_generate_data_key": 0.028528817999813327,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_generate_data_key_pair": 0.0729772229997252,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_generate_data_key_pair_without_plaintext": 0.06993806699983907,
"tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_generate_data_key_without_plaintext": 0.030491752999751043,
"tests/aws/services/kms/test_kms.py::TestKMSMultiAccounts::test_cross_accounts_access": 1.7961178410000684,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaAliases::test_alias_routingconfig": 3.430401252000138,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaAliases::test_lambda_alias_moving": 4.2947684569994635,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_function_state": 1.2150931570004104,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_lambda_different_iam_keys_environment": 4.326491702000112,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads": 22.282499973000085,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_ignore_architecture": 1.7866958629997498,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[nodejs]": 1.8591327470003307,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[python]": 1.8075788319997628,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_no_timeout": 3.8892147520000435,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_timed_out_environment_reuse": 3.2508683539999765,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_with_timeout": 3.8125993119997474,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_mixed_architecture": 0.0031626559998585435,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_runtime_introspection_arm": 0.000901716000498709,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_runtime_introspection_x86": 1.1528944100000444,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_runtime_ulimits": 0.9170708510000622,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_block": 0.0008207139999285573,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_crud": 1.3039463609998165,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_provisioned_concurrency_moves_with_alias": 0.0008505149999109562,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_provisioned_concurrency": 5.107841510000071,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency": 8.74888124500012,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency_async_queue": 23.239762907000568,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_provisioned_overlap": 9.372453076000056,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_dry_run[nodejs16.x]": 0.0011624210001173196,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_dry_run[python3.10]": 0.0007581140002912434,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[nodejs16.x]": 1.257269747999544,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[python3.10]": 1.2442820520000168,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event_error": 0.0008908160002647492,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[nodejs16.x]": 0.8744296829995619,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[python3.10]": 1.7207243690004361,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[nodejs16.x]": 0.8957115640000666,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[python3.10]": 0.8965988800000559,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_qualifier": 2.240313005000644,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_lambda_with_context": 0.0010208189996774308,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_upload_lambda_from_s3": 2.2680491089995485,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaMultiAccounts::test_cross_account_access": 2.20267408699965,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaPermissions::test_lambda_permission_url_invocation": 0.001164920999599417,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_echo_invoke": 1.1667230950001795,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[boolean]": 1.9802325619998555,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[dict]": 1.937809593000111,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[float]": 1.9555525859996123,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response-json]": 2.0169564149996404,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response]": 1.935763558000417,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[integer]": 1.923854909000056,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[list-mixed]": 1.9722093909999785,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[string]": 1.0869182360002014,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation_exception": 1.1216694910003753,
"tests/aws/services/lambda_/test_lambda.py::TestLambdaVersions::test_lambda_versions_with_code_changes": 6.732292851999773,
"tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_async_invoke_with_retry": 10.262694537999778,
"tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_format": 0.019559246999961033,
"tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke": 3.86240440399979,
"tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke_url": 3.7744349580002563,
"tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_code_signing_not_found_excs": 1.2457375359999787,
"tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_function_code_signing_config": 1.2096842030000516,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings": 0.05759851399989202,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size": 1.481905497000298,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size_config_update": 1.2295165519994953,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_alias_lifecycle": 1.4011692470003254,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_notfound_and_invalid_routingconfigs": 1.3329108269999779,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_exceptions": 2.6239356219998626,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_lifecycle": 1.2827031950000674,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation": 3.337729114999547,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_exceptions": 0.10495944800004509,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle": 4.731394144000205,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_create_lambda_exceptions": 0.11956864100011444,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_delete_on_nonexisting_version": 1.1924845800003823,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle": 2.36610434000022,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[delete_function]": 1.1517214200002854,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function]": 1.1766573989998506,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_code_signing_config]": 1.1626651500000662,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_concurrency]": 1.1510190089998105,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_configuration]": 1.1487125030002971,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_event_invoke_config]": 1.1603811649997624,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_url_config]": 1.1546705089999705,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[invoke]": 1.2492544669994459,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_lambda_code_location_s3": 1.360762462999901,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_lambda_code_location_zipfile": 1.2545705610000368,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_list_functions": 2.3521349240004383,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[delete_function]": 0.06944073300019227,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function]": 0.05793853000022864,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_code_signing_config]": 0.05959395899981246,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_concurrency]": 0.05774172500014174,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_configuration]": 0.058700440999928105,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_event_invoke_config]": 0.06049867299998368,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_url_config]": 0.057907428000362415,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_version[get_function]": 1.1815023419999306,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_version[get_function_configuration]": 1.1568191020000995,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_version[get_function_event_invoke_config]": 1.1658472190001703,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_with_arn_qualifier_mismatch[delete_function]": 0.06573276999961308,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_with_arn_qualifier_mismatch[get_function]": 0.06530476299985821,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_with_arn_qualifier_mismatch[get_function_configuration]": 0.06677958999989642,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_redundant_updates": 1.248230331999821,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_update_lambda_exceptions": 1.1593721569997797,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_vpc_config": 1.3587462729997242,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaImages::test_lambda_image_and_image_config_crud": 0.6360527609995188,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaImages::test_lambda_image_crud": 1.417209617000026,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaImages::test_lambda_image_versions": 0.7954352099995958,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaImages::test_lambda_zip_file_to_image": 1.3862611650001782,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_exceptions": 0.22738291499990737,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_function_exceptions": 17.45568644300056,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_function_quota_exception": 16.308472943000197,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_lifecycle": 1.3525008039996465,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_policy_exceptions": 0.1808007220001855,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_policy_lifecycle": 0.12600764499939032,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_s3_content": 0.1452072889996998,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_aws": 1.2770340390002275,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_fields": 1.2227291939998395,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_create_multiple_lambda_permissions": 1.1677477119997093,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_lambda_permission_fn_versioning": 1.2921737020005821,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_permission_exceptions": 1.320392494999851,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_remove_multi_permissions": 1.2197339770000326,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_lambda_provisioned_lifecycle": 1.8681663519996619,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_provisioned_concurrency_exceptions": 1.3024890430001506,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency": 1.1805186960000356,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency_exceptions": 1.1963287739999942,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_basic": 2.4722398689996226,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_permissions": 1.1926218000003246,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_version_and_alias": 1.2681128409999474,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_lambda_envvars_near_limit_succeeds": 1.1989218060002713,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_fails_multiple_keys": 16.156577438999648,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_variables_fails": 16.17226238900048,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_lambda": 0.0013758239997514465,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_oversized_request_create_lambda": 2.0245451329997195,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_oversized_unzipped_lambda": 8.152763743999913,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_exceptions": 0.08031291999986934,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java11]": 7.288779023000188,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java17]": 7.330189802000405,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java11]": 1.1935880720002388,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java17]": 1.3002599649998956,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_create_tag_on_fn_create": 1.167502152000452,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_lifecycle": 1.2339700339998672,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_nonexisting_resource": 1.1840575010000975,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_exceptions": 1.2387233649997142,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_lifecycle": 1.2786693699999887,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_limits": 1.2500369640001736,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_versions": 1.1885227780003333,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_exceptions": 1.450584902999708,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_lifecycle": 1.1942291780001142,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_list_paging": 1.2423460279997016,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaVersions::test_publish_version_on_create": 1.3388912310001615,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaVersions::test_publish_with_update": 1.25847989399972,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaVersions::test_publish_with_wrong_sha256": 1.206775271999959,
"tests/aws/services/lambda_/test_lambda_api.py::TestLambdaVersions::test_version_lifecycle": 1.3156274169996323,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[dotnet6]": 2.26765118000003,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[go1.x]": 2.184898118000092,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]": 3.8858248880001156,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]": 3.8139762789996894,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]": 2.1623551780003254,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs16.x]": 1.328568768000423,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]": 2.1533279730001595,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]": 2.125166618000094,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]": 2.183334459999969,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]": 2.3004883610001343,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.8]": 2.1812802599997667,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.9]": 2.1334158660001776,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]": 2.529864799000279,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby3.2]": 1.717195716000333,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[dotnet6]": 4.776739410000118,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[go1.x]": 2.861501092999788,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java11]": 3.696940256000744,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java17]": 3.7098659179996503,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java8.al2]": 6.5808240070000465,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java8]": 3.427036121000583,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs14.x]": 2.656573449000007,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs16.x]": 2.680446550999932,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs18.x]": 2.7609369810002136,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[provided.al2]": 5.035052396000083,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[provided]": 5.140870491999976,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.10]": 3.0478147860003446,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.11]": 2.9606516439998813,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.7]": 2.758442094000202,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.8]": 3.028620674999729,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.9]": 2.8805916460000844,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[ruby2.7]": 7.529357513999912,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[ruby3.2]": 8.843682622000415,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[dotnet6]": 2.7881360150004184,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[go1.x]": 2.9491659200002687,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java11]": 3.7693924959999094,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java17]": 3.943591526000546,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8.al2]": 3.981627282000318,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8]": 3.865341088999685,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs14.x]": 1.6837163030008924,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs16.x]": 2.6515083839994986,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs18.x]": 2.846272236999539,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided.al2]": 2.8127051339997706,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided]": 2.8246409459998176,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.10]": 7.021705800999825,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.11]": 2.603393039999901,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.7]": 2.8496893530000307,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.8]": 1.719688430000133,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.9]": 1.7136819780002952,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby2.7]": 1.7697625890000381,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby3.2]": 1.8400640250001743,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs14.x]": 0.9566411029991286,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs16.x]": 1.8083835430002182,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs18.x]": 1.8580453270001271,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[dotnet6]": 1.1459609569997156,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[go1.x]": 2.1613094270001056,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java11]": 3.1481147629992847,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java17]": 2.9621190579996437,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java8.al2]": 3.27902162700002,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java8]": 3.1225874159999876,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs14.x]": 1.8524841249995916,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs16.x]": 0.9352853870004765,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs18.x]": 1.8797612339994885,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[provided.al2]": 1.9398674960002609,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[provided]": 1.9608117909997418,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.10]": 0.9530539460001819,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.11]": 0.912658502999875,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.7]": 0.973754973999803,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.8]": 1.8569587110000612,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.9]": 0.9276182410003457,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[ruby2.7]": 0.9466098849993614,
"tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[ruby3.2]": 1.004120692000015,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDLQ::test_dead_letter_queue": 5.210282793999795,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge": 7.394226516999879,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0]": 2.001880183999674,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1]": 1.9829381049999029,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries": 16.15320692599971,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_maxeventage": 62.8407136740002,
"tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_retries": 18.942463725999914,
"tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags": 1.843368197999098,
"tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_lambda_docker_networks": 8.314220617000046,
"tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[nodejs18.x]": 3.06303496099963,
"tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[python3.9]": 2.900148914000056,
"tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading_publish_version": 0.17520181300005788,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb": 6.989548434999961,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping": 15.30626196799949,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1]": 13.56093944200029,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]": 13.692982211000071,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]": 13.578544705999775,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]": 13.72367292600029,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]": 13.460648560000209,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]": 13.429647027999636,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]": 13.461413060000268,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping": 12.534212509000099,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config": 12.372332623000148,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]": 5.250110176000362,
"tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string]": 5.447889583000233,
"tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping": 9.414155038999525,
"tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping": 23.619467936000092,
"tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_async_invocation": 0.001757529999849794,
"tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config": 9.974881313000424,
"tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon": 23.699124072999894,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size": 3.8612188659999447,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0]": 5.94366122800011,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1]": 6.962542352000128,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2]": 6.9521134249998795,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3]": 12.017351284000142,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string]": 7.004467264000141,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5]": 5.967666593000104,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6]": 6.780600800999764,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7]": 6.825834309999664,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping": 6.732506828000169,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[None]": 1.6112892429996464,
"tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2]": 1.6065302589995554,