forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.test_durations
2841 lines (2841 loc) · 374 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/bookstore/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb": 2.0825047839999797,
"tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud": 1.227218740000012,
"tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_search_books": 55.26549705700006,
"tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup": 65.505236765,
"tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3": 41.61161072800002,
"tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns": 5.166949905000138,
"tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra": 11.40328622200002,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table": 29.090475274000028,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED]": 2.1656877440000244,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input1-SUCCEEDED]": 1.1453138499999795,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input2-FAILED]": 1.1287335979999398,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input3-FAILED]": 1.139205582000045,
"tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]": 0.20853859299995747,
"tests/aws/scenario/mythical_mysfits/test_mythical_misfits.py::TestMythicalMisfitsScenario::test_deployed_infra_state": 0.0012356099999806247,
"tests/aws/scenario/mythical_mysfits/test_mythical_misfits.py::TestMythicalMisfitsScenario::test_populate_data": 0.000979519999987133,
"tests/aws/scenario/mythical_mysfits/test_mythical_misfits.py::TestMythicalMisfitsScenario::test_user_clicks_are_stored": 0.0009416579998742236,
"tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api": 3.9185215079999125,
"tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup": 31.27545714200005,
"tests/aws/services/acm/test_acm.py::TestACM::test_boto_wait_for_certificate_validation": 1.0822065319999865,
"tests/aws/services/acm/test_acm.py::TestACM::test_certificate_for_subdomain_wildcard": 2.11135070499995,
"tests/aws/services/acm/test_acm.py::TestACM::test_create_certificate_for_multiple_alternative_domains": 10.502132419000077,
"tests/aws/services/acm/test_acm.py::TestACM::test_domain_validation": 0.12252577599997494,
"tests/aws/services/acm/test_acm.py::TestACM::test_import_certificate": 0.7520101210001258,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiAuthorizer::test_authorizer_crud_no_api": 0.011296232000063355,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_doc_parts_crud_no_api": 0.011741116000052898,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_documentation_part_lifecycle": 0.024126539999997476,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_import_documentation_parts": 0.04169261300000926,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_create_documentation_part_operations": 0.013423493999994207,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_delete_documentation_part": 0.016537491999997656,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_get_documentation_part": 0.014676227000109066,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_get_documentation_parts": 0.004545785999994223,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiDocumentationPart::test_invalid_update_documentation_part": 0.019065758999886384,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_method_lifecycle": 0.025254217999986395,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_method_request_parameters": 0.01622720800003208,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_put_method_model": 0.09237446499992075,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_put_method_validation": 0.023689780000154315,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_update_method": 0.023842328000000634,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiMethod::test_update_method_validation": 0.04306956899984016,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiModels::test_model_lifecycle": 0.024739460999967378,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiModels::test_model_validation": 0.03376758600006724,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiModels::test_update_model": 0.0239395069999091,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_create_request_validator_invalid_api_id": 0.004911221000043042,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_delete_request_validator": 0.015005134000034559,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_get_request_validator": 0.014730477999819414,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_get_request_validators": 0.0047917169999891485,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_invalid_update_request_validator_operations": 0.020849387999987812,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_request_validator_lifecycle": 0.03180048100011845,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRequestValidator::test_validators_crud_no_api": 0.010854051000023901,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_create_proxy_resource": 0.0409542469999451,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_create_proxy_resource_validation": 0.027293987999996716,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_create_resource_parent_invalid": 0.010251287999949454,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_delete_resource": 0.022512778000191247,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_resource_lifecycle": 0.03818574400008856,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiResource::test_update_resource_behaviour": 0.04772960800005421,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_create_rest_api_with_custom_id_tag": 0.007470507999983056,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_create_rest_api_with_optional_params": 0.02655226500007757,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_create_rest_api_with_tags": 0.014705406000075527,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_get_api_case_insensitive": 0.011525839000000815,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_list_and_delete_apis": 0.03131384599987541,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_update_rest_api_behaviour": 0.020030972999961705,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_update_rest_api_compression": 0.03194610499997452,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_update_rest_api_invalid_api_id": 0.0049717509998572496,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApiRestApi::test_update_rest_api_operation_add_remove": 0.017791705000036018,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayGatewayResponse::test_gateway_response_crud": 0.03447754600006192,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayGatewayResponse::test_gateway_response_validation": 0.03637775499998952,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayGatewayResponse::test_update_gateway_response": 0.04053403900002195,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApigatewayIntegration::test_put_integration_wrong_type": 0.014336567999976069,
"tests/aws/services/apigateway/test_apigateway_api.py::TestApigatewayTestInvoke::test_invoke_test_method": 0.07065992399998322,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_account": 0.014877688999945349,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_authorizer_crud": 0.007522802000153206,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_handle_domain_name": 0.09787315899995974,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_http_integration_with_path_request_parameter": 0.07239348699988568,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation": 1.0883805450000636,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration_aws_type": 7.67506821500001,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration[/lambda/foo1]": 1.749240777999944,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration[/lambda/{test_param1}]": 1.7369994290000932,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method": 1.734036839000055,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method_with_path_param": 1.723178710999946,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded": 1.6559429040001987,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_mock_integration": 0.0299925169999824,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_update_resource_path_part": 0.019027913000059016,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_mock_integration_response_params": 0.030702557000040542,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_custom_authorization_method": 1.1002707830000418,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]": 1.1450549889999593,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[StartExecution]": 1.1588247779999392,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[dev]": 1.4615203639999663,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[local]": 1.6258737800000063,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_test_invoke_method_api": 1.7634693420000076,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_base_path_mapping": 0.10511777900012476,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_base_path_mapping_root": 0.09534084999995684,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_create_rest_api_with_custom_id[host_based_url]": 0.05452884400006042,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_create_rest_api_with_custom_id[path_based_url]": 0.02837155100007749,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_delete_rest_api_with_invalid_id": 0.0035181749999537715,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]": 0.04196504599997297,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]": 0.03858187200000884,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]": 0.038877747000015006,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]": 0.040665104999902724,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]": 0.03615707199992357,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]": 0.03240710699981264,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]": 0.03544145099999696,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]": 0.026120948999960092,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_malformed_response_apigw_invocation": 1.533169025999996,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate": 0.25235834699992665,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template": 0.11320638200004396,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template": 0.05559559100004208,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw": 1.5480469850000418,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_update_rest_api_deployment": 0.025159270000017386,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_http_integrations[custom]": 0.11150178800005506,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_http_integrations[proxy]": 0.1159764549998954,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_kinesis_integration": 0.7275821480000104,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_s3_get_integration": 0.08754020899993975,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_sqs_integration_with_event_source": 2.030610151000019,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-host_based_url-GET]": 0.03695802900006129,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-host_based_url-POST]": 0.0412434109998685,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-path_based_url-GET]": 0.035022492000166494,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[NEVER-path_based_url-POST]": 0.03537639800015313,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-host_based_url-GET]": 0.058029113999964466,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-host_based_url-POST]": 0.04853883099997347,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-path_based_url-GET]": 0.0362515419999454,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_MATCH-path_based_url-POST]": 0.035919316999979856,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-host_based_url-GET]": 0.038657951000118373,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-host_based_url-POST]": 0.03767930199978764,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-path_based_url-GET]": 0.03515701599997101,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_mock_integration_response[WHEN_NO_TEMPLATES-path_based_url-POST]": 0.03320327600010842,
"tests/aws/services/apigateway/test_apigateway_basic.py::TestTagging::test_tag_api": 0.02240491899999597,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_apigateway_rust_lambda": 3.4964161850001574,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_apigw_call_api_with_aws_endpoint_url": 0.01183502099991074,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-ANY]": 1.981507092000129,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-GET]": 2.007695967000018,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-ANY]": 1.9505796790000431,
"tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-GET]": 2.0716622749999942,
"tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_api_gateway_request_validator": 1.774688610000112,
"tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_integration_request_parameters_mapping": 0.05795395100017231,
"tests/aws/services/apigateway/test_apigateway_common.py::TestApigatewayRouting::test_proxy_routing_with_hardcoded_resource_sibling": 0.10462593899990225,
"tests/aws/services/apigateway/test_apigateway_common.py::TestApigatewayRouting::test_routing_with_hardcoded_resource_sibling_order": 0.09373357499998747,
"tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[False]": 0.13573866100011855,
"tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]": 0.1501598910000439,
"tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_update_deployments": 0.10925735699993311,
"tests/aws/services/apigateway/test_apigateway_common.py::TestDocumentations::test_documentation_parts_and_versions": 0.038104450999981054,
"tests/aws/services/apigateway/test_apigateway_common.py::TestStages::test_create_update_stages": 0.10950485000012122,
"tests/aws/services/apigateway/test_apigateway_common.py::TestStages::test_update_stage_remove_wildcard": 0.10398302299995521,
"tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_api_key_required_for_methods": 0.12135324900009437,
"tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_usage_plan_crud": 0.06527670100012983,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_error_aws_proxy_not_supported": 0.05282375799993133,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem]": 0.26787277500000073,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query]": 0.3170240059999969,
"tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan]": 0.25254572400001507,
"tests/aws/services/apigateway/test_apigateway_eventbridge.py::test_apigateway_to_eventbridge": 0.08803034899995055,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_create_domain_names": 0.012242638000088846,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]": 0.10378254600004766,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]": 0.07756449499993323,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]": 0.1019509669999934,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS]": 0.0751373070002046,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_api_keys": 0.04748374200005401,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_name": 0.011022536000155014,
"tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_names": 0.01218027099992014,
"tests/aws/services/apigateway/test_apigateway_http.py::test_http_integration_invoke_status_code_passthrough[HTTP]": 1.5105593970000655,
"tests/aws/services/apigateway/test_apigateway_http.py::test_http_integration_invoke_status_code_passthrough[HTTP_PROXY]": 1.5377189989998215,
"tests/aws/services/apigateway/test_apigateway_http.py::test_http_integration_with_lambda[HTTP]": 1.8038542179999695,
"tests/aws/services/apigateway/test_apigateway_http.py::test_http_integration_with_lambda[HTTP_PROXY]": 1.7937137259999645,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[openapi.spec.tf.json]": 0.11658076200001233,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[swagger-mock-cors.json]": 0.14055193300009705,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api": 0.01910737999992307,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[ignore]": 0.30278454700010116,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[prepend]": 0.3043477340000891,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[split]": 0.309092832000033,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[ignore]": 0.16994676000001618,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[prepend]": 0.1758093660000668,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[split]": 0.171416018000059,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_swagger_api": 0.2789114980000704,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models": 0.09349481100002777,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models_and_request_validation": 0.166771486000016,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_global_api_key_authorizer": 0.09262076100003469,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_http_method_integration": 0.08957331199997043,
"tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_stage_variables": 0.03655336899998929,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint": 4.3033019459999196,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_http_integration": 0.03620130700005575,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_http_integration_status_code_selection": 0.0648078809999788,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_response_with_response_template": 0.021046537999950488,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_responses": 5.07567280000012,
"tests/aws/services/apigateway/test_apigateway_integrations.py::test_put_integration_validation": 0.06298080200008371,
"tests/aws/services/apigateway/test_apigateway_kinesis.py::test_apigateway_to_kinesis": 0.768084660999989,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration": 1.4990682680000873,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_response_with_mapping_templates": 1.5608276719999594,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_with_request_template": 1.5384384610000552,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration": 3.529482567000059,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration_non_post_method": 1.1010747249999895,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_response_format": 1.56100967999987,
"tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_selection_patterns": 1.5700788819999616,
"tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra": 6.2304381780000995,
"tests/aws/services/apigateway/test_apigateway_sqs.py::test_api_gateway_sqs_integration": 0.08323234700003468,
"tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration": 0.09921369799997137,
"tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_request_and_response_xml_templates_integration": 0.14259620299992548,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_api_exceptions": 0.0007457599999725062,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_create_exceptions": 0.000765998000019863,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_create_invalid_desiredstate": 0.0007363619999978255,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_double_create_with_client_token": 0.0007335269999657612,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_lifecycle": 0.0007961650001107046,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_list_resources": 0.0007610189999240902,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_list_resources_with_resource_model": 0.0007553079999524925,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceApi::test_update": 0.0007314639999549399,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_edge_cases[FAIL]": 0.0007599460000164981,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_edge_cases[SUCCESS]": 0.0007395080000378584,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_cancel_request": 0.0007395889999770588,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_get_request_status": 0.0007868480000752243,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_invalid_request_token_exc": 0.0007348199999341887,
"tests/aws/services/cloudcontrol/test_cloudcontrol_api.py::TestCloudControlResourceRequestApi::test_list_request_status": 0.0007320549999576542,
"tests/aws/services/cloudformation/api/test_changesets.py::test_autoexpand_capability_requirement": 0.019618569999806823,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_remove_non_supported_resource_change_set": 4.0975424869999415,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_remove_supported_resource_change_set": 4.083414731000062,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_update_refreshes_template_metadata": 2.054461587999981,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_create_existing": 0.0007461720000492278,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_invalid_params": 0.005213709999907223,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_missing_stackname": 0.0014286439999295908,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_update_nonexisting": 0.007110400000101436,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_update_without_parameters": 1.0574182320000318,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_with_ssm_parameter": 1.0600845340001115,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_without_parameters": 0.029012331999979324,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_changeset_with_stack_id": 0.08010785199985548,
"tests/aws/services/cloudformation/api/test_changesets.py::test_create_while_in_review": 0.000706988000047204,
"tests/aws/services/cloudformation/api/test_changesets.py::test_delete_change_set_exception": 0.0069167890001153864,
"tests/aws/services/cloudformation/api/test_changesets.py::test_deleted_changeset": 0.01883601700001236,
"tests/aws/services/cloudformation/api/test_changesets.py::test_describe_change_set_nonexisting": 0.004445508000003429,
"tests/aws/services/cloudformation/api/test_changesets.py::test_describe_change_set_with_similarly_named_stacks": 0.018044873000121697,
"tests/aws/services/cloudformation/api/test_changesets.py::test_empty_changeset": 1.1128170320000663,
"tests/aws/services/cloudformation/api/test_changesets.py::test_execute_change_set": 0.0008050409999214025,
"tests/aws/services/cloudformation/api/test_changesets.py::test_multiple_create_changeset": 0.11589620399990963,
"tests/aws/services/cloudformation/api/test_changesets.py::test_name_conflicts": 1.3091986360000192,
"tests/aws/services/cloudformation/api/test_drift_detection.py::test_drift_detection_on_lambda": 0.0008625390000815969,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_crud_extension[HOOK-LocalStack::Testing::TestHook-hooks/localstack-testing-testhook.zip]": 0.0008107720000225527,
"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.000858582000091701,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_crud_extension[RESOURCE-LocalStack::Testing::TestResource-resourcetypes/localstack-testing-testresource.zip]": 0.0007924180000600245,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_not_complete": 0.0007902950000016062,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_type_configuration": 0.0007958450000842276,
"tests/aws/services/cloudformation/api/test_extensions_api.py::TestExtensionsApi::test_extension_versioning": 0.000850856999932148,
"tests/aws/services/cloudformation/api/test_extensions_hooks.py::TestExtensionsHooks::test_hook_deployment[FAIL]": 0.0008206499999232619,
"tests/aws/services/cloudformation/api/test_extensions_hooks.py::TestExtensionsHooks::test_hook_deployment[WARN]": 0.0008022260000188908,
"tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage": 0.0008318519999193086,
"tests/aws/services/cloudformation/api/test_extensions_resourcetypes.py::TestExtensionsResourceTypes::test_deploy_resource_type": 0.0010472660000004907,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_lifecycle_nested_stack": 0.0007961850000128834,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_output_in_params": 12.205703104999998,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack": 6.07910619300003,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack_output_refs": 6.072273315999951,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stacks_conditions": 6.083545731999948,
"tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_with_nested_stack": 0.0008788310000227284,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicArn]": 2.0365421569999853,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicName]": 2.0386891970000534,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_sub_resolving": 2.0564003889999185,
"tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency": 2.0369731510000975,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_create_stack_with_policy": 0.000732764999952451,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_different_action_attribute": 0.0007404100000485414,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_different_principal_attribute": 0.00071782800011988,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_empty_policy": 0.0007069980000551368,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_not_json_policy": 0.001742131000014524,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_policy_during_update": 0.0007179980000273645,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_policy_lifecycle": 0.0007961049998357339,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_deletion[resource0]": 0.0007024090000413707,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_deletion[resource1]": 0.0007040020000204095,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_modifying_with_policy_specifying_resource_id": 0.0007067969999070556,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_replacement": 0.0007081389999257226,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_resource_deletion": 0.0007124879999764744,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_stack_update": 0.0007334059999948295,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_update[AWS::S3::Bucket]": 0.0007080309999309975,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_prevent_update[AWS::SNS::Topic]": 0.000706535999938751,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_empty_policy_with_url": 0.0007916260000229158,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_invalid_policy_with_url": 0.0007920660000308999,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_both_policy_and_url": 0.0008179259998541966,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_with_update_operation": 0.0007061160000603195,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_set_policy_with_url": 0.0008089890001201638,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_empty_policy": 0.0007039920000124766,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_overlapping_policies[False]": 0.0007334770000397839,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_overlapping_policies[True]": 0.0007337980000556854,
"tests/aws/services/cloudformation/api/test_stack_policies.py::TestStackPolicy::test_update_with_policy": 0.0007060560000127225,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_creation[False-0]": 0.0007858260000830342,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_creation[True-1]": 0.0008106929999485146,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_update[False-2]": 0.0007955139999467065,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_failure_options_for_stack_update[True-1]": 0.0007974380000632664,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]": 2.049426488000222,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[yaml]": 2.0883994760000633,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_events_after_deployment": 2.0656486780000023,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_stack_resources_for_removed_resource": 4.080896703999997,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_description_special_chars": 2.0556606940000393,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_lifecycle": 4.135182728000018,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_name_creation": 0.03433338900003946,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_update_resources": 4.157596030000036,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_actual_update": 4.082872136999981,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_with_same_template_withoutchange": 2.047104809000075,
"tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_with_same_template_withoutchange_transformation": 2.1068952830000853,
"tests/aws/services/cloudformation/api/test_stacks.py::test_blocked_stack_deletion": 0.0008365909999383803,
"tests/aws/services/cloudformation/api/test_stacks.py::test_describe_stack_events_errors": 0.007327071000077012,
"tests/aws/services/cloudformation/api/test_stacks.py::test_events_resource_types": 2.073743889999946,
"tests/aws/services/cloudformation/api/test_stacks.py::test_linting_error_during_creation": 0.0008339660000729054,
"tests/aws/services/cloudformation/api/test_stacks.py::test_list_parameter_type": 2.050848794999979,
"tests/aws/services/cloudformation/api/test_stacks.py::test_name_conflicts": 2.155104486999903,
"tests/aws/services/cloudformation/api/test_stacks.py::test_notifications": 0.0008032880000428122,
"tests/aws/services/cloudformation/api/test_stacks.py::test_update_termination_protection": 2.0461338339998747,
"tests/aws/services/cloudformation/api/test_stacks.py::test_updating_an_updated_stack_sets_status": 6.1484318839998195,
"tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[http_host]": 1.0543716250000443,
"tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[http_invalid]": 0.025302493000026516,
"tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[http_path]": 1.0532876449999549,
"tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[s3_url]": 0.02592408999998952,
"tests/aws/services/cloudformation/api/test_templates.py::test_get_template_summary": 2.061331718999895,
"tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources": 2.1394986880000033,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_basic_update": 3.058134832000178,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_diff_after_update": 3.076738708999983,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_no_parameters_update": 3.0484862229999408,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_no_template_error": 0.0007048369999438364,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_set_notification_arn_with_update": 0.0007736860000022716,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_tags": 0.000795567999944069,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_using_template_url": 3.0727604269999347,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_capabilities[capability0]": 0.0008226169999261401,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_capabilities[capability1]": 0.000800185999992209,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_invalid_rollback_configuration_errors": 0.0006732159999955911,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_previous_parameter_value": 3.0563907760000575,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_previous_template": 0.0007986919999893871,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_resource_types": 0.0007746270000552613,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_role_without_permissions": 0.0007619830000749062,
"tests/aws/services/cloudformation/api/test_update_stack.py::test_update_with_rollback_configuration": 0.0006670039999789878,
"tests/aws/services/cloudformation/engine/test_attributes.py::TestResourceAttributes::test_dependency_on_attribute_with_dot_notation": 2.0423546620000934,
"tests/aws/services/cloudformation/engine/test_attributes.py::TestResourceAttributes::test_invalid_getatt_fails": 0.0007665719999749854,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_condition_on_outputs": 2.0392464840000457,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]": 2.0725953880000816,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]": 2.0443694250000135,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]": 2.039277645000084,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[production-us-east-1]": 2.039088099999958,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_with_select": 2.0419633810000732,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[None-FallbackParamValue]": 2.0475990709999223,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[false-DefaultParamValue]": 2.0585162369998216,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[true-FallbackParamValue]": 2.045708361000038,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref": 0.0008922260000190363,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref_intrinsic_fn_condition": 0.0007959559999335397,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependent_ref_with_macro": 0.0007926990000441947,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[prod-bucket-policy]": 0.0011025219998828106,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[prod-nobucket-nopolicy]": 0.0008044319999953586,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[test-bucket-nopolicy]": 0.0008155220000389818,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_nested_conditions[test-nobucket-nopolicy]": 0.0008268629999292898,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_output_reference_to_skipped_resource": 0.000812729000017498,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_condition_evaluation_deploys_resource": 2.0385944019999442,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_condition_evaluation_doesnt_deploy_resource": 0.03667852099999891,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[nope]": 2.034627649000072,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[yep]": 2.0349685909998243,
"tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_sub_in_conditions": 2.0431721549998656,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_maximum_nesting_depth": 0.0008099320000383159,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_minimum_nesting_depth": 0.0008482240000375896,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_with_invalid_refs": 0.0008118949999698089,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_mapping_with_nonexisting_key": 0.0007902639999883831,
"tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_simple_mapping_working": 2.040880418000029,
"tests/aws/services/cloudformation/engine/test_references.py::TestDependsOn::test_depends_on_with_missing_reference": 0.0007899739999857047,
"tests/aws/services/cloudformation/engine/test_references.py::TestFnSub::test_fn_sub_cases": 2.0483096630000546,
"tests/aws/services/cloudformation/engine/test_references.py::test_useful_error_when_invalid_ref": 2.0324886980000656,
"tests/aws/services/cloudformation/resource_providers/ec2/aws_ec2_networkacl/test_basic.py::TestBasicCRD::test_black_box": 4.192505450999988,
"tests/aws/services/cloudformation/resource_providers/ec2/test_ec2.py::test_deploy_instance_with_key_pair": 4.129032422000023,
"tests/aws/services/cloudformation/resource_providers/ec2/test_ec2.py::test_deploy_prefix_list": 7.062718624000013,
"tests/aws/services/cloudformation/resource_providers/ec2/test_ec2.py::test_deploy_vpc_endpoint": 2.166734217000112,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values": 2.039655517000142,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box": 4.0542028560000745,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt": 4.071646890000238,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestUpdates::test_update_without_replacement": 0.0007868580000831571,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Arn]": 0.0008195789999945191,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Id]": 0.0008033690000956994,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[Path]": 0.0008101409998744202,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[PermissionsBoundary]": 0.0008204209999576051,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_exploration.py::TestAttributeAccess::test_getatt[UserName]": 0.0008252099999026541,
"tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties": 4.0823707749999585,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_delete_role_detaches_role_policy": 4.0759447479999835,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key": 4.077589417000013,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname": 2.062234950000061,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource": 3.010174265000046,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments": 2.1257178700000168,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_server_certificate": 4.090971613999955,
"tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy": 4.123031991000062,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[Arn]": 0.0007172670000272774,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainArn]": 0.0009710550000363583,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainEndpoint]": 0.0006670129998838092,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[DomainName]": 0.000716305999958422,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[EngineVersion]": 0.0007242909998694813,
"tests/aws/services/cloudformation/resource_providers/opensearch/test_domain.py::TestAttributeAccess::test_getattr[Id]": 0.0006751890000487037,
"tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group": 2.173139143999947,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter.py::TestBasicCRD::test_black_box": 0.0007352220001166643,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter.py::TestUpdates::test_update_without_replacement": 0.0006761100000858278,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[AllowedPattern]": 0.0006673340000133976,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[DataType]": 0.0006628959999943618,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Description]": 0.00067676199989819,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Id]": 0.0006978719999324312,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Name]": 0.0006736260000934635,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Policies]": 0.0006969300000037038,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Tier]": 0.0006878920000872313,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Type]": 0.0006822619999411472,
"tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Value]": 0.0010579880000705089,
"tests/aws/services/cloudformation/resources/test_acm.py::test_cfn_acm_certificate": 2.039089282999953,
"tests/aws/services/cloudformation/resources/test_apigateway.py::TestServerlessApigwLambda::test_serverless_like_deployment_with_update": 18.219344311999976,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_account": 4.061467628999935,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict": 2.0434037309998985,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration": 2.10560823000003,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_rest_api": 6.089911642000061,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import": 2.1120873389999133,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger": 2.0981782979998798,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration": 2.2345097810000425,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models": 2.2485229439998875,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources": 4.1101717430000235,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving": 14.317984939000098,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan": 4.092650966000065,
"tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output": 2.056827580999993,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]": 8.30053723200001,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]": 8.25740908499995,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]": 8.282109744999957,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy": 16.39360423500011,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template": 12.180063782999923,
"tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkSampleApp::test_cdk_sample": 2.1650898380003127,
"tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro": 3.063963332999947,
"tests/aws/services/cloudformation/resources/test_cloudformation.py::test_waitcondition": 2.08099885799993,
"tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_alarm_creation": 2.036923823000052,
"tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_alarm_ext_statistic": 4.082283936999829,
"tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_composite_alarm_creation": 4.31050570299999,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]": 2.176932068999804,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]": 2.163378302999945,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table": 2.172330249000197,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table": 4.075405714999988,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table": 4.172436883000046,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse": 2.0597098260000166,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table": 2.0723178279999956,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse": 2.0538267559998076,
"tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk": 1.0933632020000914,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations": 2.0806312350000553,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables": 2.0823567850000018,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options": 2.0948838439999236,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr": 2.1017211020002833,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_simple_route_table_creation": 4.067143583999723,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_simple_route_table_creation_without_vpc": 4.063026269000375,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_transit_gateway_attachment": 4.2119640629998685,
"tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg": 2.156656498000075,
"tests/aws/services/cloudformation/resources/test_elasticsearch.py::test_cfn_handle_elasticsearch_domain": 2.125660982000227,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_api_destination_resource": 14.140195011000287,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource": 4.052164115000096,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule": 4.061641158999919,
"tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name": 4.0775611080000544,
"tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target": 2.039556924999715,
"tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs": 2.085151386000234,
"tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies": 4.091421215999844,
"tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement": 2.0412058599997636,
"tests/aws/services/cloudformation/resources/test_events.py::test_rule_properties": 2.0508547659999294,
"tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source": 42.229104387999996,
"tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda": 67.16320753100013,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources": 8.131435886999952,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_default_parameters_kinesis": 6.0849555459999465,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_describe_template": 0.20086354700015363,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf": 6.081803515999809,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations": 12.104370526999674,
"tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation": 6.1208210180002425,
"tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources": 4.057737211000131,
"tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms": 4.053678770000033,
"tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled": 2.048483307000197,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaDestinations::test_generic_destination_routing[sqs-sqs]": 0.00078789000008328,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source": 9.70454272400002,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source": 15.617029209000066,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions": 7.273679036000203,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source": 9.476037987999916,
"tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter": 9.155196921000197,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url": 6.758617146000006,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config": 6.092684469000005,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias": 12.158574252000108,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_dead_letter_config_async_invocation": 8.679627985000252,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run": 6.440110278999782,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_code_signing_config": 2.1006573160000244,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version": 6.513832134999802,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_vpc": 0.0010127309999461431,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter": 0.0010035850000349456,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update": 16.286158332000014,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn": 6.070708139000089,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3": 6.649933056999771,
"tests/aws/services/cloudformation/resources/test_lambda.py::test_update_lambda_permissions": 12.126908619000233,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_conditional_deployment": 2.056686622999905,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name": 4.060195052000154,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_log_group_resource": 4.0654212500000995,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_s3_notification_configuration[False-us-east-1]": 4.0636826460001885,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_s3_notification_configuration[True-eu-west-1]": 4.076691879000009,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource": 22.157940676999942,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub": 6.111946884999725,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_update_ec2_instance_type": 0.0008886380001058569,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports": 2.174337320999939,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table": 4.108861951999643,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_deploy_stack_with_sub_select_and_sub_getaz": 50.85667198500005,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name": 4.078239939999776,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_resolve_transitive_placeholders_in_strings": 2.06590353699994,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name": 13.136351248999972,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_update_conditions": 3.0607310160000907,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_update_lambda_function": 0.0007745939999495022,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_updating_stack_with_iam_role": 18.11886479800023,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_validate_invalid_json_template_should_fail": 0.033195390999935626,
"tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_validate_template": 0.006363536999970165,
"tests/aws/services/cloudformation/resources/test_logs.py::test_logstream": 2.0462363560000085,
"tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain": 17.45627436199993,
"tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain_with_alternative_types": 12.484044974000199,
"tests/aws/services/cloudformation/resources/test_redshift.py::test_redshift_cluster": 23.09138479300009,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_health_check": 2.094383586000049,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_id": 2.0530970200004504,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_name": 2.045083651999903,
"tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_without_resource_record": 2.0420625770000242,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_autoname": 2.048593356000083,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_versioning": 2.0381604149997656,
"tests/aws/services/cloudformation/resources/test_s3.py::test_bucketpolicy": 4.113539042999719,
"tests/aws/services/cloudformation/resources/test_s3.py::test_cors_configuration": 2.178904170000351,
"tests/aws/services/cloudformation/resources/test_s3.py::test_object_lock_configuration": 2.1690073060001396,
"tests/aws/services/cloudformation/resources/test_s3.py::test_website_configuration": 2.170750544999919,
"tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies": 6.1215543080002135,
"tests/aws/services/cloudformation/resources/test_sam.py::test_sam_sqs_event": 17.212235822999673,
"tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template": 6.508340097999962,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_handle_secretsmanager_secret": 2.0568027169999823,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy": 2.042325058000415,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy[default]": 2.051373779999949,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy[true]": 2.0496186880004643,
"tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secretsmanager_gen_secret": 2.0459969890002867,
"tests/aws/services/cloudformation/resources/test_sns.py::test_deploy_stack_with_sns_topic": 4.052764330999935,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_subscription": 2.0502770699997654,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_with_deduplication": 2.1256617339997774,
"tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_without_suffix_fails": 2.0389391620003607,
"tests/aws/services/cloudformation/resources/test_sns.py::test_update_subscription": 4.094922617000066,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_cfn_handle_sqs_resource": 4.060349875999691,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name": 2.0395300119998865,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_non_fifo_queue_generates_valid_name": 2.035219510000161,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_queue_policy": 2.0635733619997154,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_update_queue_no_change": 4.074204810000083,
"tests/aws/services/cloudformation/resources/test_sqs.py::test_update_sqs_queuepolicy": 4.100260689999914,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_deploy_patch_baseline": 2.090924750999875,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_maintenance_window": 2.0642763820001164,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_parameter_defaults": 4.060742046999849,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameter_tag": 4.074863180000193,
"tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameters": 4.087056824000001,
"tests/aws/services/cloudformation/resources/test_stack_sets.py::test_create_stack_set_with_stack_instances": 1.0612791589999233,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke": 9.182330856999897,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost": 9.201624435000213,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path": 13.235362737000287,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path": 13.218658542999947,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies": 0.0008309309998821846,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2": 13.195885911999767,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_retry_and_catch": 0.0008536230000117939,
"tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution": 7.110762343999795,
"tests/aws/services/cloudformation/test_cloudformation_ui.py::TestCloudFormationUi::test_get_cloudformation_ui": 0.39423052799975267,
"tests/aws/services/cloudformation/test_cloudtrail_trace.py::test_cloudtrail_trace_example": 0.0008160539998698368,
"tests/aws/services/cloudformation/test_template_engine.py::TestImportValues::test_import_values_across_stacks": 4.076863623999998,
"tests/aws/services/cloudformation/test_template_engine.py::TestImports::test_stack_imports": 0.0007139120000374533,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-0-0-False]": 0.0332980350001435,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-0-1-False]": 0.029061011000067083,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-1-0-False]": 0.028267288000279223,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::And-1-1-True]": 2.0432050250003613,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-0-0-False]": 0.02922639799976423,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-0-1-True]": 2.0428255930000887,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-1-0-True]": 2.043146504000106,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_and_or_functions[Fn::Or-1-1-True]": 2.044446115000028,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_base64_sub_and_getatt_functions": 2.0365277220000735,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_cidr_function": 0.0007467530001576961,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_find_map_function": 2.037162728999874,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_get_azs_function": 2.041135228999792,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_split_length_and_join_functions": 2.0514054509997095,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_sub_not_ready": 2.0420477620000383,
"tests/aws/services/cloudformation/test_template_engine.py::TestIntrinsicFunctions::test_to_json_functions": 0.0008811359998617263,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_attribute_uses_macro": 5.524001025999723,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements": 4.727893550000317,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_error_pass_macro_as_reference": 0.008323401000097874,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[raise_error.py]": 3.5288752120000026,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_invalid_template.py]": 3.512556621000158,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_with_message.py]": 3.4948896190003325,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_without_message.py]": 3.509862034999969,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_functions_and_references_during_transformation": 4.544956355000068,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_global_scope": 4.634483722000141,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_macro_deployment": 3.070711471000095,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_pyplate_param_type_list": 8.533460945000115,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_scope_order_and_parameters": 0.0010590090000732744,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_snipped_scope[transformation_snippet_topic.json]": 5.529806790000066,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_snipped_scope[transformation_snippet_topic.yml]": 5.51873775099989,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_to_validate_template_limit_for_macro": 3.283664361999854,
"tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_validate_lambda_internals": 4.688220841999964,
"tests/aws/services/cloudformation/test_template_engine.py::TestPreviousValues::test_parameter_usepreviousvalue_behavior": 2.0525156679998418,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager.yaml]": 2.0388387179998517,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager_full.yaml]": 2.0450126470000214,
"tests/aws/services/cloudformation/test_template_engine.py::TestSecretsManagerParameters::test_resolve_secretsmanager[resolve_secretsmanager_partial.yaml]": 2.0423323230002097,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_create_stack_with_ssm_parameters": 2.0604560009999204,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm": 2.0437548370000513,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm_secure": 2.0453837820000444,
"tests/aws/services/cloudformation/test_template_engine.py::TestSsmParameters::test_resolve_ssm_with_version": 2.0590513080001074,
"tests/aws/services/cloudformation/test_template_engine.py::TestStackEvents::test_invalid_stack_deploy": 2.1371426289999818,
"tests/aws/services/cloudformation/test_template_engine.py::TestTypes::test_implicit_type_conversion": 2.055363875000012,
"tests/aws/services/cloudformation/test_unsupported.py::test_unsupported": 2.0472098330001245,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_alarm_lambda_target": 2.4788356950000434,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_anomaly_detector_lifecycle": 0.0007400499998766463,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_aws_sqs_metrics_created": 2.5089114919996973,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions": 6.196956196999736,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_create_metric_stream": 0.0007200729999112809,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_dashboard_lifecycle": 0.07679047700003139,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_default_ordering": 0.045905616000027294,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_delete_alarm": 0.09961712099993747,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_alarms_converts_date_format_correctly": 0.03322768599991832,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_minimal_metric_alarm": 0.0007245310002872429,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_enable_disable_alarm_actions": 10.125023151000278,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data": 2.0241605789997266,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_different_units_no_unit_in_query[metric_data0]": 0.0006656099999418075,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_different_units_no_unit_in_query[metric_data1]": 0.0006582160001471493,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_different_units_no_unit_in_query[metric_data2]": 0.0006506319998607069,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_for_multiple_metrics": 1.0189035890000468,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_pagination": 0.0006786050000755495,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_stats[Average]": 0.012417477999861148,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_stats[Maximum]": 0.01206171999979233,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_stats[Minimum]": 0.012591563999876598,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_stats[SampleCount]": 0.012132365999832473,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_stats[Sum]": 0.01271416600025077,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_with_different_units": 0.009790687999839065,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_with_dimensions": 0.015354886999830342,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data_with_zero_and_labels": 0.0007411220001358743,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_statistics": 0.0605799229999775,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_with_no_results": 0.020124092000060045,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_with_null_dimensions": 0.07180663499980255,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_handle_different_units": 0.000681531000054747,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_insight_rule": 0.0007240299999011768,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs0]": 0.0006627960001424071,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs1]": 0.0006629050001265568,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs2]": 0.0006476159999238007,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs3]": 0.0006453519999922719,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs4]": 0.0006443099996431556,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs5]": 0.0006378390000918444,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_label_generation[input_pairs6]": 0.0006768709997686528,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_pagination": 2.373446670000021,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_uniqueness": 2.0242579289999867,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_with_filters": 4.0308235039999545,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_metric_widget": 0.0007287490000180696,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_multiple_dimensions": 2.0403002449997985,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_parallel_put_metric_data_list_metrics": 0.0007715819999702944,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_composite_alarm_describe_alarms": 0.03324746300017978,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_alarm": 0.000788090000014563,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_alarm_escape_character": 0.03030595599989283,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_gzip": 0.011807833999910144,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_validation": 0.000743252999654942,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_values_list": 0.018061016999809,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_uses_utc": 0.011155104999716059,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_raw_metric_data": 0.01245320199973321,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_set_alarm": 2.148726291999992,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_set_alarm_invalid_input": 0.0007586450001326739,
"tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_store_tags": 0.09084292699981233,
"tests/aws/services/cloudwatch/test_cloudwatch_metrics.py::TestCloudWatchLambdaMetrics::test_lambda_invoke_error": 2.434140374000208,
"tests/aws/services/cloudwatch/test_cloudwatch_metrics.py::TestCloudWatchLambdaMetrics::test_lambda_invoke_successful": 2.4368560999998863,
"tests/aws/services/cloudwatch/test_cloudwatch_metrics.py::TestSQSMetrics::test_alarm_number_of_messages_sent": 60.50495487000012,
"tests/aws/services/cloudwatch/test_cloudwatch_metrics.py::TestSqsApproximateMetrics::test_sqs_approximate_metrics": 13.15064435499994,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary": 0.03975163399991288,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items": 0.03745373500032656,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming": 0.7850764129998424,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table": 0.0780518229998961,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema": 0.041810251000242715,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream": 0.6416658620005364,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update": 0.09572089899984348,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table": 0.03924007600016921,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency": 0.674500626000281,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table": 0.044879585999751725,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement": 0.06093701700001475,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class": 0.06415486499963663,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification": 0.043757970000115165,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification": 0.03056844499997169,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction": 0.0984080409998569,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items": 0.036748390000411746,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing": 0.05569845299987719,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing": 0.05365628800018385,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_pay_per_request": 0.01426700899946809,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_records_with_update_item": 0.5932711300001756,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator": 0.6385360559997935,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type": 0.870958408000206,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id": 0.6298452900000484,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format": 2.6532046510001237,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream": 1.193783569000061,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values": 0.03354298399972322,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables": 0.03860841200003051,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019": 0.7041703559998496,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index": 0.025823906999903556,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download": 0.15597530200011533,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource": 0.034883271000126115,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes": 0.12224990700042326,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions": 0.059917747000326926,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars": 0.05644989499978692,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region": 0.032321351000518916,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource": 0.05145684800027084,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item": 0.06025222299967936,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure": 0.0862036150001586,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records": 11.678713426000286,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live": 0.09934676500051864,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion": 0.17108130199994775,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items": 0.04303236499981722,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming": 0.8266022280004108,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables": 0.7947249110006851,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data": 0.037803202000304736,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled": 0.0399603479995676,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items": 0.05115349200013952,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index": 0.056146393999824795,
"tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index": 0.02902579900001001,
"tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_enable_kinesis_streaming_destination": 0.0006675030003862048,
"tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement": 1.7727341679997153,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association": 0.049350642999797856,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_vpc_end_point": 0.045459242000106315,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_describe_vpc_endpoints_with_filter": 0.11753505799924824,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_describe_vpn_gateways_filter_by_vpc": 0.03629757899989272,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[id]": 0.030735711999568593,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[name]": 0.019095130999630783,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_reserved_instance_api": 0.011686386999826937,
"tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_vcp_peering_difference_regions": 0.05082227699995201,
"tests/aws/services/ec2/test_ec2.py::test_pickle_ec2_backend": 0.3617702309993547,
"tests/aws/services/ec2/test_ec2.py::test_raise_duplicate_launch_template_name": 0.012288187000194739,
"tests/aws/services/ec2/test_ec2.py::test_raise_invalid_launch_template_name": 0.0039218259998961,
"tests/aws/services/ec2/test_ec2.py::test_raise_modify_to_invalid_default_version": 0.015655161999802658,
"tests/aws/services/ec2/test_ec2.py::test_raise_when_launch_template_data_missing": 0.006945164000171644,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_create_domain": 11.152949821999755,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_create_existing_domain_causes_exception": 10.66426391999994,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_describe_domains": 11.157555940999828,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_domain_version": 23.33278462499993,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_get_compatible_version_for_domain": 12.1738155500002,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_get_compatible_versions": 0.00710530700007439,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_list_versions": 0.008359006000318914,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_path_endpoint_strategy": 11.679725909000354,
"tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_update_domain_config": 11.696998500000518,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern_source": 0.00613918899989585,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[arrays]": 0.003641598999820417,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[arrays_NEG]": 0.0038715099994988122,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[arrays_empty_EXC]": 0.0014476280002782005,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[arrays_empty_null_NEG]": 0.003849630999866349,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[boolean]": 0.00355978600009621,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[boolean_NEG]": 0.003597397000703495,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[complex_many_rules]": 0.003734044000339054,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[complex_multi_match]": 0.0036744799995176436,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[complex_multi_match_NEG]": 0.004908016000172211,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[complex_or]": 0.0020314940006755933,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[complex_or_NEG]": 0.0036209990003044368,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_ignorecase]": 0.0014121740000518912,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_ignorecase_NEG]": 0.004460997000023781,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_ignorecase_list]": 0.0014552840002579615,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_ignorecase_list_NEG]": 0.0038370350002878695,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_number]": 0.0036908899996888067,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_number_NEG]": 0.003579552999781299,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_number_list]": 0.0035295990001031896,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_number_list_NEG]": 0.003550067000105628,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_string]": 0.0037197950000518176,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_string_NEG]": 0.0036870740000267688,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_string_list]": 0.003669182000521687,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_but_string_list_NEG]": 0.003590212000744941,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_prefix]": 0.0037324500003705907,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_prefix_NEG]": 0.005714962000638479,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_suffix]": 0.0015954579998833651,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_anything_suffix_NEG]": 0.0038981380002951482,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_exists]": 0.003708225000082166,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_exists_NEG]": 0.0036175619998175534,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_exists_false]": 0.0014875430001666246,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_exists_false_NEG]": 0.0036306890001469583,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_ignorecase]": 0.0014494910001303651,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_ignorecase_NEG]": 0.0022499550000247837,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_ip_address]": 0.001652733999890188,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_ip_address_NEG]": 0.0038561120004487748,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_numeric_EXC]": 0.0015005679997557309,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_numeric_and]": 0.0013924160002716235,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_numeric_and_NEG]": 0.0036608429995794722,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_numeric_operatorcasing_EXC]": 0.0014972819999456988,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_numeric_syntax_EXC]": 0.0015550200000689074,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_prefix]": 0.0036298070003795146,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_prefix_NEG]": 0.0044056199999431556,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_prefix_ignorecase]": 0.0015064100002746272,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_suffix]": 0.0014896280003995344,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_suffix_NEG]": 0.0036105099998167134,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_suffix_ignorecase]": 0.0014976020001995494,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_suffix_ignorecase_NEG]": 0.003680842999528977,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_complex_EXC]": 0.0014996259997133166,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_nonrepeating]": 0.0015103460000318591,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_nonrepeating_NEG]": 0.003574672000013379,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_repeating]": 0.0014799890004724148,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_repeating_NEG]": 0.0035331640001459164,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[content_wildcard_simplified]": 0.001511899000433914,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[dot_joining_event]": 0.0015461140005754714,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[dot_joining_event_NEG]": 0.003541300999586383,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[dot_joining_pattern]": 0.0015292729999600851,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[dot_joining_pattern_NEG]": 0.003639126000507531,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[dynamodb]": 0.003614127000219014,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[exists_dynamodb]": 0.003604770000492863,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[exists_dynamodb_NEG]": 0.0014681070001643093,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[int_nolist_EXC]": 0.0015724129998488934,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[key_case_sensitive_NEG]": 0.0035870649999196758,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[list_within_dict]": 0.0036158909997539013,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[minimal]": 0.0035238179998486885,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[nested_json_NEG]": 0.0014388719996532018,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[null_value]": 0.0037587790002362453,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[null_value_NEG]": 0.0035512610002115252,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[number_comparison_float]": 0.0035999800002173288,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[operator_case_sensitive_EXC]": 0.0016447789998892404,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[operator_multiple_list]": 0.003840382999896974,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[or-anything-but]": 0.003991587000200525,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[or-exists-parent]": 0.0017205720000674773,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[or-exists]": 0.0014719739992870018,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[prefix]": 0.0038535079997927824,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[sample1]": 0.003866280999773153,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[string]": 0.003563042000223504,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[string_empty]": 0.003934719999961089,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern[string_nolist_EXC]": 0.0015971799998624192,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern_with_escape_characters": 0.0032033659999797237,
"tests/aws/services/events/test_events_patterns.py::TestEventPattern::test_event_pattern_with_multi_key": 0.003590323000025819,
"tests/aws/services/events/test_events.py::TestEventBus::test_create_list_describe_delete_custom_event_buses[regions0]": 0.0006602309999834688,
"tests/aws/services/events/test_events.py::TestEventBus::test_create_list_describe_delete_custom_event_buses[regions1]": 0.0006884530002935207,
"tests/aws/services/events/test_events.py::TestEventBus::test_create_multiple_event_buses_same_name": 0.011988971999926434,
"tests/aws/services/events/test_events.py::TestEventBus::test_delete_default_event_bus": 0.004281057999833138,
"tests/aws/services/events/test_events.py::TestEventBus::test_describe_delete_not_existing_event_bus": 0.006550220000008267,
"tests/aws/services/events/test_events.py::TestEventBus::test_list_event_buses_with_limit": 0.0006926520004526537,
"tests/aws/services/events/test_events.py::TestEventBus::test_list_event_buses_with_prefix": 0.0214312120001523,
"tests/aws/services/events/test_events.py::TestEventBus::test_put_events_into_event_bus[domain]": 0.057387027999538986,
"tests/aws/services/events/test_events.py::TestEventBus::test_put_events_into_event_bus[path]": 0.05928410900014569,
"tests/aws/services/events/test_events.py::TestEventBus::test_put_events_into_event_bus[standard]": 0.05826225999999224,
"tests/aws/services/events/test_events.py::TestEventBus::test_put_events_nonexistent_event_bus": 0.05140731999972559,
"tests/aws/services/events/test_events.py::TestEventBus::test_put_events_to_default_eventbus_for_custom_eventbus": 1.7041428269999415,
"tests/aws/services/events/test_events.py::TestEventPattern::test_put_events_pattern_nested": 10.072863803999553,
"tests/aws/services/events/test_events.py::TestEventPattern::test_put_events_pattern_with_values_in_array": 5.089951230000224,
"tests/aws/services/events/test_events.py::TestEventRule::test_delete_rule_with_targets": 0.023350596000000223,
"tests/aws/services/events/test_events.py::TestEventRule::test_describe_nonexistent_rule": 0.000780304999807413,
"tests/aws/services/events/test_events.py::TestEventRule::test_disable_re_enable_rule[custom]": 0.030255252000188193,
"tests/aws/services/events/test_events.py::TestEventRule::test_disable_re_enable_rule[default]": 0.02048718900005042,
"tests/aws/services/events/test_events.py::TestEventRule::test_list_rule_with_limit": 0.0740627290001612,
"tests/aws/services/events/test_events.py::TestEventRule::test_put_list_with_prefix_describe_delete_rule[custom]": 0.026617930000156775,
"tests/aws/services/events/test_events.py::TestEventRule::test_put_list_with_prefix_describe_delete_rule[default]": 0.0189732459998595,
"tests/aws/services/events/test_events.py::TestEventRule::test_put_multiple_rules_with_same_name": 0.02579730000024938,
"tests/aws/services/events/test_events.py::TestEventRule::test_update_rule_with_targets": 0.03146100399953866,
"tests/aws/services/events/test_events.py::TestEventTarget::test_add_exceed_fife_targets_per_rule": 0.0006933620002200769,
"tests/aws/services/events/test_events.py::TestEventTarget::test_list_target_by_rule_limit": 0.0006489980005426332,
"tests/aws/services/events/test_events.py::TestEventTarget::test_put_list_remove_target[custom]": 0.036523220000617584,
"tests/aws/services/events/test_events.py::TestEventTarget::test_put_list_remove_target[default]": 0.02891141999998581,
"tests/aws/services/events/test_events.py::TestEventTarget::test_put_target_id_validation": 0.026753555000141205,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth0]": 0.04163531999938641,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth1]": 0.03236132299980454,
"tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth2]": 0.03525219499988452,
"tests/aws/services/events/test_events.py::TestEvents::test_create_connection_validations": 0.005145731000084197,
"tests/aws/services/events/test_events.py::TestEvents::test_events_written_to_disk_are_timestamp_prefixed_for_chronological_ordering": 0.03277347900029781,
"tests/aws/services/events/test_events.py::TestEvents::test_put_event_without_detail": 0.0006526370002575277,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_time": 0.10447274700027265,
"tests/aws/services/events/test_events.py::TestEvents::test_put_events_without_source": 0.00085949399999663,
"tests/aws/services/events/test_events.py::TestEvents::test_scheduled_expression_events": 60.58539602499968,
"tests/aws/services/events/test_events_inputs.py::TestInputPath::test_put_events_with_input_path": 0.05301186500037147,
"tests/aws/services/events/test_events_inputs.py::TestInputPath::test_put_events_with_input_path_max_level_depth": 0.05492754099986996,
"tests/aws/services/events/test_events_inputs.py::TestInputPath::test_put_events_with_input_path_multiple_targets": 0.0859034850000171,
"tests/aws/services/events/test_events_inputs.py::TestInputPath::test_put_events_with_input_path_nested[event_detail0]": 0.05314611599987984,
"tests/aws/services/events/test_events_inputs.py::TestInputPath::test_put_events_with_input_path_nested[event_detail1]": 0.0539210189995174,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_input_transformer_predefined_variables[\"Message containing all pre defined variables <aws.events.rule-arn> <aws.events.rule-name> <aws.events.event.ingestion-time>\"]": 0.0006472159998338611,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_input_transformer_predefined_variables[{\"originalEvent\": <aws.events.event>, \"originalEventJson\": <aws.events.event.json>}]": 0.0006504220000351779,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_put_events_with_input_transformer_input_template_json": 0.0006976099998610152,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_put_events_with_input_transformer_input_template_string[\"Event of <detail-type> type, at time <timestamp>, info extracted from detail <command>\"]": 0.11978025600001274,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_put_events_with_input_transformer_input_template_string[\"{[/Check with special starting characters for event of <detail-type> type\"]": 0.11936591799985763,
"tests/aws/services/events/test_events_inputs.py::TestInputTransformer::test_put_events_with_input_transformer_missing_keys": 0.0006529859997499443,
"tests/aws/services/events/test_events_inputs.py::test_put_event_input_path_and_input_transformer": 0.0006545790001837304,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetFirehose::test_put_events_with_target_firehose": 0.07406386900083817,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetKinesis::test_put_events_with_target_kinesis": 0.9582597469998291,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetLambda::test_put_events_with_target_lambda": 4.074284712000008,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetLambda::test_put_events_with_target_lambda_list_entries_partial_match": 4.080728459999591,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetLambda::test_put_events_with_target_lambda_list_entry": 4.072307003000333,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetSns::test_put_events_with_target_sns[domain]": 0.05766030499989938,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetSns::test_put_events_with_target_sns[path]": 0.058427959999335144,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetSns::test_put_events_with_target_sns[standard]": 0.06193175200041878,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetSqs::test_put_events_with_target_sqs": 0.05069734699964101,
"tests/aws/services/events/test_events_targets.py::TestEventsTargetSqs::test_put_events_with_target_sqs_event_detail_match": 5.064694446999965,
"tests/aws/services/events/test_events_rules.py::test_put_event_with_content_base_rule_in_pattern": 3.05817666799976,
"tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_anything_but_to_sqs": 5.094898402000126,
"tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_exists_false_to_sqs": 5.073232123999787,
"tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_exists_true_to_sqs": 5.072802537000371,
"tests/aws/services/events/test_events_rules.py::test_put_rule": 0.0108890360006626,
"tests/aws/services/events/test_events_rules.py::test_rule_disable": 0.013244489000499016,
"tests/aws/services/events/test_events_rules.py::test_verify_rule_event_content": 40.07963360399981,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::test_schedule_cron_target_sqs": 120.03779061500018,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0 10 * * ? *)]": 0.01327648499955103,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0 18 ? * MON-FRI *)]": 0.012037883999710175,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0 8 1 * ? *)]": 0.012348537999969267,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0/10 * ? * MON-FRI *)]": 0.012263859000086086,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0/15 * * * ? *)]": 0.012305637000281422,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0/30 0-2 ? * MON-FRI *)]": 0.012226917999214493,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0/30 20-23 ? * MON-FRI *)]": 0.01258753699994486,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(0/5 8-17 ? * MON-FRI *)]": 0.012200225000015053,
"tests/aws/services/events/test_events_schedule.py::TestScheduleCron::tests_put_rule_with_schedule_cron[cron(15 12 * * ? *)]": 0.012436413999694196,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[ rate(10 minutes)]": 0.003720255000189354,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate( 10 minutes )]": 0.004014397999526409,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate()]": 0.003560335999736708,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(-10 minutes)]": 0.0034835210003620887,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(0 minutes)]": 0.0037903859993093647,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(1 days)]": 0.003605547999541159,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(1 hours)]": 0.003846802999760257,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(1 minutes)]": 0.0035924049998357077,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 MINUTES)]": 0.0035291239992147894,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 day)]": 0.003535799000019324,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 hour)]": 0.003976045999934286,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 minute)]": 0.003617651000240585,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 minutess)]": 0.0038765389995205624,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 seconds)]": 0.004241673999786144,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10 years)]": 0.003675238999676367,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(10)]": 0.004103447000034066,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_invalid_schedule_rate[rate(foo minutes)]": 0.003537761000188766,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_put_rule_with_schedule_rate": 0.014049940999939281,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::test_scheduled_rule_logs": 0.0019047969994971936,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::tests_put_rule_with_schedule_custom_event_bus": 0.009501167000507849,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::tests_schedule_rate_custom_input_target_sqs": 60.04149160999941,
"tests/aws/services/events/test_events_schedule.py::TestScheduleRate::tests_schedule_rate_target_sqs": 120.06500377700013,
"tests/aws/services/events/test_events_tags.py::TestEventBusTags::test_create_event_bus_with_tags": 0.010134832000403549,
"tests/aws/services/events/test_events_tags.py::TestEventBusTags::test_list_tags_for_deleted_event_bus": 0.000651013000151579,
"tests/aws/services/events/test_events_tags.py::TestRuleTags::test_list_tags_for_deleted_rule": 0.000677701000313391,
"tests/aws/services/events/test_events_tags.py::TestRuleTags::test_put_rule_with_tags": 0.017860927001038363,
"tests/aws/services/events/test_events_tags.py::test_recreate_tagged_resource_without_tags[event_bus-event_bus_custom]": 0.019312807000460452,
"tests/aws/services/events/test_events_tags.py::test_recreate_tagged_resource_without_tags[event_bus-event_bus_default]": 0.0070504489999621,
"tests/aws/services/events/test_events_tags.py::test_recreate_tagged_resource_without_tags[rule-event_bus_custom]": 0.027076573000158533,
"tests/aws/services/events/test_events_tags.py::test_recreate_tagged_resource_without_tags[rule-event_bus_default]": 0.02480174900028942,
"tests/aws/services/events/test_events_tags.py::tests_tag_list_untag_not_existing_resource[not_existing_event_bus]": 0.0006322569997792016,
"tests/aws/services/events/test_events_tags.py::tests_tag_list_untag_not_existing_resource[not_existing_rule]": 0.0006705800005875062,
"tests/aws/services/events/test_events_tags.py::tests_tag_untag_resource[event_bus-event_bus_custom]": 0.0203422950003187,
"tests/aws/services/events/test_events_tags.py::tests_tag_untag_resource[event_bus-event_bus_default]": 0.017766653000307997,
"tests/aws/services/events/test_events_tags.py::tests_tag_untag_resource[rule-event_bus_custom]": 0.027758662999985972,
"tests/aws/services/events/test_events_tags.py::tests_tag_untag_resource[rule-event_bus_default]": 0.02280305899967061,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup": 16.682404139000482,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source": 21.57068451699979,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams": 51.71598473699942,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]": 30.490894719999687,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path]": 39.506607539000015,
"tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port]": 21.79938558099957,
"tests/aws/services/firehose/test_firehose.py::test_kinesis_firehose_http[False]": 0.023338534000231448,
"tests/aws/services/firehose/test_firehose.py::test_kinesis_firehose_http[True]": 1.4540491639995707,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_role_with_malformed_assume_role_policy_document": 0.004705566000211547,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_add_permission_boundary_afterwards": 0.03330467699970541,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_with_permission_boundary": 0.029064715999993496,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_role": 0.04592235799964328,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_root": 0.01289696899948467,
"tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user": 0.05701478599985421,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_detach_role_policy": 0.030766692000270268,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_iam_role_to_new_iam_user": 0.030567860000246583,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_describe_role": 0.028786102000594838,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_role_with_assume_role_policy": 0.05207606500016482,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_user_with_tags": 0.009978695999961928,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_delete_non_existent_policy_returns_no_such_entity": 0.0033248220001951267,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_instance_profile_tags": 0.05089166099969589,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_list_roles_with_permission_boundary": 0.03269908799984478,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_recreate_iam_role": 0.018772590999560634,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_role_attach_policy": 0.10975655199990797,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_service_linked_role_name_should_match_aws[ecs.amazonaws.com-AWSServiceRoleForECS]": 0.008030930000131775,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_service_linked_role_name_should_match_aws[eks.amazonaws.com-AWSServiceRoleForAmazonEKS]": 0.006137895999927423,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_simulate_principle_policy": 0.007786730000134412,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_update_assume_role_policy": 0.015577630000279896,
"tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_user_attach_policy": 0.10989110800073831,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_add_tags_to_stream": 0.5786418089996914,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count": 0.5712265680003838,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_stream_name_raises": 0.01844798900083333,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records": 0.6130720450000808,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_empty_stream": 0.583405748000132,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_next_shard_iterator": 0.5845261870003924,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_shard_iterator_with_surrounding_quotes": 0.5847598539994578,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_record_lifecycle_data_integrity": 0.6674599180000769,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers": 1.1506190880004397,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard": 4.2343085629995585,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout": 6.162860149999688,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_with_sequence_number_as_iterator": 4.268794744999468,
"tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl": 38.361802511999485,
"tests/aws/services/kms/test_kms.py::TestKMS::test_all_types_of_key_id_can_be_used_for_encryption": 0.022401146999527555,
"tests/aws/services/kms/test_kms.py::TestKMS::test_cant_delete_deleted_key": 0.010529081999720802,
"tests/aws/services/kms/test_kms.py::TestKMS::test_cant_use_disabled_or_deleted_keys": 0.017984269999942626,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_alias": 0.04114516800018464,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_invalid_key": 0.007888323000315722,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_same_name_two_keys": 0.01986698000018805,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_grant_with_valid_key": 0.014127600000392704,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key": 0.03861242899984063,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key_custom_id": 0.008676004000335524,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key_custom_key_material_hmac": 0.011761807999846496,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_key_custom_key_material_symmetric_decrypt": 0.00960813199981203,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_list_delete_alias": 0.020163886000318598,
"tests/aws/services/kms/test_kms.py::TestKMS::test_create_multi_region_key": 0.0583903430006103,
"tests/aws/services/kms/test_kms.py::TestKMS::test_describe_and_list_sign_key": 0.012050697999711701,
"tests/aws/services/kms/test_kms.py::TestKMS::test_disable_and_enable_key": 0.018474271998911718,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt[RSA_2048-RSAES_OAEP_SHA_256]": 0.037002936000590125,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt[SYMMETRIC_DEFAULT-SYMMETRIC_DEFAULT]": 0.010906342999987828,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_decrypt_encryption_context": 0.06399798199981888,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_2048-RSAES_OAEP_SHA_1]": 0.07918082400055937,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_2048-RSAES_OAEP_SHA_256]": 0.06223120999948151,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_3072-RSAES_OAEP_SHA_1]": 0.1592230399996879,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_3072-RSAES_OAEP_SHA_256]": 0.12174385900016205,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_1]": 0.3277773170002547,
"tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]": 1.015027845000077,
"tests/aws/services/kms/test_kms.py::TestKMS::test_error_messaging_for_invalid_keys": 0.07530746000020372,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_224-HMAC_SHA_224]": 0.039968367999790644,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_256-HMAC_SHA_256]": 0.043169828000372945,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_384-HMAC_SHA_384]": 0.041733261000445054,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_and_verify_mac[HMAC_512-HMAC_SHA_512]": 0.04114881100031198,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[1024]": 0.0279571300002317,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[12]": 0.02820306200055711,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[1]": 0.02801134199989974,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[44]": 0.027507586999945488,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[91]": 0.033136318999822834,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[0]": 0.02866168199943786,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[1025]": 0.027951593000125285,
"tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random_invalid_number_of_bytes[None]": 0.03255231100001765,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_does_not_exist": 0.03869968500021059,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_in_different_region": 0.05131406300006347,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_invalid_uuid": 0.033182945000589825,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import": 0.9153094140001485,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_public_key": 0.04717522900000404,
"tests/aws/services/kms/test_kms.py::TestKMS::test_get_put_list_key_policies": 0.016843358000187436,
"tests/aws/services/kms/test_kms.py::TestKMS::test_hmac_create_key": 0.039093694999792206,
"tests/aws/services/kms/test_kms.py::TestKMS::test_hmac_create_key_invalid_operations": 0.032325654000032955,
"tests/aws/services/kms/test_kms.py::TestKMS::test_import_key_asymmetric": 0.11729872400019303,
"tests/aws/services/kms/test_kms.py::TestKMS::test_import_key_symmetric": 0.20734712600005878,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_generate_mac[HMAC_224-HMAC_SHA_256]": 0.032217710000168154,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_generate_mac[HMAC_256-INVALID]": 0.03230021600029431,
"tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_key_usage": 0.9510721220003688,