forked from zenml-io/zenml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.test_durations
1513 lines (1513 loc) · 182 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/integration/examples/test_deepchecks.py::test_example": 37.76593694500002,
"tests/integration/examples/test_evidently.py::test_example": 44.578816048000135,
"tests/integration/examples/test_facets.py::test_example": 17.93815276400005,
"tests/integration/examples/test_great_expectations.py::test_example": 36.67548225600001,
"tests/integration/examples/test_huggingface.py::test_sequence_classification": 82.02338253799985,
"tests/integration/examples/test_lightgbm.py::test_example": 18.183318441000097,
"tests/integration/examples/test_mlflow_deployment.py::test_example": 1.913912411999945,
"tests/integration/examples/test_mlflow_registry.py::test_example": 0.22638852199997928,
"tests/integration/examples/test_mlflow_tracking.py::test_example": 33.82489725000005,
"tests/integration/examples/test_neural_prophet.py::test_example": 73.7382085820002,
"tests/integration/examples/test_pytorch.py::test_example": 26.653799964999962,
"tests/integration/examples/test_scipy.py::test_example": 18.994561089999706,
"tests/integration/examples/test_seldon.py::test_example": 0.01343574400016223,
"tests/integration/examples/test_sklearn.py::test_example": 18.073298817000023,
"tests/integration/examples/test_slack.py::test_example": 0.047125661000109176,
"tests/integration/examples/test_tensorflow.py::test_example": 0.000539110000090659,
"tests/integration/examples/test_whylogs.py::test_example": 22.653405770000063,
"tests/integration/examples/test_xgboost.py::test_example": 18.751801107999995,
"tests/integration/functional/artifacts/test_artifact_config.py::test_artifacts_linked_from_cache_steps": 5.722613175999868,
"tests/integration/functional/artifacts/test_artifact_config.py::test_artifacts_linked_from_cache_steps_same_id": 5.5699576369997885,
"tests/integration/functional/artifacts/test_artifact_config.py::test_link_minimalistic": 3.485321890999785,
"tests/integration/functional/artifacts/test_artifact_config.py::test_link_multiple_named_outputs": 2.9625088689999757,
"tests/integration/functional/artifacts/test_artifact_config.py::test_link_multiple_named_outputs_with_mixed_linkage": 4.224968328000614,
"tests/integration/functional/artifacts/test_artifact_config.py::test_link_multiple_named_outputs_with_self_context_and_caching": 5.240725193000344,
"tests/integration/functional/artifacts/test_artifact_config.py::test_link_multiple_named_outputs_without_links": 3.0135965639997266,
"tests/integration/functional/artifacts/test_utils.py::test_log_artifact_metadata_existing": 1.1619692589999886,
"tests/integration/functional/artifacts/test_utils.py::test_log_artifact_metadata_multi_output": 2.392889625999942,
"tests/integration/functional/artifacts/test_utils.py::test_log_artifact_metadata_raises_error_if_output_name_unclear": 2.2631211459997758,
"tests/integration/functional/artifacts/test_utils.py::test_log_artifact_metadata_single_output": 2.3480959419998726,
"tests/integration/functional/artifacts/test_utils.py::test_save_load_artifact_in_run": 8.640999665000209,
"tests/integration/functional/artifacts/test_utils.py::test_save_load_artifact_outside_run": 1.1636797720000231,
"tests/integration/functional/cli/test_artifact.py::test_artifact_list": 2.502585106999959,
"tests/integration/functional/cli/test_artifact.py::test_artifact_prune": 2.7513724519999414,
"tests/integration/functional/cli/test_artifact.py::test_artifact_update": 2.544811963000029,
"tests/integration/functional/cli/test_artifact.py::test_artifact_version_list": 2.514056116999882,
"tests/integration/functional/cli/test_artifact.py::test_artifact_version_update": 3.554075184000112,
"tests/integration/functional/cli/test_base.py::test_clean_user_config": 0.9525632080001287,
"tests/integration/functional/cli/test_base.py::test_init_creates_from_templates[e2e_batch]": 1.5916799869999068,
"tests/integration/functional/cli/test_base.py::test_init_creates_from_templates[nlp]": 1.911210925999967,
"tests/integration/functional/cli/test_base.py::test_init_creates_from_templates[starter]": 1.643989041000168,
"tests/integration/functional/cli/test_base.py::test_init_creates_zen_folder": 0.019772161999981108,
"tests/integration/functional/cli/test_cli.py::test_ZenMLCLI_formatter": 0.0013243239998246281,
"tests/integration/functional/cli/test_cli.py::test_cli": 0.02635108700019373,
"tests/integration/functional/cli/test_cli.py::test_cli_command_defines_a_cli_group": 0.0013053229999968607,
"tests/integration/functional/cli/test_cli.py::test_cli_does_not_set_custom_source_root_if_inside_repository": 0.18090874100016663,
"tests/integration/functional/cli/test_cli.py::test_cli_sets_custom_source_root_if_outside_of_repository": 0.9302926819998447,
"tests/integration/functional/cli/test_config.py::test_analytics_opt_in_amends_global_config": 0.014308160999917163,
"tests/integration/functional/cli/test_config.py::test_analytics_opt_out_amends_global_config": 0.013978155999893715,
"tests/integration/functional/cli/test_config.py::test_set_logging_verbosity_stops_when_not_real_level[abc]": 0.002338442000109353,
"tests/integration/functional/cli/test_config.py::test_set_logging_verbosity_stops_when_not_real_level[my_cat_is_called_aria]": 0.0022420420002617902,
"tests/integration/functional/cli/test_config.py::test_set_logging_verbosity_stops_when_not_real_level[pipeline123]": 0.003105256000026202,
"tests/integration/functional/cli/test_formatter.py::test_measure_table": 0.002004536000185908,
"tests/integration/functional/cli/test_formatter.py::test_write_zen_dl": 0.0015430280000146013,
"tests/integration/functional/cli/test_hub.py::test_hub_list": 1.0860935200000768,
"tests/integration/functional/cli/test_integration.py::test_integration_get_requirements_all": 0.015991992999715876,
"tests/integration/functional/cli/test_integration.py::test_integration_get_requirements_inexistent_integration[123]": 0.002594347000012931,
"tests/integration/functional/cli/test_integration.py::test_integration_get_requirements_inexistent_integration[Anti-Tensorflow]": 0.0021564399999078887,
"tests/integration/functional/cli/test_integration.py::test_integration_get_requirements_inexistent_integration[zenflow]": 0.0021408400000382244,
"tests/integration/functional/cli/test_integration.py::test_integration_get_requirements_specific_integration": 0.0038329710000652994,
"tests/integration/functional/cli/test_integration.py::test_integration_install_all": 0.004980690000138566,
"tests/integration/functional/cli/test_integration.py::test_integration_install_inexistent_integration[123]": 0.00375236800005041,
"tests/integration/functional/cli/test_integration.py::test_integration_install_inexistent_integration[Anti-Tensorflow]": 0.004052474999980404,
"tests/integration/functional/cli/test_integration.py::test_integration_install_inexistent_integration[zenflow]": 0.0046310860000176035,
"tests/integration/functional/cli/test_integration.py::test_integration_install_multiple_integrations": 0.0042998789999728615,
"tests/integration/functional/cli/test_integration.py::test_integration_install_specific_integration[airflow]": 0.0052596970001559384,
"tests/integration/functional/cli/test_integration.py::test_integration_install_specific_integration[sklearn]": 0.004452580999895872,
"tests/integration/functional/cli/test_integration.py::test_integration_install_specific_integration[tensorflow]": 0.0043452789998355,
"tests/integration/functional/cli/test_integration.py::test_integration_list": 1.1199886009999318,
"tests/integration/functional/cli/test_integration.py::test_integration_requirements_exporting": 0.004271278000032908,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_all": 0.01065949499979979,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_inexistent_integration[123]": 0.0037088680001033936,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_inexistent_integration[Anti-Tensorflow]": 0.003562567000017225,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_inexistent_integration[zenflow]": 0.0036093660000915406,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_specific_integration[airflow]": 0.011568811999950412,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_specific_integration[sklearn]": 0.008025246999977753,
"tests/integration/functional/cli/test_integration.py::test_integration_uninstall_specific_integration[tensorflow]": 0.007863443000360348,
"tests/integration/functional/cli/test_model.py::test_model_create_full_names": 3.2758175740000297,
"tests/integration/functional/cli/test_model.py::test_model_create_only_required": 3.174627945999646,
"tests/integration/functional/cli/test_model.py::test_model_create_short_names": 4.055899303999922,
"tests/integration/functional/cli/test_model.py::test_model_create_without_required_fails": 3.9470225580000715,
"tests/integration/functional/cli/test_model.py::test_model_delete_found": 3.2105255939998187,
"tests/integration/functional/cli/test_model.py::test_model_delete_not_found": 4.513233660999958,
"tests/integration/functional/cli/test_model.py::test_model_list": 3.2393953599998895,
"tests/integration/functional/cli/test_model.py::test_model_update": 3.262766443000146,
"tests/integration/functional/cli/test_model.py::test_model_version_delete_found": 3.2907305999999608,
"tests/integration/functional/cli/test_model.py::test_model_version_delete_not_found": 3.157172151000168,
"tests/integration/functional/cli/test_model.py::test_model_version_links_list[data_artifacts]": 3.193657131000009,
"tests/integration/functional/cli/test_model.py::test_model_version_links_list[deployment_artifacts]": 3.1936714569999367,
"tests/integration/functional/cli/test_model.py::test_model_version_links_list[model_artifacts]": 3.305575039999667,
"tests/integration/functional/cli/test_model.py::test_model_version_links_list[runs]": 3.2299188760002835,
"tests/integration/functional/cli/test_model.py::test_model_version_list": 3.2711113319999185,
"tests/integration/functional/cli/test_model.py::test_model_version_list_fails_on_bad_model": 3.247708474999854,
"tests/integration/functional/cli/test_model.py::test_model_version_update": 4.008187265999823,
"tests/integration/functional/cli/test_model_registry.py::test_get_model": 0.0076479370002289215,
"tests/integration/functional/cli/test_model_registry.py::test_get_model_version": 0.014453755999966234,
"tests/integration/functional/cli/test_model_registry.py::test_list_model_versions": 0.0086355530002038,
"tests/integration/functional/cli/test_model_registry.py::test_list_models": 0.006482714999947348,
"tests/integration/functional/cli/test_model_registry.py::test_update_model": 0.005061190000105853,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_delete": 0.9584230880000177,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_doesnt_write_output_file_if_no_build_needed": 4.007570977999876,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_list": 0.9750501810003698,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_with_config_file": 3.9542361389999314,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_with_different_stack": 3.236543438999888,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_with_nonexistent_name_fails": 2.920209014999955,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_without_repo": 3.165552203999823,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_build_writes_output_file": 3.181407643000057,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_delete": 2.568359958000201,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_list": 2.523850872999901,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_registration_with_repo": 2.053968299999724,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_registration_without_repo": 2.020588890999761,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_delete": 2.572276681999938,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_list": 2.612890040000366,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_config_file": 3.3496300499998597,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_custom_build_file": 3.3882004840002082,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_custom_build_id": 4.195035306999898,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_different_stack": 3.3970386670000607,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_invalid_build_id_fails": 3.194453009999961,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_with_nonexistent_name_fails": 2.050805601000093,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_run_without_repo": 3.274575709999908,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_schedule_delete": 3.3812733639999806,
"tests/integration/functional/cli/test_pipeline.py::test_pipeline_schedule_list": 2.5042106290002266,
"tests/integration/functional/cli/test_secret.py::test_create_fails_with_bad_scope": 0.010127882000233512,
"tests/integration/functional/cli/test_secret.py::test_create_secret": 0.04605052700003398,
"tests/integration/functional/cli/test_secret.py::test_create_secret_with_scope": 0.049897896000175024,
"tests/integration/functional/cli/test_secret.py::test_create_secret_with_values": 0.06124520000003031,
"tests/integration/functional/cli/test_secret.py::test_delete_secret_works": 0.0514310230000774,
"tests/integration/functional/cli/test_secret.py::test_export_import_secret": 0.09734294800023235,
"tests/integration/functional/cli/test_secret.py::test_get_secret_with_prefix_works": 0.05343265899978178,
"tests/integration/functional/cli/test_secret.py::test_get_secret_with_scope_works": 0.05969927199976155,
"tests/integration/functional/cli/test_secret.py::test_get_secret_works": 0.05229664000012235,
"tests/integration/functional/cli/test_secret.py::test_list_secret_works": 0.0493179859997781,
"tests/integration/functional/cli/test_secret.py::test_rename_secret_works": 0.09772115400005532,
"tests/integration/functional/cli/test_secret.py::test_update_secret_works": 0.21188300499989055,
"tests/integration/functional/cli/test_server.py::test_server_cli_up_down": 34.51465690500004,
"tests/integration/functional/cli/test_stack.py::test_delete_stack_default_stack_fails": 1.0022619789997407,
"tests/integration/functional/cli/test_stack.py::test_delete_stack_recursively_with_flag_succeeds": 1.0854003739998461,
"tests/integration/functional/cli/test_stack.py::test_delete_stack_with_flag_succeeds": 1.689133282000057,
"tests/integration/functional/cli/test_stack.py::test_describe_stack_bad_input_fails[abc_def]": 0.015018565000218587,
"tests/integration/functional/cli/test_stack.py::test_describe_stack_bad_input_fails[my_other_cat_is_called_blupus]": 0.01111583600004451,
"tests/integration/functional/cli/test_stack.py::test_describe_stack_bad_input_fails[stack123]": 0.011008803000095213,
"tests/integration/functional/cli/test_stack.py::test_describe_stack_contains_local_stack": 0.007313133999787169,
"tests/integration/functional/cli/test_stack.py::test_remove_component_core_component_fails": 1.019084373999931,
"tests/integration/functional/cli/test_stack.py::test_remove_component_from_nonexistent_stack_fails": 0.9320257159999983,
"tests/integration/functional/cli/test_stack.py::test_remove_component_non_core_component_succeeds": 1.09418248399993,
"tests/integration/functional/cli/test_stack.py::test_rename_stack_active_stack_succeeds": 1.0091419500001848,
"tests/integration/functional/cli/test_stack.py::test_rename_stack_default_stack_fails": 0.9422308570001405,
"tests/integration/functional/cli/test_stack.py::test_rename_stack_new_name_with_existing_name_fails": 0.9435772970000471,
"tests/integration/functional/cli/test_stack.py::test_rename_stack_non_active_stack_succeeds": 1.0033496810001452,
"tests/integration/functional/cli/test_stack.py::test_rename_stack_nonexistent_stack_fails": 0.9293013359997531,
"tests/integration/functional/cli/test_stack.py::test_stack_export": 0.9511159140001837,
"tests/integration/functional/cli/test_stack.py::test_stack_export_delete_import": 1.186461449000035,
"tests/integration/functional/cli/test_stack.py::test_stack_export_import_reuses_components": 1.1255334790000688,
"tests/integration/functional/cli/test_stack.py::test_update_stack_active_stack_succeeds": 1.0390111579997665,
"tests/integration/functional/cli/test_stack.py::test_update_stack_adding_component_succeeds": 1.0748913489999268,
"tests/integration/functional/cli/test_stack.py::test_update_stack_adding_to_default_stack_fails": 1.0354215590000422,
"tests/integration/functional/cli/test_stack.py::test_update_stack_nonexistent_stack_fails": 0.9742871210000885,
"tests/integration/functional/cli/test_stack.py::test_update_stack_update_on_default_fails": 0.9711079939997944,
"tests/integration/functional/cli/test_stack.py::test_updating_non_active_stack_succeeds": 1.0287943369999084,
"tests/integration/functional/cli/test_stack_components.py::test_delete_default_component_fails": 0.9482397119995767,
"tests/integration/functional/cli/test_stack_components.py::test_remove_attribute_component_non_existent_attributes_fail": 0.950428915999737,
"tests/integration/functional/cli/test_stack_components.py::test_remove_attribute_component_nonexistent_component_fails": 0.9482611110001926,
"tests/integration/functional/cli/test_stack_components.py::test_remove_attribute_component_required_attribute_fails": 0.9980963200000588,
"tests/integration/functional/cli/test_stack_components.py::test_remove_attribute_component_succeeds": 1.023023091999903,
"tests/integration/functional/cli/test_stack_components.py::test_remove_labels": 1.0030655119996936,
"tests/integration/functional/cli/test_stack_components.py::test_rename_stack_component_nonexistent_component_fails": 0.9497674709998591,
"tests/integration/functional/cli/test_stack_components.py::test_rename_stack_component_to_preexisting_name_fails": 0.9751402839999628,
"tests/integration/functional/cli/test_stack_components.py::test_renaming_core_component_succeeds": 1.0100411390001227,
"tests/integration/functional/cli/test_stack_components.py::test_renaming_default_component_fails": 0.9919488019997971,
"tests/integration/functional/cli/test_stack_components.py::test_renaming_non_core_component_succeeds": 1.0057766370000536,
"tests/integration/functional/cli/test_stack_components.py::test_set_labels_on_register": 0.9889630479997322,
"tests/integration/functional/cli/test_stack_components.py::test_set_labels_on_update": 0.9944682570001078,
"tests/integration/functional/cli/test_stack_components.py::test_update_stack_component_for_nonexistent_component_fails": 0.9538115810003092,
"tests/integration/functional/cli/test_stack_components.py::test_update_stack_component_succeeds": 1.0134355030002098,
"tests/integration/functional/cli/test_stack_components.py::test_update_stack_component_with_name_or_uuid_fails": 0.989550958000109,
"tests/integration/functional/cli/test_stack_components.py::test_update_stack_component_with_non_configured_property_fails": 0.9676224419995378,
"tests/integration/functional/cli/test_tag.py::test_tag_create_full_names": 0.022605210999927294,
"tests/integration/functional/cli/test_tag.py::test_tag_create_only_required": 0.02324612100005652,
"tests/integration/functional/cli/test_tag.py::test_tag_create_short_names": 0.02300841699980083,
"tests/integration/functional/cli/test_tag.py::test_tag_create_without_required_fails": 0.00489808800011815,
"tests/integration/functional/cli/test_tag.py::test_tag_delete_found": 0.01925194900036331,
"tests/integration/functional/cli/test_tag.py::test_tag_delete_not_found": 0.0062028119998558395,
"tests/integration/functional/cli/test_tag.py::test_tag_list": 0.07635788699985824,
"tests/integration/functional/cli/test_tag.py::test_tag_update": 0.06470977399999356,
"tests/integration/functional/cli/test_user_management.py::test_create_user_that_exists_fails": 0.2612506680000024,
"tests/integration/functional/cli/test_user_management.py::test_create_user_with_password_succeeds": 0.26029265300007864,
"tests/integration/functional/cli/test_user_management.py::test_delete_default_user_fails": 0.0073763349998898775,
"tests/integration/functional/cli/test_user_management.py::test_delete_user_succeeds": 0.29623030800007655,
"tests/integration/functional/cli/test_user_management.py::test_update_default_user_metadata_succeeds": 0.012948036000125285,
"tests/integration/functional/cli/test_user_management.py::test_update_default_user_name_fails": 0.007198732000006203,
"tests/integration/functional/cli/test_user_management.py::test_update_user_with_new_email_succeeds": 0.27146515599997656,
"tests/integration/functional/cli/test_user_management.py::test_update_user_with_new_full_name_succeeds": 0.27034843500018724,
"tests/integration/functional/cli/test_user_management.py::test_update_user_with_new_name_succeeds": 0.2717049610000686,
"tests/integration/functional/cli/test_utils.py::test_converting_structured_str_to_dict": 0.0023799440000402683,
"tests/integration/functional/cli/test_utils.py::test_error_raises_exception": 0.0014610279998805709,
"tests/integration/functional/cli/test_utils.py::test_file_expansion_works": 0.0025212469998905362,
"tests/integration/functional/cli/test_utils.py::test_get_package_information_works": 0.0021317409998573567,
"tests/integration/functional/cli/test_utils.py::test_parsing_name_and_arguments": 0.001305322999883174,
"tests/integration/functional/cli/test_utils.py::test_parsing_unknown_component_attributes": 0.0012623229999917385,
"tests/integration/functional/cli/test_utils.py::test_validate_keys": 0.002623548999963532,
"tests/integration/functional/cli/test_version.py::test_version_outputs_running_version_number": 0.007147431999783294,
"tests/integration/functional/model/test_model_version.py::TestModel::test_create_model_version_makes_proper_tagging": 1.0956598780003333,
"tests/integration/functional/model/test_model_version.py::TestModel::test_deletion_of_links[False]": 4.895070915999895,
"tests/integration/functional/model/test_model_version.py::TestModel::test_deletion_of_links[True]": 5.915976372000159,
"tests/integration/functional/model/test_model_version.py::TestModel::test_init_stage_logic": 0.9170593989997542,
"tests/integration/functional/model/test_model_version.py::TestModel::test_link_artifact_via_function": 9.944256607999705,
"tests/integration/functional/model/test_model_version.py::TestModel::test_link_artifact_via_save_artifact": 8.279441914999552,
"tests/integration/functional/model/test_model_version.py::TestModel::test_metadata_logging": 1.1543337029997929,
"tests/integration/functional/model/test_model_version.py::TestModel::test_metadata_logging_functional": 1.1701669359995321,
"tests/integration/functional/model/test_model_version.py::TestModel::test_metadata_logging_in_steps": 2.5810546660004547,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_config_differs_from_db_warns": 1.0024100709997583,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_create_model_and_version": 1.0488818189996891,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_created_with_warning": 0.966104615000404,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_exists": 0.9648359610000625,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_fetch_model_and_version_by_number": 1.0063748050001777,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_fetch_model_and_version_by_number_not_found": 0.9634731400001328,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_fetch_model_and_version_by_stage": 1.0142643759995735,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_fetch_model_and_version_by_stage_not_found": 0.9800801679998585,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_fetch_model_and_version_latest": 1.0146396730006018,
"tests/integration/functional/model/test_model_version.py::TestModel::test_model_version_config_differs_from_db_warns": 1.0874289989997123,
"tests/integration/functional/model/test_model_version.py::TestModel::test_recovery_flow": 0.9953197450004154,
"tests/integration/functional/model/test_model_version.py::TestModel::test_tags_properly_created": 0.9933063110001967,
"tests/integration/functional/model/test_model_version.py::TestModel::test_tags_properly_updated": 1.3527128369996717,
"tests/integration/functional/model/test_model_version.py::TestModel::test_that_artifacts_are_not_linked_to_models_outside_of_the_context": 4.322964287000104,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_create_model_version_makes_proper_tagging": 0.8974301159996685,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_deletion_of_links[False]": 5.806348885000261,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_deletion_of_links[True]": 5.022944135999751,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_init_stage_logic": 0.7383732329999475,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_metadata_logging": 0.8898821490001865,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_metadata_logging_functional": 1.028141828999651,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_metadata_logging_in_steps": 1.8727879669995673,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_config_differs_from_db_warns": 0.8953153600004953,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_create_model_and_version": 0.9073972389996925,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_created_with_warning": 0.759970577999411,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_exists": 0.8844886970000516,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_fetch_model_and_version_by_number": 0.9301667969994014,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_fetch_model_and_version_by_number_not_found": 0.7746619610006746,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_fetch_model_and_version_by_stage": 0.827261591000024,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_fetch_model_and_version_by_stage_not_found": 0.8236998370002766,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_fetch_model_and_version_latest": 0.7821355020005285,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_model_version_config_differs_from_db_warns": 1.0592227449997154,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_recovery_flow": 0.8021877130004214,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_tags_properly_created": 0.7675582029996804,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_tags_properly_updated": 1.376793110998733,
"tests/integration/functional/model/test_model_version.py::TestModelVersion::test_that_artifacts_are_not_linked_to_models_outside_of_the_context": 4.3979607259998375,
"tests/integration/functional/models/test_artifact.py::test_artifact_step_run_linkage": 4.3628059939999275,
"tests/integration/functional/models/test_artifact.py::test_artifact_tagging": 3.023466597999686,
"tests/integration/functional/models/test_artifact.py::test_artifact_versioning": 8.24613314300018,
"tests/integration/functional/models/test_artifact.py::test_artifact_versioning_duplication": 6.1456308049998825,
"tests/integration/functional/models/test_artifact.py::test_custom_artifact_name": 2.3556658070001504,
"tests/integration/functional/models/test_artifact.py::test_default_artifact_name": 2.9994298179999532,
"tests/integration/functional/models/test_artifact.py::test_disabling_artifact_metadata": 10.763572024999803,
"tests/integration/functional/models/test_artifact.py::test_disabling_artifact_visualization": 10.605466356000079,
"tests/integration/functional/models/test_artifact.py::test_load_artifact_visualization": 2.304982773999882,
"tests/integration/functional/models/test_artifact.py::test_multi_output_artifact_names": 2.4001710340000955,
"tests/integration/functional/models/test_pipeline.py::test_pipeline_run_linkage": 10.514613569000176,
"tests/integration/functional/models/test_pipeline_run.py::test_pipeline_run_artifacts": 7.13547150699992,
"tests/integration/functional/models/test_pipeline_run.py::test_pipeline_run_has_client_and_orchestrator_environment": 2.5719043299998248,
"tests/integration/functional/models/test_pipeline_run.py::test_scheduled_pipeline_run_has_schedule_id": 2.5044267030000356,
"tests/integration/functional/models/test_step_run.py::test_disabling_step_logs": 11.011093259000063,
"tests/integration/functional/models/test_step_run.py::test_step_run_has_docstring": 2.5077602920002846,
"tests/integration/functional/models/test_step_run.py::test_step_run_has_source_code": 3.370865112000047,
"tests/integration/functional/models/test_step_run.py::test_step_run_linkage": 3.691438830999914,
"tests/integration/functional/models/test_step_run.py::test_step_run_parent_steps_linkage": 3.3080677039999955,
"tests/integration/functional/models/test_step_run.py::test_step_run_with_too_long_docstring_is_truncated": 2.8218574259999514,
"tests/integration/functional/models/test_step_run.py::test_step_run_with_too_long_source_code_is_truncated": 2.8452983039999253,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_fails_with_pipeline_parameters_on_conflict_with_pipeline_parameters": 0.13278002700008074,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_fails_with_pipeline_parameters_on_conflict_with_step_parameters": 1.2314241050000874,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_not_overridden_for_extra": 3.062536284000089,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_not_overridden_for_model": 2.4963125199999467,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_not_overridden_for_model_version": 2.2279090570000335,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_not_warns_on_new_value": 2.2399504260001777,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_works_with_pipeline_parameters": 1.3944359439999516,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_config_from_file_works_with_pipeline_parameters_on_conflict_with_default_parameters": 1.4017153980000785,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_with_model_from_yaml": 3.9317949999999655,
"tests/integration/functional/pipelines/test_pipeline_config.py::test_pipeline_with_model_version_from_yaml": 3.3078972839985,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_pipeline_context": 1.2018538619995525,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_pipeline_context_available_as_config_yaml": 0.004250577999755478,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_pipeline_context_can_load_model_artifacts_and_metadata_in_lazy_mode": 3.0506267490000027,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_that_argument_as_get_artifact_of_model_in_pipeline_context_fails_if_not_found": 4.398020258000088,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_that_argument_as_get_artifact_of_model_version_in_pipeline_context_fails_if_not_found": 2.890680204000091,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_that_argument_can_be_a_get_artifact_of_model_in_pipeline_context": 4.061323698000251,
"tests/integration/functional/pipelines/test_pipeline_context.py::test_that_argument_can_be_a_get_artifact_of_model_version_in_pipeline_context": 4.176267209999423,
"tests/integration/functional/steps/test_external_artifact.py::test_external_artifact_by_id": 4.43389475999993,
"tests/integration/functional/steps/test_external_artifact.py::test_external_artifact_by_name_and_version": 7.06729097199991,
"tests/integration/functional/steps/test_external_artifact.py::test_external_artifact_by_name_only": 4.746002260000068,
"tests/integration/functional/steps/test_external_artifact.py::test_external_artifact_by_value": 2.322968876999994,
"tests/integration/functional/steps/test_model_version.py::test_create_new_version_only_in_pipeline": 5.041434881999976,
"tests/integration/functional/steps/test_model_version.py::test_create_new_version_only_in_step": 4.295798766000189,
"tests/integration/functional/steps/test_model_version.py::test_create_new_versions_both_pipeline_and_step": 4.88058153799966,
"tests/integration/functional/steps/test_model_version.py::test_model_passed_to_step_context_and_switches": 3.135234529000172,
"tests/integration/functional/steps/test_model_version.py::test_model_passed_to_step_context_via_pipeline": 2.455294302999846,
"tests/integration/functional/steps/test_model_version.py::test_model_passed_to_step_context_via_step": 2.4911644349999733,
"tests/integration/functional/steps/test_model_version.py::test_model_passed_to_step_context_via_step_and_pipeline": 2.4559699980000005,
"tests/integration/functional/steps/test_model_version.py::test_model_version_passed_to_step_context_and_switches": 2.3592089600024337,
"tests/integration/functional/steps/test_model_version.py::test_model_version_passed_to_step_context_via_pipeline": 1.8863527530011197,
"tests/integration/functional/steps/test_model_version.py::test_model_version_passed_to_step_context_via_step": 2.0089393099997324,
"tests/integration/functional/steps/test_model_version.py::test_model_version_passed_to_step_context_via_step_and_pipeline": 1.8476394680010344,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Configuration in pipeline only - not warns.]": 2.6884162349997496,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Configuration in step only - not warns.]": 3.509240274000149,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Pipeline and one of the steps ask to create new versions - warning to keep it in one place.]": 2.9222934539998278,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Pipeline with one step, which overrides model - warns that pipeline conf is useless.]": 2.543846257000041,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Pipeline with one step, which overrides model_version - warns that pipeline conf is useless.]": 2.0887765379993652,
"tests/integration/functional/steps/test_model_version.py::test_multiple_definitions_create_new_version_warns[Two steps ask to create new versions - warning to keep it in one place.]": 2.9407093379995786,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_context_pass_artifact_from_model_and_link_run": 5.736179741000342,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_mixed_context[Multiple steps pipeline (declarative+functional)]": 5.98215966700036,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_mixed_context[Multiple steps pipeline (declarative+functional+step+pipeline)]": 9.583252412000093,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_mixed_context[Single step pipeline (declarative+functional)]": 5.177251830999921,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_mixed_context[Single step pipeline (declarative+functional+step+pipeline)]": 6.291753861999496,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_pipeline_context[Multiple steps pipeline]": 4.973972935000347,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_pipeline_context[Single step pipeline]": 5.0872974740000245,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_step_context[Multiple steps pipeline]": 5.0181257659996845,
"tests/integration/functional/steps/test_model_version.py::test_pipeline_run_link_attached_from_step_context[Single step pipeline]": 4.232454770000004,
"tests/integration/functional/steps/test_model_version.py::test_recovery_of_steps[custom_running_name]": 7.935608918000526,
"tests/integration/functional/steps/test_model_version.py::test_recovery_of_steps[default_running_name]": 6.799407892999625,
"tests/integration/functional/steps/test_model_version.py::test_that_artifact_is_removed_on_deletion": 2.821937491999961,
"tests/integration/functional/steps/test_model_version.py::test_that_consumption_also_registers_run_in_model": 6.865526518000024,
"tests/integration/functional/steps/test_model_version.py::test_that_consumption_also_registers_run_in_model_version": 5.916077644000325,
"tests/integration/functional/steps/test_model_version.py::test_that_if_some_steps_request_new_version_but_cached_new_version_is_still_created": 4.906100304000574,
"tests/integration/functional/steps/test_model_version.py::test_that_pipeline_run_is_removed_on_deletion_of_pipeline": 2.7639731179997398,
"tests/integration/functional/steps/test_model_version.py::test_that_pipeline_run_is_removed_on_deletion_of_pipeline_run": 3.737926896999852,
"tests/integration/functional/steps/test_step_context.py::test_input_artifacts_property": 1.3951349440001195,
"tests/integration/functional/steps/test_step_context.py::test_materializer_can_access_step_context": 1.389032133000228,
"tests/integration/functional/steps/test_step_context.py::test_step_can_access_step_context": 1.2705255629998646,
"tests/integration/functional/steps/test_utils.py::test_log_step_metadata_using_latest_run": 2.4885686559998703,
"tests/integration/functional/steps/test_utils.py::test_log_step_metadata_using_specific_params": 2.5214940140001545,
"tests/integration/functional/steps/test_utils.py::test_log_step_metadata_within_step": 3.2401540440000645,
"tests/integration/functional/test_client.py::TestArtifact::test_prune_data_and_version": 1.0312374050001836,
"tests/integration/functional/test_client.py::TestArtifact::test_prune_full": 1.059768227999939,
"tests/integration/functional/test_client.py::TestArtifact::test_prune_only_artifact_version": 1.0481208149999475,
"tests/integration/functional/test_client.py::TestModel::test_create_model_duplicate_fail": 0.9860255500000221,
"tests/integration/functional/test_client.py::TestModel::test_create_model_pass": 1.0056150440000238,
"tests/integration/functional/test_client.py::TestModel::test_delete_model_found": 1.0023462840003958,
"tests/integration/functional/test_client.py::TestModel::test_delete_model_not_found": 0.9329158240000197,
"tests/integration/functional/test_client.py::TestModel::test_get_model_found": 0.97603436899999,
"tests/integration/functional/test_client.py::TestModel::test_get_model_not_found": 0.9295481219996873,
"tests/integration/functional/test_client.py::TestModel::test_latest_version_retrieval": 1.0119087690000015,
"tests/integration/functional/test_client.py::TestModel::test_list_by_tags": 1.0388558459997057,
"tests/integration/functional/test_client.py::TestModel::test_name_is_mutable": 0.960228620999942,
"tests/integration/functional/test_client.py::TestModel::test_update_model": 1.0568262720003077,
"tests/integration/functional/test_client.py::TestModelVersion::test_create_model_version_duplicate_fails": 1.022245281000096,
"tests/integration/functional/test_client.py::TestModelVersion::test_create_model_version_pass": 1.113280266999709,
"tests/integration/functional/test_client.py::TestModelVersion::test_delete_model_version_found": 0.9925337799998033,
"tests/integration/functional/test_client.py::TestModelVersion::test_delete_model_version_not_found": 0.9767925810001543,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_by_latest": 1.1209780930000761,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_by_stage": 2.0348678870000185,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_by_id_found": 1.0102850890000354,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_by_index_found": 1.0038095749998774,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_by_name_found": 0.9984719750000295,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_by_stage_found": 1.0414944530002685,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_by_stage_not_found": 1.0194185540003673,
"tests/integration/functional/test_client.py::TestModelVersion::test_get_model_version_not_found": 0.9994861669999864,
"tests/integration/functional/test_client.py::TestModelVersion::test_list_model_version": 2.2563411120002,
"tests/integration/functional/test_client.py::TestModelVersion::test_name_and_description_is_mutable": 1.0307814650000182,
"tests/integration/functional/test_client.py::TestModelVersion::test_stage_not_found": 1.0046130900000207,
"tests/integration/functional/test_client.py::TestModelVersion::test_update_model_version": 1.2454892390001078,
"tests/integration/functional/test_client.py::test_activating_a_stack_updates_the_config_file": 1.0299360849999175,
"tests/integration/functional/test_client.py::test_activating_nonexisting_stack_fails": 0.9252242649995424,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[code_repository]": 1.019507988999976,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[flavor]": 0.9802645439999651,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[stack]": 1.0749406120000913,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[stack_component]": 1.062393572000019,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[user]": 1.0916302069999801,
"tests/integration/functional/test_client.py::test_basic_crud_for_entity[workspace]": 1.091735318000019,
"tests/integration/functional/test_client.py::test_create_run_metadata_for_artifact": 2.4831037290000495,
"tests/integration/functional/test_client.py::test_create_run_metadata_for_pipeline_run": 2.466284693999796,
"tests/integration/functional/test_client.py::test_create_run_metadata_for_pipeline_run_and_component": 2.514252596000233,
"tests/integration/functional/test_client.py::test_create_run_metadata_for_step_run": 2.4883987200000774,
"tests/integration/functional/test_client.py::test_create_run_metadata_for_step_run_and_component": 2.543550716000027,
"tests/integration/functional/test_client.py::test_create_secret_default_scope": 0.0290293330001532,
"tests/integration/functional/test_client.py::test_create_secret_existing_name_different_scope": 0.05312767400027951,
"tests/integration/functional/test_client.py::test_create_secret_existing_name_scope": 0.03535044800014475,
"tests/integration/functional/test_client.py::test_create_secret_existing_name_user_scope": 0.03479183700005706,
"tests/integration/functional/test_client.py::test_create_secret_user_scope": 0.030525360000183355,
"tests/integration/functional/test_client.py::test_creating_repository_instance_during_step_execution": 0.0024875449996670795,
"tests/integration/functional/test_client.py::test_deleting_builds": 0.9697282770000584,
"tests/integration/functional/test_client.py::test_deleting_deployments": 0.9842411429999629,
"tests/integration/functional/test_client.py::test_deregistering_a_non_active_stack": 1.0232783609999387,
"tests/integration/functional/test_client.py::test_deregistering_a_stack_component_in_stack_fails": 1.9370258139999805,
"tests/integration/functional/test_client.py::test_deregistering_a_stack_component_that_is_part_of_a_registered_stack": 0.9681426480001392,
"tests/integration/functional/test_client.py::test_deregistering_the_active_stack": 0.9538613829997757,
"tests/integration/functional/test_client.py::test_finding_repository_directory_with_explicit_path": 0.9814666930001295,
"tests/integration/functional/test_client.py::test_freshly_initialized_repo_attributes": 0.020984880000014527,
"tests/integration/functional/test_client.py::test_get_run": 2.5070294609997745,
"tests/integration/functional/test_client.py::test_get_run_fails_for_non_existent_run": 0.9735993510000753,
"tests/integration/functional/test_client.py::test_get_unlisted_runs": 3.784757890000037,
"tests/integration/functional/test_client.py::test_getting_a_nonexisting_stack_component": 0.9260725799999818,
"tests/integration/functional/test_client.py::test_getting_a_pipeline": 1.012382962999709,
"tests/integration/functional/test_client.py::test_getting_a_stack_component": 0.9446366199999829,
"tests/integration/functional/test_client.py::test_getting_builds": 0.9489563990000534,
"tests/integration/functional/test_client.py::test_getting_deployments": 0.9634818419999647,
"tests/integration/functional/test_client.py::test_initializing_repo_creates_directory_and_uses_default_stack": 0.9613556259998859,
"tests/integration/functional/test_client.py::test_initializing_repo_twice_fails": 0.011425310000049649,
"tests/integration/functional/test_client.py::test_listing_builds": 0.9464990539997871,
"tests/integration/functional/test_client.py::test_listing_deployments": 0.9938199249997979,
"tests/integration/functional/test_client.py::test_listing_pipelines": 1.9813161319998471,
"tests/integration/functional/test_client.py::test_register_a_stack_with_unregistered_component_fails": 0.9457218319998901,
"tests/integration/functional/test_client.py::test_registering_a_new_stack_component_succeeds": 0.9650285859997894,
"tests/integration/functional/test_client.py::test_registering_a_stack": 1.0131612770001084,
"tests/integration/functional/test_client.py::test_registering_a_stack_component_with_existing_name": 0.955384315999936,
"tests/integration/functional/test_client.py::test_registering_a_stack_with_existing_name": 1.0754401170001984,
"tests/integration/functional/test_client.py::test_renaming_stack_with_update_method_succeeds": 1.0627626879997933,
"tests/integration/functional/test_client.py::test_repository_detection": 0.011109303000012005,
"tests/integration/functional/test_client.py::test_updating_a_stack_with_new_component_succeeds": 1.0770695470000646,
"tests/integration/functional/test_lineage_graph.py::test_add_direct_edges": 2.552997497000206,
"tests/integration/functional/test_lineage_graph.py::test_add_external_artifacts": 3.7319646040000407,
"tests/integration/functional/test_lineage_graph.py::test_generate_run_nodes_and_edges": 2.67205659199999,
"tests/integration/functional/test_lineage_graph.py::test_manual_save_load_artifact": 3.65780175399982,
"tests/integration/functional/test_zen_server_api.py::test_list_stacks_endpoint": 0.0014071260000037,
"tests/integration/functional/test_zen_server_api.py::test_list_users_endpoint": 0.000930116999825259,
"tests/integration/functional/test_zen_server_api.py::test_server_requires_auth": 0.0010635189998993155,
"tests/integration/functional/zen_server/test_zen_server.py::test_server_up_down": 24.17791183399993,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_delete_user_with_secrets": 0.4410866210000677,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_get_secret_returns_values": 0.024542940999936036,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_list_secret_excludes_values": 0.025359755000181394,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_list_secrets_filter": 0.15560289499990176,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_list_secrets_pagination_and_sorting": 2.171697098000095,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_reusing_user_secret_name_succeeds": 0.0014190250001320237,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_secret_empty_values": 0.04138014400018619,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_secret_is_deleted_with_workspace": 0.18305828699999438,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_scope_fails_if_name_already_in_scope": 0.07530125299967949,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_scope_succeeds": 0.11576448000005257,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_add_new_values": 0.04131614199991418,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_existing_values": 0.041712549000067156,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_name": 0.06636079100007919,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_name_fails_if_exists_in_workspace": 0.0654178749998664,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_name_sets_updated_date": 1.0501437580001038,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_remove_nonexisting_values": 0.04005712000002859,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_remove_values": 0.04309977300022183,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_secret_values_sets_updated_date": 1.048612931999969,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_user_secret_name_succeeds_if_exists_in_workspace": 0.08814708399995652,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_update_workspace_secret_name_succeeds_if_exists_for_a_user": 0.08451011800002561,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_user_secret_is_not_visible_to_other_users": 0.0021921390000443353,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_user_secret_is_not_visible_to_other_workspaces": 0.0013866249998955027,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_workspace_secret_is_not_visible_to_other_workspaces": 0.0013716249995923135,
"tests/integration/functional/zen_stores/test_secrets_store.py::test_workspace_secret_is_visible_to_other_users": 0.001460527000062939,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModel::test_latest_version_properly_fetched": 2.1645975859996724,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModel::test_list_by_tag": 2.0608196600001065,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModel::test_update_name": 1.0582784469997932,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_create_duplicated": 0.08315280700026051,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_create_no_model": 0.04677074700020967,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_create_pass": 0.07523346399966613,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_delete_found": 0.09296638500040899,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_delete_not_found": 0.04768576300011773,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_get_found": 0.098840090000067,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_get_found_by_number": 0.11490568299973347,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_get_not_found": 0.046364641000081974,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_get_not_found_by_number": 0.09942640200006281,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_in_stage_not_found": 0.08798229500030175,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_increments_version_number": 1.139764557999797,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_latest_found": 1.1369452999999794,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_list_by_tags": 0.2704386010000235,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_list_empty": 0.057521043000178906,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_list_not_empty": 0.1287427340000704,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_model_bad_stage": 0.0015075270000579621,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_model_ok_stage": 0.0014155260000734415,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_forced": 0.18710080599998946,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_name_and_description": 1.1056055389999528,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_not_forced": 0.16816594700026144,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_not_found": 0.04697575099976348,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_public_interface": 0.11767553300023792,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersion::test_update_public_interface_bad_stage": 0.07529956500025037,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_create_duplicated_by_id": 0.15954477099990072,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_create_pass": 0.15323265600000013,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_create_single_version_of_same_output_name_from_different_steps": 0.22683368000002702,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_create_versioned": 0.27752209200002653,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_delete_all": 0.2224620029999187,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_delete_found": 0.17522775199995522,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_delete_not_found": 0.1059896070000832,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_list_empty": 0.0954445179997947,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionArtifactLinks::test_link_list_populated": 0.4914512420002666,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_create_duplicated": 0.15618571100003464,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_create_pass": 0.15618930900018313,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_delete_found": 0.16970815300032882,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_delete_not_found": 0.133608102999915,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_list_empty": 0.09046102799993605,
"tests/integration/functional/zen_stores/test_zen_store.py::TestModelVersionPipelineRunLinks::test_link_list_populated": 0.3963087560002805,
"tests/integration/functional/zen_stores/test_zen_store.py::TestRunMetadata::test_metadata_full_cycle_with_cascade_deletion[artifact_version]": 0.06894387900001675,
"tests/integration/functional/zen_stores/test_zen_store.py::TestRunMetadata::test_metadata_full_cycle_with_cascade_deletion[model_version]": 0.08209392399976423,
"tests/integration/functional/zen_stores/test_zen_store.py::TestRunMetadata::test_metadata_full_cycle_with_cascade_deletion[pipeline_run]": 0.09431555000014669,
"tests/integration/functional/zen_stores/test_zen_store.py::TestRunMetadata::test_metadata_full_cycle_with_cascade_deletion[step_run]": 0.10005235700009507,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_create_bad_input": 0.9302727770000274,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_create_duplicate": 0.9441045840001152,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_create_pass": 0.949003427000207,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_get_tag_found": 0.9420142460000989,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_get_tag_not_found": 0.9248821389999193,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_list_tags": 0.9728294010001264,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTag::test_update_tag": 0.9777437909997388,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_cascade_deletion[delete_model]": 1.0587197889999516,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_cascade_deletion[delete_tag]": 1.0798434729999826,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_create_tag_resource_fails_on_duplicate": 0.944962809000117,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_create_tag_resource_pass": 0.945184892999805,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_delete_tag_resource_mismatch": 0.9450065899995934,
"tests/integration/functional/zen_stores/test_zen_store.py::TestTagResource::test_delete_tag_resource_pass": 0.9594463899998118,
"tests/integration/functional/zen_stores/test_zen_store.py::test_active_user": 0.0033643619999566,
"tests/integration/functional/zen_stores/test_zen_store.py::test_artifacts_are_not_deleted_with_run": 2.6001630109999496,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[artifact]": 0.07239142000003085,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[artifact_version]": 0.13475899200011554,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[build]": 0.05426430700003948,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[code_repository]": 0.057253301000400825,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[deployment]": 0.05222526900001867,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[flavor]": 0.05552612400015278,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[model]": 0.14146092300006785,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[pipeline]": 0.06253243899982408,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[secret]": 0.06177613999989262,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[service_connector]": 0.08405283200022495,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[stack_component]": 0.06552361699982612,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[user]": 0.07588278399998671,
"tests/integration/functional/zen_stores/test_zen_store.py::test_basic_crud_for_entity[workspace]": 0.0987493299999187,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_list": 0.17459133500028656,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_name_reuse_for_different_user_fails": 0.0013206239998453384,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_name_reuse_for_same_user_fails": 0.017179729999952542,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_name_update_fails_if_exists": 0.03245759200012799,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_secret_share_lifespan": 0.04378314199993838,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_type_register": 0.022342714000160413,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_auth_method": 0.06022865999989335,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_config": 0.3401430179999352,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_expiration": 0.12017322399992736,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_expires_at": 0.06313336499988509,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_labels": 0.1298885739997786,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_name": 0.06489558299995224,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_resource_id": 0.11610533399993983,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_resource_types": 0.060031107000213524,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_update_type": 0.061117275000242444,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_validation": 0.18247296699996696,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_with_labels": 0.044674725000049875,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_with_no_config_no_secrets": 0.01839553599984356,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_with_no_secrets": 0.01897224700019251,
"tests/integration/functional/zen_stores/test_zen_store.py::test_connector_with_secrets": 0.04602468499979295,
"tests/integration/functional/zen_stores/test_zen_store.py::test_count_runs": 7.472864680999919,
"tests/integration/functional/zen_stores/test_zen_store.py::test_count_stack_components": 0.03181298699973922,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_api_key": 0.3076863349999712,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_api_key_used_name_fails": 0.30471495500023593,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[artifact]": 0.014365064999765309,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[artifact_version]": 0.03605446899996423,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[build]": 0.001657329999943613,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[code_repository]": 0.014777286000025924,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[deployment]": 0.0016828319999149244,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[flavor]": 0.02479017699988617,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[model]": 0.042214378999915425,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[pipeline]": 0.01960687800010419,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[secret]": 0.023225045999879512,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[service_connector]": 0.037949431000015466,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[stack_component]": 0.020774899000343794,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[user]": 0.04252258599990455,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_entity_twice_fails[workspace]": 0.06997144600018146,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_service_account": 0.04872169199984455,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_service_account_used_name_fails": 0.3703392330000952,
"tests/integration/functional/zen_stores/test_zen_store.py::test_create_user_no_password": 0.0014480270001513418,
"tests/integration/functional/zen_stores/test_zen_store.py::test_creating_user_with_existing_name_fails": 0.6176798799997414,
"tests/integration/functional/zen_stores/test_zen_store.py::test_crud_on_stack_succeeds": 0.08184151999989808,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deactivate_api_key": 0.3174637579998034,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deactivate_service_account": 0.0567985929999395,
"tests/integration/functional/zen_stores/test_zen_store.py::test_delete_api_key": 0.5982778569998572,
"tests/integration/functional/zen_stores/test_zen_store.py::test_delete_default_stack_component_fails": 0.015391384000167818,
"tests/integration/functional/zen_stores/test_zen_store.py::test_delete_service_account": 0.08934764799982986,
"tests/integration/functional/zen_stores/test_zen_store.py::test_delete_service_account_with_resources_fails": 0.4784843290003664,
"tests/integration/functional/zen_stores/test_zen_store.py::test_delete_user_with_resources_fails": 1.9845175689999905,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_a_stack_recursively_succeeds": 0.09333134799999243,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_a_stack_recursively_with_some_stack_components_present_in_another_stack_succeeds": 0.12563691600007587,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_a_stack_succeeds": 0.05484660000001895,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_default_stack_fails": 0.009892783999930543,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_default_user_fails": 0.0033244620001369185,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_default_workspace_fails": 0.0031936589998622367,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[artifact]": 0.0031427590001840144,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[artifact_version]": 0.0031872609999936685,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[build]": 0.003188660999740023,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[code_repository]": 0.003132456999992428,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[deployment]": 0.0034623639999153966,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[flavor]": 0.003142758999729267,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[model]": 0.0035121639998578758,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[pipeline]": 0.003530158000103256,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[secret]": 0.0052259970002523914,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[service_connector]": 0.0033875630001602985,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[stack_component]": 0.00336196199987171,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[user]": 0.003355762000182949,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_entity_raises_error[workspace]": 0.0033139639999717474,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_nonexistent_stack_fails": 0.003082757000129277,
"tests/integration/functional/zen_stores/test_zen_store.py::test_deleting_run_deletes_steps": 1.5438667609998902,
"tests/integration/functional/zen_stores/test_zen_store.py::test_filter_runs_by_code_repo": 1.5904920360001142,
"tests/integration/functional/zen_stores/test_zen_store.py::test_filter_stack_succeeds": 0.05400263799992899,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[artifact]": 0.003806767000014588,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[artifact_version]": 0.0035218640000493906,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[build]": 0.003108457000053022,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[code_repository]": 0.0031541580001430702,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[deployment]": 0.003275562000226273,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[flavor]": 0.003207962000033149,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[model]": 0.0031487559999732184,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[pipeline]": 0.003314960999887262,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[secret]": 0.0032635600000503473,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[service_connector]": 0.0033094630000505276,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[stack_component]": 0.0033998630001406127,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[user]": 0.003577167000003101,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_nonexistent_entity_fails[workspace]": 0.0032778590000361874,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_run_step_inputs_succeeds": 7.196971118000192,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_run_step_outputs_succeeds": 6.4296487980000165,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_service_account": 0.34117091999996774,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_stack_fails_with_nonexistent_stack_id": 0.0028242550001778,
"tests/integration/functional/zen_stores/test_zen_store.py::test_get_user": 0.3393045599998459,
"tests/integration/functional/zen_stores/test_zen_store.py::test_list_api_keys": 0.600452174999873,
"tests/integration/functional/zen_stores/test_zen_store.py::test_list_runs_is_ordered": 8.480156917000159,
"tests/integration/functional/zen_stores/test_zen_store.py::test_list_service_accounts": 0.40533062500003325,
"tests/integration/functional/zen_stores/test_zen_store.py::test_list_unused_artifacts": 1.6663138500000514,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_api_key": 0.0012629250002191839,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_deleted_api_key": 0.0014201270000739896,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_inactive_api_key": 0.0014478289997441607,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_inactive_service_account": 0.0012773239998296049,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_rotate_api_key": 0.001355425000156174,
"tests/integration/functional/zen_stores/test_zen_store.py::test_login_rotate_api_key_retain_period": 0.0013444260002870578,
"tests/integration/functional/zen_stores/test_zen_store.py::test_logs_are_recorded_properly": 2.650148912000077,
"tests/integration/functional/zen_stores/test_zen_store.py::test_logs_are_recorded_properly_when_disabled": 4.826711830000022,
"tests/integration/functional/zen_stores/test_zen_store.py::test_only_one_default_workspace_present": 0.004528488999994806,
"tests/integration/functional/zen_stores/test_zen_store.py::test_reactivate_user": 0.0017451350001920218,
"tests/integration/functional/zen_stores/test_zen_store.py::test_register_stack_fails_when_stack_exists": 0.05238527200003773,
"tests/integration/functional/zen_stores/test_zen_store.py::test_rotate_api_key": 0.5650462270000389,
"tests/integration/functional/zen_stores/test_zen_store.py::test_stacks_are_accessible_by_other_users": 0.0012839250000524771,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_api_key_description": 0.3124052089997349,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_api_key_used_name_fails": 0.578257135000058,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_default_stack_component_fails": 0.01920675399992433,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_key_name": 0.334807777999913,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_service_account_description": 0.048624897000081546,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_service_account_name": 0.06499529999996412,
"tests/integration/functional/zen_stores/test_zen_store.py::test_update_service_account_used_name_fails": 0.3844740949998595,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_default_stack_fails": 0.01251443099977223,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_default_user_fails": 0.005139293999945949,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_default_workspace_fails": 0.004888189999974202,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexistent_stack_fails": 0.00483249099988825,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[artifact]": 0.003096756000104506,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[artifact_version]": 0.003248362000022098,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[build]": 0.0014813280001817475,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[code_repository]": 0.0030162589998781186,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[deployment]": 0.0016381300001739874,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[flavor]": 0.001456426000004285,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[model]": 0.003335356999969008,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[pipeline]": 0.0014242269999158452,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[secret]": 0.0014587260002372204,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[service_connector]": 0.004486382999857597,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[stack_component]": 0.0032243590001144184,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[user]": 0.003494262999993225,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_nonexisting_entity_raises_error[workspace]": 0.003289260000201466,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_the_pipeline_run_status[cached-completed]": 1.5810644270000012,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_the_pipeline_run_status[completed-completed]": 1.5819580449999648,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_the_pipeline_run_status[failed-failed]": 2.3481800609997663,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_the_pipeline_run_status[running-running]": 1.5879226520000884,
"tests/integration/functional/zen_stores/test_zen_store.py::test_updating_user_with_existing_name_fails": 0.6279363259998263,
"tests/integration/integrations/airflow/orchestrators/test_airflow_orchestrator.py::test_airflow_orchestrator_attributes": 0.002579547000095772,
"tests/integration/integrations/airflow/orchestrators/test_airflow_orchestrator.py::test_resource_appliciation": 0.001973234999923079,
"tests/integration/integrations/airflow/orchestrators/test_dag_generator.py::test_class_importing_by_path": 0.0027796510000825947,
"tests/integration/integrations/airflow/orchestrators/test_dag_generator.py::test_dag_generator_constants": 0.0014811260002716153,
"tests/integration/integrations/aws/orchestrators/test_sagemaker_orchestrator.py::test_sagemaker_orchestrator_flavor_attributes": 0.002895250999927157,
"tests/integration/integrations/azure/artifact_stores/test_azure_artifact_store.py::test_azure_artifact_store_attributes": 0.0019500350001635525,
"tests/integration/integrations/azure/artifact_stores/test_azure_artifact_store.py::test_must_be_azure_path": 0.0033852619999379385,
"tests/integration/integrations/deepchecks/data_validators/test_deepchecks_data_validator.py::test_deepchecks_data_validator_attributes": 0.002593146999970486,
"tests/integration/integrations/deepchecks/materializers/test_deepchecks_dataset_materializer.py::test_deepchecks_dataset_materializer": 0.9477586000000429,
"tests/integration/integrations/deepchecks/materializers/test_deepchecks_result_materializer.py::test_deepchecks_dataset_materializer_with_check_result": 0.9550325399998201,
"tests/integration/integrations/deepchecks/materializers/test_deepchecks_result_materializer.py::test_deepchecks_dataset_materializer_with_suite_result": 1.7131118419999893,
"tests/integration/integrations/deepchecks/test_validation_checks.py::test_validation_check_fails_when_checking_name": 0.0035658670001339487,
"tests/integration/integrations/evidently/data_validators/test_evidently_data_validator.py::test_evidently_data_validator_attributes": 0.0025486449997060845,
"tests/integration/integrations/facets/materializers/test_facets_materializer.py::test_facets_materializer": 0.9470509699999639,
"tests/integration/integrations/gcp/artifact_stores/test_gcp_artifact_store.py::test_must_be_gcs_path": 0.0005730089999360644,
"tests/integration/integrations/gcp/image_builders/test_gcp_image_builder.py::test_stack_validation": 0.0006773129996417993,
"tests/integration/integrations/gcp/orchestrators/test_vertex_orchestrator.py::test_vertex_orchestrator_configure_container_resources[resource_settings0-orchestrator_resource_settings0-expected_resources0]": 0.0007285130000127538,
"tests/integration/integrations/gcp/orchestrators/test_vertex_orchestrator.py::test_vertex_orchestrator_configure_container_resources[resource_settings1-orchestrator_resource_settings1-expected_resources1]": 0.0006984120000197436,
"tests/integration/integrations/gcp/orchestrators/test_vertex_orchestrator.py::test_vertex_orchestrator_configure_container_resources[resource_settings2-orchestrator_resource_settings2-expected_resources2]": 0.0006751119999535149,
"tests/integration/integrations/gcp/orchestrators/test_vertex_orchestrator.py::test_vertex_orchestrator_configure_container_resources[resource_settings3-orchestrator_resource_settings3-expected_resources3]": 0.000651711000045907,
"tests/integration/integrations/gcp/orchestrators/test_vertex_orchestrator.py::test_vertex_orchestrator_stack_validation": 0.0006524109999190841,
"tests/integration/integrations/great_expectations/materializers/test_ge_materializer.py::test_great_expectations_materializer": 0.9280860650001159,
"tests/integration/integrations/huggingface/materializers/test_huggingface_datasets_materializer.py::test_huggingface_datasets_materializer": 1.193083361000049,
"tests/integration/integrations/huggingface/materializers/test_huggingface_pt_model_materializer.py::test_huggingface_pretrained_model_materializer": 4.73393071099963,
"tests/integration/integrations/huggingface/materializers/test_huggingface_tf_model_materializer.py::test_huggingface_tf_pretrained_model_materializer": 7.806099057999745,
"tests/integration/integrations/huggingface/materializers/test_huggingface_tokenizer_materializer.py::test_huggingface_tokenizer_materializer": 2.1347184400001424,
"tests/integration/integrations/kaniko/image_builders/test_kaniko_image_builder.py::test_stack_validation": 0.005499401999941256,
"tests/integration/integrations/kubeflow/orchestrators/test_kubeflow_orchestrator.py::test_kubeflow_orchestrator_local_stack": 0.0005407110002124682,
"tests/integration/integrations/kubeflow/orchestrators/test_kubeflow_orchestrator.py::test_kubeflow_orchestrator_remote_stack": 0.0005819110001539229,
"tests/integration/integrations/kubeflow/test_utils.py::test_apply_pod_settings": 0.0005952109999043387,
"tests/integration/integrations/kubernetes/orchestrators/test_kubernetes_orchestrator.py::test_kubernetes_orchestrator_local_stack": 0.011105703999874095,
"tests/integration/integrations/kubernetes/orchestrators/test_kubernetes_orchestrator.py::test_kubernetes_orchestrator_remote_stack": 0.01057949500000177,
"tests/integration/integrations/kubernetes/orchestrators/test_kubernetes_orchestrator.py::test_kubernetes_orchestrator_uses_service_account_from_settings": 0.006717721999848436,
"tests/integration/integrations/kubernetes/orchestrators/test_manifest_utils.py::test_build_cron_job_manifest_pod_settings": 0.018659739999748126,
"tests/integration/integrations/kubernetes/orchestrators/test_manifest_utils.py::test_build_pod_manifest_metadata": 0.008324652000283095,
"tests/integration/integrations/kubernetes/orchestrators/test_manifest_utils.py::test_build_pod_manifest_pod_settings": 0.010034382999947411,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_deserializing_invalid_model": 0.0012377220000416855,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_get_model_class": 0.0012272209999082406,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_model_serialization_and_deserialization[model0]": 0.010010383000235379,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_model_serialization_and_deserialization[model1]": 0.00317675999963285,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_model_serialization_and_deserialization[model2]": 0.006286914999691362,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_model_serialization_and_deserialization[model3]": 0.0031093569996301085,
"tests/integration/integrations/kubernetes/test_serialization_utils.py::test_serializing_invalid_model": 0.0012390220001634589,
"tests/integration/integrations/label_studio/label_config_generators/test_label_config_generators.py::test_config_generator_raises_with_empty_list": 0.0014363249999860273,
"tests/integration/integrations/label_studio/label_config_generators/test_label_config_generators.py::test_image_classification_label_config_generator": 0.92938971100034,
"tests/integration/integrations/label_studio/label_config_generators/test_label_config_generators.py::test_object_detection_label_config_generator": 0.783709306999981,
"tests/integration/integrations/label_studio/label_config_generators/test_label_config_generators.py::test_ocr_label_config_generator": 0.8885944819996894,
"tests/integration/integrations/label_studio/label_config_generators/test_label_config_generators.py::test_text_classification_label_config_generator": 0.8539296619997003,
"tests/integration/integrations/label_studio/test_label_studio_utils.py::test_getting_file_extension": 0.0015306279997275851,
"tests/integration/integrations/label_studio/test_label_studio_utils.py::test_is_azure_url": 0.0016571300000123301,
"tests/integration/integrations/label_studio/test_label_studio_utils.py::test_is_gcs_url": 0.0013881260001653573,
"tests/integration/integrations/label_studio/test_label_studio_utils.py::test_is_s3_url": 0.0026499499999772524,
"tests/integration/integrations/langchain/materializers/test_langchain_document_materializer.py::test_langchain_document_materializer": 2.1163754140000037,
"tests/integration/integrations/langchain/materializers/test_openai_embedding_materializer_materializer.py::test_langchain_openai_embedding_materializer": 0.9738833669998712,
"tests/integration/integrations/langchain/materializers/test_vector_store_materializer.py::test_langchain_vectorstore_materializer": 0.9236638089998905,
"tests/integration/integrations/lightgbm/materializers/test_lightgbm_booster_materializer.py::test_lightgbm_booster_materializer": 0.012131815999964601,
"tests/integration/integrations/lightgbm/materializers/test_lightgbm_dataset_materializer.py::test_lightgbm_dataset_materializer": 0.009684978999985105,
"tests/integration/integrations/mlflow/experiment_trackers/test_mlflow_experiment_tracker.py::test_mlflow_experiment_tracker_attributes": 0.002743348999956652,
"tests/integration/integrations/mlflow/experiment_trackers/test_mlflow_experiment_tracker.py::test_mlflow_experiment_tracker_authentication": 0.0021143369999663264,
"tests/integration/integrations/mlflow/experiment_trackers/test_mlflow_experiment_tracker.py::test_mlflow_experiment_tracker_set_config": 0.0023222419998774058,
"tests/integration/integrations/mlflow/experiment_trackers/test_mlflow_experiment_tracker.py::test_mlflow_experiment_tracker_stack_validation": 0.0026841470000817935,
"tests/integration/integrations/neptune/experiment_tracker/test_neptune_experiment_tracker.py::test_neptune_experiment_tracker_attributes": 0.0024196439999286667,
"tests/integration/integrations/neptune/experiment_tracker/test_neptune_experiment_tracker.py::test_neptune_experiment_tracker_does_not_need_explicit_api_token_or_project": 0.0014428260001295712,
"tests/integration/integrations/neptune/experiment_tracker/test_neptune_experiment_tracker.py::test_neptune_experiment_tracker_stack_validation": 0.0019893360001788096,
"tests/integration/integrations/neural_prophet/materializers/test_neural_prophet_materializer.py::test_neural_prophet_booster_materializer": 1.432609930000126,
"tests/integration/integrations/pillow/materializers/test_pillow_image_materializer.py::test_materializer_works_for_pillow_image_objects": 0.9307538260000001,
"tests/integration/integrations/polars/materializers/test_polars_materializer.py::test_polars_materializer": 0.0568004369999926,
"tests/integration/integrations/pytorch/materializers/test_pytorch_dataloader_materializer.py::test_pytorch_dataloader_materializer": 0.9630062589999397,
"tests/integration/integrations/pytorch/materializers/test_pytorch_module_materializer.py::test_pytorch_module_materializer": 0.927009802999919,
"tests/integration/integrations/s3/artifact_stores/test_s3_artifact_store.py::test_must_be_s3_path": 0.00290795299997626,
"tests/integration/integrations/s3/artifact_stores/test_s3_artifact_store.py::test_s3_artifact_store_attributes": 0.001706131999981153,
"tests/integration/integrations/scipy/materializers/test_sparse_materializer.py::test_scipy_sparse_matrix_materializer": 0.9426515569998628,
"tests/integration/integrations/sklearn/materializers/test_sklearn_materializer.py::test_sklearn_materializer": 0.9317518970000265,
"tests/integration/integrations/skypilot/orchestrators/test_skypilot_orchestrator.py::test_skypilot_orchestrator_local_stack[aws]": 0.000597211000012976,
"tests/integration/integrations/skypilot/orchestrators/test_skypilot_orchestrator.py::test_skypilot_orchestrator_local_stack[azure]": 0.0007007130000147299,
"tests/integration/integrations/skypilot/orchestrators/test_skypilot_orchestrator.py::test_skypilot_orchestrator_local_stack[gcp]": 0.0006057110001620458,
"tests/integration/integrations/tensorflow/materializers/test_keras_materializer.py::test_tensorflow_keras_materializer": 1.7316540750000513,
"tests/integration/integrations/tensorflow/materializers/test_tf_dataset_materializer.py::test_tensorflow_tf_dataset_materializer": 0.9556844540002203,
"tests/integration/integrations/whylogs/materializers/test_whylogs_materializer.py::test_whylogs_materializer": 3.4373613779999914,
"tests/integration/integrations/xgboost/materializers/test_xgboost_dmatrix_materializer.py::test_xgboost_dmatrix_materializer": 0.9379987049999272,
"tests/unit/_hub/test_client.py::test_default_url": 0.0032108609999568216,
"tests/unit/_hub/test_client.py::test_get_plugin": 1.7070961019999231,
"tests/unit/_hub/test_client.py::test_list_plugins": 0.4211572960000467,
"tests/unit/_hub/test_utils.py::test_parse_invalid_plugin_name[]": 0.0013775239999631594,
"tests/unit/_hub/test_utils.py::test_parse_invalid_plugin_name[invalid/plugin/name]": 0.0013802219998524379,
"tests/unit/_hub/test_utils.py::test_parse_invalid_plugin_name[invalid:plugin:name]": 0.0013945210001793384,
"tests/unit/_hub/test_utils.py::test_parse_plugin_name[author/plugin_name-author-plugin_name-latest]": 0.0022775389999196705,
"tests/unit/_hub/test_utils.py::test_parse_plugin_name[author/plugin_name:version-author-plugin_name-version]": 0.0018353300000626405,
"tests/unit/_hub/test_utils.py::test_parse_plugin_name[plugin_name-None-plugin_name-latest]": 0.001854031999982908,
"tests/unit/_hub/test_utils.py::test_parse_plugin_name[plugin_name:version-None-plugin_name-version]": 0.0018171300000631163,
"tests/unit/_hub/test_utils.py::test_plugin_display_name[author/plugin_name:latest-author-plugin_name-None]": 0.0017440279999618724,
"tests/unit/_hub/test_utils.py::test_plugin_display_name[author/plugin_name:version-author-plugin_name-version]": 0.002353337999920768,
"tests/unit/_hub/test_utils.py::test_plugin_display_name[plugin_name:latest-None-plugin_name-None]": 0.0017435299999988274,
"tests/unit/_hub/test_utils.py::test_plugin_display_name[plugin_name:version-None-plugin_name-version]": 0.001722829000073034,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_invalid_path[http://my-bucket/my-folder/my-file.txt]": 0.0015989300000001094,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_invalid_path[s3://my-bucket/my-folder/my-file.txt]": 0.0016644309999946927,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_valid_path[\"aria://my-bucket/my-folder/my-file.txt\"]": 0.0014808280000124796,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_valid_path['aria://my-bucket/my-folder/my-file.txt']": 0.002560048000077586,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_valid_path[`aria://my-bucket/my-folder/my-file.txt`]": 0.001569228999983352,
"tests/unit/artifact_stores/test_base_artifact_store.py::TestBaseArtifactStoreConfig::test_valid_path[aria://my-bucket/my-folder/my-file.txt]": 0.0016597310001316146,
"tests/unit/artifact_stores/test_local_artifact_store.py::test_local_artifact_store_attributes": 0.0023626400000011927,
"tests/unit/artifact_stores/test_local_artifact_store.py::test_local_artifact_store_only_supports_local_paths": 0.0017943309999282064,
"tests/unit/artifacts/test_utils.py::test__get_new_artifact_version": 0.004288072000008469,
"tests/unit/artifacts/test_utils.py::test__load_artifact": 0.00832573799993952,
"tests/unit/artifacts/test_utils.py::test_load_artifact_from_response": 0.008162735000041721,
"tests/unit/artifacts/test_utils.py::test_load_model_from_metadata": 0.007569926999849486,
"tests/unit/artifacts/test_utils.py::test_save_model_metadata": 0.004238172000100349,
"tests/unit/config/test_base_settings.py::test_base_settings_default_configuration_level": 0.1473720349999894,
"tests/unit/config/test_base_settings.py::test_base_settings_inherit_from_secret_reference_mixin": 0.0013392250000379136,
"tests/unit/config/test_compiler.py::test_compiling_pipeline_with_invalid_run_configuration": 0.0020614389999309424,
"tests/unit/config/test_compiler.py::test_compiling_pipeline_with_invalid_run_name_fails": 0.003094959000009112,
"tests/unit/config/test_compiler.py::test_compiling_pipeline_with_missing_experiment_tracker": 0.009250373000099898,
"tests/unit/config/test_compiler.py::test_compiling_pipeline_with_missing_step_operator": 0.009199474000183727,
"tests/unit/config/test_compiler.py::test_compiling_pipeline_without_steps_fails": 0.005283598999881178,
"tests/unit/config/test_compiler.py::test_default_run_name": 0.0012666239999816753,
"tests/unit/config/test_compiler.py::test_extra_merging": 0.01296354299995528,
"tests/unit/config/test_compiler.py::test_failure_hook_merging": 0.0381556150000506,
"tests/unit/config/test_compiler.py::test_general_settings_merging": 0.014519172000063918,
"tests/unit/config/test_compiler.py::test_pipeline_and_steps_dont_get_modified_during_compilation": 0.012862242000210244,
"tests/unit/config/test_compiler.py::test_spec_compilation": 0.03722239699993679,
"tests/unit/config/test_compiler.py::test_stack_component_settings_for_missing_component_are_ignored": 0.01357085399990865,
"tests/unit/config/test_compiler.py::test_stack_component_settings_merging": 0.016981518000079632,
"tests/unit/config/test_compiler.py::test_step_sorting": 0.017425927999966007,
"tests/unit/config/test_compiler.py::test_success_hook_merging": 0.03881502800004455,
"tests/unit/config/test_docker_settings.py::test_build_skipping": 0.0021924360000866727,
"tests/unit/config/test_global_config.py::test_global_config_file_creation": 0.9392365749998817,
"tests/unit/config/test_global_config.py::test_global_config_returns_value_from_environment_variable": 0.9232988779999687,
"tests/unit/config/test_resource_settings.py::test_resource_config_empty": 0.0014650360000132423,
"tests/unit/config/test_resource_settings.py::test_resource_config_memory_conversion": 0.0022105560000227342,
"tests/unit/config/test_resource_settings.py::test_resource_config_value_validation": 0.001751343000023553,
"tests/unit/config/test_resource_settings.py::test_unit_byte_value_defined_for_all_values": 0.0014143339999463933,
"tests/unit/config/test_secret_reference_mixin.py::test_secret_reference_mixin_returns_correct_required_secrets": 0.0019122350000770894,
"tests/unit/config/test_secret_reference_mixin.py::test_secret_reference_mixin_serialization_does_not_resolve_secrets": 0.001352027000052658,
"tests/unit/config/test_secret_reference_mixin.py::test_secret_reference_resolving": 1.013431270999945,
"tests/unit/config/test_secret_reference_mixin.py::test_secret_references_are_not_allowed_for_clear_text_fields": 0.0018370339998909913,
"tests/unit/config/test_secret_reference_mixin.py::test_secret_references_are_not_allowed_for_fields_with_validators": 0.00192333600011807,
"tests/unit/config/test_settings_resolver.py::test_resolving_fails_if_no_stack_component_settings_exist_for_the_given_key": 0.0016601370000444149,
"tests/unit/config/test_settings_resolver.py::test_resolving_fails_if_the_settings_cant_be_converted": 0.001885542999957579,
"tests/unit/config/test_settings_resolver.py::test_resolving_general_settings": 0.00278536299992993,
"tests/unit/config/test_settings_resolver.py::test_resolving_stack_component_settings": 0.0023978549999128518,
"tests/unit/config/test_settings_resolver.py::test_settings_resolver_fails_when_using_invalid_settings_key": 0.0031632719999379333,
"tests/unit/config/test_step_configurations.py::test_step_spec_inputs_equality": 0.001413925999941057,
"tests/unit/config/test_step_configurations.py::test_step_spec_pipeline_parameter_name_equality": 0.001373527000055219,
"tests/unit/config/test_step_configurations.py::test_step_spec_source_equality": 0.0018446339998945405,
"tests/unit/config/test_step_configurations.py::test_step_spec_upstream_steps_equality": 0.001488227999971059,
"tests/unit/container_registries/test_base_container_registry.py::test_base_container_registry_local_property": 0.0018450349999739046,
"tests/unit/container_registries/test_base_container_registry.py::test_base_container_registry_prevents_push_if_uri_does_not_match": 0.004080176999991636,
"tests/unit/container_registries/test_base_container_registry.py::test_base_container_registry_requires_authentication_if_secret_provided": 0.0014158250000946282,
"tests/unit/container_registries/test_default_container_registry.py::test_default_container_registry_attributes": 0.002135141000053409,
"tests/unit/entrypoints/test_base_entrypoint_configuration.py::test_calling_entrypoint_configuration_with_invalid_deployment_id": 0.0017442399998799374,
"tests/unit/entrypoints/test_base_entrypoint_configuration.py::test_loading_the_deployment": 0.9636324800000011,
"tests/unit/image_builders/test_base_image_builder.py::test_upload_build_context": 2.600672806000034,
"tests/unit/image_builders/test_build_context.py::test_adding_extra_directory": 0.0023452450001286707,
"tests/unit/image_builders/test_build_context.py::test_adding_extra_files": 0.0027623529999800667,
"tests/unit/image_builders/test_build_context.py::test_build_context_includes_and_excludes": 0.003938673999982711,
"tests/unit/image_builders/test_local_image_builder.py::test_local_image_builder_flavor_attributes": 0.0018645349999815153,
"tests/unit/io/test_fileio.py::test_convert_to_str_converts_to_string": 0.002110037000079501,
"tests/unit/io/test_fileio.py::test_copy_moves_file_to_new_location": 0.0024483409999902506,
"tests/unit/io/test_fileio.py::test_copy_raises_error_when_file_exists": 0.0026426450001508783,
"tests/unit/io/test_fileio.py::test_file_exists_function": 0.0023297399999364643,
"tests/unit/io/test_fileio.py::test_file_exists_when_file_doesnt_exist": 0.002631844000006822,
"tests/unit/io/test_fileio.py::test_glob_function": 0.0023702409999941665,
"tests/unit/io/test_fileio.py::test_isdir_when_false": 0.002144836000070427,
"tests/unit/io/test_fileio.py::test_isdir_when_true": 0.001999534000105996,
"tests/unit/io/test_fileio.py::test_listdir_returns_a_list_of_file_names": 0.0023254389999465275,
"tests/unit/io/test_fileio.py::test_listdir_returns_empty_list_when_dir_doesnt_exist": 0.26893385599998965,
"tests/unit/io/test_fileio.py::test_listdir_returns_one_result_for_one_file": 0.002363940000009279,
"tests/unit/io/test_fileio.py::test_make_dirs": 0.0022770379999883517,
"tests/unit/io/test_fileio.py::test_make_dirs_when_recursive": 0.0022928379999029858,
"tests/unit/io/test_fileio.py::test_mkdir_function": 0.002466141000013522,
"tests/unit/io/test_fileio.py::test_mkdir_function_when_parent_doesnt_exist": 0.0021696370000654497,
"tests/unit/io/test_fileio.py::test_open_returns_error_when_file_nonexistent": 0.23606230000007145,
"tests/unit/io/test_fileio.py::test_remove_function": 0.0024570410000706033,
"tests/unit/io/test_fileio.py::test_rename_function": 0.002250538999987839,
"tests/unit/io/test_fileio.py::test_rename_function_raises_error_if_file_already_exists": 0.0023164389999692503,
"tests/unit/io/test_fileio.py::test_rm_dir_function": 0.0022712390000378946,
"tests/unit/io/test_fileio.py::test_rm_dir_function_works_recursively": 0.0023920410001210257,
"tests/unit/io/test_fileio.py::test_size_returns_int_for_dir": 0.0024877409999817246,
"tests/unit/io/test_fileio.py::test_size_returns_int_for_file": 0.002405941000006351,
"tests/unit/io/test_fileio.py::test_size_returns_zero_for_empty_dir": 0.0021620369999482136,
"tests/unit/io/test_fileio.py::test_size_returns_zero_for_non_existent_file": 0.0023524399999814705,
"tests/unit/io/test_fileio.py::test_stat_raises_error_when_file_doesnt_exist": 0.002213938000068083,
"tests/unit/io/test_fileio.py::test_stat_returns_a_stat_result_object": 0.003419957999994949,
"tests/unit/io/test_fileio.py::test_walk_function_returns_a_generator_object": 0.0022085379999907673,
"tests/unit/io/test_fileio.py::test_walk_returns_an_iterator": 0.003219355000055657,
"tests/unit/materializers/test_base_materializer.py::test_materializer_raises_an_exception_if_associated_artifact_type_wrong": 0.001470532999860552,
"tests/unit/materializers/test_base_materializer.py::test_materializer_raises_an_exception_if_associated_types_are_no_classes": 0.0020443470001509922,
"tests/unit/materializers/test_base_materializer.py::test_validate_type_compatibility": 0.0013462310000704747,
"tests/unit/materializers/test_built_in_materializer.py::test_basic_type_materialization": 0.003995465999878434,
"tests/unit/materializers/test_built_in_materializer.py::test_bytes_materialization": 0.0016465279999238192,
"tests/unit/materializers/test_built_in_materializer.py::test_container_materializer_for_custom_types": 0.012237205000019458,
"tests/unit/materializers/test_built_in_materializer.py::test_dict_of_bytes_materialization": 0.011256487999958154,
"tests/unit/materializers/test_built_in_materializer.py::test_empty_dict_list_tuple_materialization": 0.0032119530000045415,
"tests/unit/materializers/test_built_in_materializer.py::test_list_of_bytes_materialization": 0.0071240190000025905,
"tests/unit/materializers/test_built_in_materializer.py::test_mixture_of_all_builtin_types": 0.015216854000072999,
"tests/unit/materializers/test_built_in_materializer.py::test_none_values": 0.0028283470001042588,
"tests/unit/materializers/test_built_in_materializer.py::test_set_materialization": 0.008573842000032528,
"tests/unit/materializers/test_built_in_materializer.py::test_simple_dict_list_tuple_materialization": 0.003509158999918327,
"tests/unit/materializers/test_built_in_materializer.py::test_tuple_of_bytes_materialization": 0.007055716999843753,
"tests/unit/materializers/test_cloudpickle_materializer.py::test_cloudpickle_materializer": 0.9145500439999523,
"tests/unit/materializers/test_cloudpickle_materializer.py::test_cloudpickle_materializer_can_load_pickle": 0.9248497380000344,
"tests/unit/materializers/test_cloudpickle_materializer.py::test_cloudpickle_materializer_is_not_registered": 0.9173430959999678,
"tests/unit/materializers/test_cloudpickle_materializer.py::test_cloudpickle_materializer_python_version_check": 0.9331880929998988,
"tests/unit/materializers/test_materializer_registry.py::test_materializer_with_conflicting_parameter_and_explicit_materializer": 0.007002840000041033,
"tests/unit/materializers/test_materializer_registry.py::test_materializer_with_parameter_with_more_than_one_baseclass": 0.003357766000135598,
"tests/unit/materializers/test_materializer_registry.py::test_materializer_with_parameter_with_more_than_one_conflicting_baseclass": 0.008330563999948026,
"tests/unit/materializers/test_materializer_registry.py::test_materializer_with_subclassing_parameter": 0.004349086000047464,
"tests/unit/materializers/test_numpy_materializer.py::test_numpy_materializer": 0.15234895600019627,
"tests/unit/materializers/test_pandas_materializer.py::test_pandas_materializer": 0.04455810800004656,
"tests/unit/materializers/test_pandas_materializer.py::test_pandas_materializer_with_index": 0.04855610800007071,
"tests/unit/materializers/test_pydantic_materializer.py::test_pydantic_materializer": 0.006927128999905108,
"tests/unit/materializers/test_structured_string_materializer.py::test_structured_string_materializer_for_csv_strings": 0.9126777349998747,
"tests/unit/materializers/test_structured_string_materializer.py::test_structured_string_materializer_for_html_strings": 0.9147066759999234,
"tests/unit/materializers/test_structured_string_materializer.py::test_structured_string_materializer_for_markdown_strings": 0.9261610020000717,
"tests/unit/model/test_model_version_init.py::test_init_warns[Pick model by integer version number]": 0.00248264599997583,
"tests/unit/model/test_model_version_init.py::test_init_warns[Pick model by text stage]": 0.0028998550000096657,
"tests/unit/model/test_model_version_init.py::test_init_warns[Pick model by text version number]": 0.0024670459999924788,
"tests/unit/model_registries/test_base_model_registry.py::TestModelRegistryModelMetadata::test_custom_attributes": 0.0012565260000201306,
"tests/unit/model_registries/test_base_model_registry.py::TestModelRegistryModelMetadata::test_dict": 0.0023812470000166286,
"tests/unit/model_registries/test_base_model_registry.py::TestModelRegistryModelMetadata::test_exclude_unset_none": 0.0014938300000721938,
"tests/unit/models/test_artifact_models.py::test_artifact_request_model_fails_with_long_name": 0.001316622000103962,
"tests/unit/models/test_artifact_models.py::test_artifact_request_model_works_with_long_materializer": 0.0014852249998966727,
"tests/unit/models/test_artifact_models.py::test_artifact_version_request_model_works_with_long_data_type": 0.0020877349999182115,
"tests/unit/models/test_component_models.py::test_component_base_model_fails_with_long_flavor": 0.0019925360001025183,
"tests/unit/models/test_filter_models.py::test_datetime_filter_model": 0.0018077439999615308,
"tests/unit/models/test_filter_models.py::test_datetime_filter_model_fails_for_wrong_formats[1]": 0.0019821500001171444,
"tests/unit/models/test_filter_models.py::test_datetime_filter_model_fails_for_wrong_formats[2022/12/12 12-12-12]": 0.004455212000038955,
"tests/unit/models/test_filter_models.py::test_datetime_filter_model_fails_for_wrong_formats[notadate]": 0.0019994500000848348,
"tests/unit/models/test_filter_models.py::test_filter_model_page_not_int_gte1_fails[-4]": 0.00181604600004448,
"tests/unit/models/test_filter_models.py::test_filter_model_page_not_int_gte1_fails[0.21]": 0.0014748360000567118,
"tests/unit/models/test_filter_models.py::test_filter_model_page_not_int_gte1_fails[0]": 0.0014564370000016424,
"tests/unit/models/test_filter_models.py::test_filter_model_page_not_int_gte1_fails[catfood]": 0.0015323389999366555,
"tests/unit/models/test_filter_models.py::test_filter_model_size_not_int_gte1_fails[-4]": 0.001482436000060261,
"tests/unit/models/test_filter_models.py::test_filter_model_size_not_int_gte1_fails[0.21]": 0.0014501359999030683,
"tests/unit/models/test_filter_models.py::test_filter_model_size_not_int_gte1_fails[0]": 0.001473637999993116,
"tests/unit/models/test_filter_models.py::test_filter_model_size_not_int_gte1_fails[catfood]": 0.0014975369999774557,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_with_order_succeeds[correct_sortable_column0]": 0.0014896379999527198,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_with_order_succeeds[correct_sortable_column1]": 0.0014808349999384518,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_with_order_succeeds[correct_sortable_column2]": 0.0015241370000467214,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_wrong_order_succeeds[correct_sortable_column0]": 0.0016227400000161651,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_wrong_order_succeeds[correct_sortable_column1]": 0.0016537409999273223,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_existing_field_wrong_order_succeeds[correct_sortable_column2]": 0.0016571410000096876,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_existing_field_succeeds[created]": 0.0014534349999166807,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_existing_field_succeeds[id]": 0.001462335999917741,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_existing_field_succeeds[updated]": 0.0014626370000314637,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_non_filter_fields_fails[catastic_column]": 0.0014654360001031819,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_non_filter_fields_fails[page]": 0.001495037000040611,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_for_non_filter_fields_fails[zenml]": 0.0015233389999593783,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_non_str_input_fails[1]": 0.0015149370000244744,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_non_str_input_fails[incorrect_sortable_column1]": 0.0014771360001759604,
"tests/unit/models/test_filter_models.py::test_filter_model_sort_by_non_str_input_fails[int]": 0.0014173350000419305,
"tests/unit/models/test_filter_models.py::test_int_filter_model": 0.0017104410001138604,
"tests/unit/models/test_filter_models.py::test_string_filter_model": 0.002325158000076044,
"tests/unit/models/test_filter_models.py::test_uuid_filter_model": 0.0022393550000288087,
"tests/unit/models/test_filter_models.py::test_uuid_filter_model_fails_for_invalid_uuids_on_equality": 0.001313132000063888,
"tests/unit/models/test_filter_models.py::test_uuid_filter_model_succeeds_for_invalid_uuid_on_non_equality": 0.0028030689999241076,
"tests/unit/models/test_flavor_models.py::test_flavor_request_model_fails_with_long_config_schema": 0.001437631999920086,
"tests/unit/models/test_flavor_models.py::test_flavor_request_model_fails_with_long_integration": 0.0012711280000985425,
"tests/unit/models/test_flavor_models.py::test_flavor_request_model_fails_with_long_name": 0.0018333420001681588,
"tests/unit/models/test_flavor_models.py::test_flavor_request_model_fails_with_long_source": 0.0013139299999238574,
"tests/unit/models/test_model_models.py::test_getters[Latest version]": 0.0038964640000358486,
"tests/unit/models/test_model_models.py::test_getters[No collision]": 0.006194004000008135,
"tests/unit/models/test_model_models.py::test_getters[Not found]": 0.004480173000047216,
"tests/unit/models/test_model_models.py::test_getters[Specific version]": 0.006402506999847901,
"tests/unit/models/test_pipeline_deployment_models.py::test_pipeline_deployment_base_model_fails_with_long_name": 0.004673592000017379,
"tests/unit/models/test_pipeline_models.py::test_pipeline_request_model_fails_with_long_docstring": 0.0019426329999987502,
"tests/unit/models/test_pipeline_models.py::test_pipeline_request_model_fails_with_long_name": 0.0014581240001234619,
"tests/unit/models/test_step_run_models.py::test_step_run_request_model_fails_with_long_docstring": 0.0019511449999072283,
"tests/unit/models/test_user_models.py::test_user_request_model_fails_with_long_activation_token": 0.0015878270000939665,
"tests/unit/models/test_user_models.py::test_user_request_model_fails_with_long_password": 0.0019698320000998137,
"tests/unit/orchestrators/local/test_local_orchestrator.py::test_local_orchestrator_flavor_attributes": 0.0022463379999635436,
"tests/unit/orchestrators/local_docker/test_local_docker_orchestrator.py::test_local_docker_orchestrator_flavor_attributes": 0.002168140999970092,
"tests/unit/orchestrators/test_base_orchestrator.py::test_resource_required[None-settings1-False]": 0.001936233000037646,
"tests/unit/orchestrators/test_base_orchestrator.py::test_resource_required[None-settings2-False]": 0.001881429999912143,
"tests/unit/orchestrators/test_base_orchestrator.py::test_resource_required[None-settings3-True]": 0.00201773400010552,
"tests/unit/orchestrators/test_base_orchestrator.py::test_resource_required[step_operator-settings0-False]": 0.00249304199985545,
"tests/unit/orchestrators/test_cache_utils.py::test_fetching_cached_step_run_queries_cache_candidates": 0.004354801000090447,
"tests/unit/orchestrators/test_cache_utils.py::test_fetching_cached_step_run_uses_latest_candidate": 1.0296188920000304,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_artifact_store_id": 0.016771584999787592,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_artifact_store_path": 0.018168016999993597,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_caching_parameters": 0.01698798900008569,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_input_artifacts": 0.016633382000122765,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_output_artifacts": 0.016624481000121705,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_step_parameters": 0.01659808100009741,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_step_source": 0.016974188000062895,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_considers_workspace_id": 0.017095291000032375,
"tests/unit/orchestrators/test_cache_utils.py::test_generate_cache_key_is_deterministic": 0.01928554100004476,
"tests/unit/orchestrators/test_containerized_orchestrator.py::test_builds_with_custom_docker_settings_for_all_steps": 0.003353265999976429,
"tests/unit/orchestrators/test_containerized_orchestrator.py::test_builds_with_custom_docker_settings_for_some_steps": 0.002833055999985845,
"tests/unit/orchestrators/test_containerized_orchestrator.py::test_builds_with_no_docker_settings": 0.0028896570000824795,
"tests/unit/orchestrators/test_containerized_orchestrator.py::test_getting_image_from_deployment": 0.002527849999864884,
"tests/unit/orchestrators/test_dag_runner.py::test_dag_runner_cyclic": 0.0016426260000343973,
"tests/unit/orchestrators/test_dag_runner.py::test_dag_runner_empty": 0.0012595199999623219,
"tests/unit/orchestrators/test_dag_runner.py::test_dag_runner_linear": 0.003741463000096701,
"tests/unit/orchestrators/test_dag_runner.py::test_dag_runner_multi_path": 0.002542042999948535,
"tests/unit/orchestrators/test_dag_runner.py::test_dag_runner_single": 0.002125436000028458,
"tests/unit/orchestrators/test_dag_runner.py::test_reverse_dag": 0.001226320000000669,
"tests/unit/orchestrators/test_input_utils.py::test_input_resolution": 0.004065969999942354,
"tests/unit/orchestrators/test_input_utils.py::test_input_resolution_fetches_all_run_steps": 0.005411192000110532,
"tests/unit/orchestrators/test_input_utils.py::test_input_resolution_with_missing_artifact": 0.003601062000143429,
"tests/unit/orchestrators/test_input_utils.py::test_input_resolution_with_missing_step_run": 0.002686645000039789,
"tests/unit/orchestrators/test_output_utils.py::test_output_artifact_preparation": 0.003695467999818902,
"tests/unit/orchestrators/test_publish_utils.py::test_pipeline_run_status_computation[step_statuses0-2-failed]": 0.0016374279999809005,
"tests/unit/orchestrators/test_publish_utils.py::test_pipeline_run_status_computation[step_statuses1-2-running]": 0.0017610300000114876,
"tests/unit/orchestrators/test_publish_utils.py::test_pipeline_run_status_computation[step_statuses2-2-running]": 0.001623127999891949,
"tests/unit/orchestrators/test_publish_utils.py::test_pipeline_run_status_computation[step_statuses3-2-completed]": 0.0016058269998211472,
"tests/unit/orchestrators/test_publish_utils.py::test_publish_pipeline_run_metadata": 0.004707279000172093,
"tests/unit/orchestrators/test_publish_utils.py::test_publish_step_run_metadata": 0.0034275599999773476,
"tests/unit/orchestrators/test_publish_utils.py::test_publishing_a_failed_pipeline_run": 0.0026711449999083925,
"tests/unit/orchestrators/test_publish_utils.py::test_publishing_a_failed_step_run": 0.0029241480000337106,
"tests/unit/orchestrators/test_publish_utils.py::test_publishing_a_successful_step_run": 0.003262055000050168,
"tests/unit/orchestrators/test_step_launcher.py::test_step_operator_validation": 0.00267946100007066,
"tests/unit/orchestrators/test_step_runner.py::test_loading_unmaterialized_input_artifact": 0.004248679000056654,
"tests/unit/orchestrators/test_step_runner.py::test_running_a_failing_step": 0.01114220599993132,
"tests/unit/orchestrators/test_step_runner.py::test_running_a_successful_step": 0.011550612000064575,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_DAG": 0.0021967369999629227,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_empty": 0.00123381999992489,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_error_if_cycle": 0.0016820280001184074,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_ignore_duplicate_child_node": 0.001422623000053136,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_ignore_duplicate_parent_node": 0.001495924999858289,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_ignore_unknown_child_node": 0.0019485319999148487,
"tests/unit/orchestrators/test_topsort.py::test_topsorted_layers_ignore_unknown_parent_node": 0.0014177230000314012,
"tests/unit/orchestrators/test_utils.py::test_is_setting_enabled": 0.0018377350000946535,
"tests/unit/pipelines/test_base_pipeline.py::test_building_a_pipeline_registers_it": 2.0827393140000368,
"tests/unit/pipelines/test_base_pipeline.py::test_calling_a_pipeline_twice_raises_no_exception": 2.875044088999971,
"tests/unit/pipelines/test_base_pipeline.py::test_compiling_a_pipeline_merges_build": 4.846769932000029,
"tests/unit/pipelines/test_base_pipeline.py::test_compiling_a_pipeline_merges_schedule": 1.0856492860000344,
"tests/unit/pipelines/test_base_pipeline.py::test_configure_pipeline_with_invalid_settings_key": 0.001851633999990554,
"tests/unit/pipelines/test_base_pipeline.py::test_failure_during_initialization_deletes_placeholder_run": 2.1965958319999572,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_args": 0.0036865690000240647,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_args_and_kwargs": 0.0056098049999491195,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_kwargs": 0.0040285690000700924,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_missing_arg_step_brackets": 0.0021344390002013824,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_missing_key": 0.0032718339999746604,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_missing_kwarg_step_brackets": 0.0022142399999438567,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_repeated_args": 0.003195858000140106,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_repeated_args_and_kwargs": 0.0029052530001081323,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_repeated_kwargs": 0.003128511999989314,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_too_many_args": 0.004346980000036638,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_too_many_args_and_kwargs": 0.004204477000030238,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_unexpected_key": 0.004190877000041837,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_wrong_arg_type": 0.0025864470001124573,
"tests/unit/pipelines/test_base_pipeline.py::test_initialize_pipeline_with_wrong_kwarg_type": 0.0028520299999854615,
"tests/unit/pipelines/test_base_pipeline.py::test_latest_version_fetching": 0.005582602999993469,
"tests/unit/pipelines/test_base_pipeline.py::test_loading_legacy_pipeline_from_model": 1.9898409629998923,
"tests/unit/pipelines/test_base_pipeline.py::test_loading_pipeline_from_old_spec_fails": 0.002297842000075434,
"tests/unit/pipelines/test_base_pipeline.py::test_pipeline_configuration": 0.0024151440001105584,
"tests/unit/pipelines/test_base_pipeline.py::test_pipeline_decorator_configuration_gets_applied_during_initialization": 0.0022608240001318336,
"tests/unit/pipelines/test_base_pipeline.py::test_pipeline_does_not_need_to_call_all_steps": 1.1738324699999794,
"tests/unit/pipelines/test_base_pipeline.py::test_pipeline_run_fails_when_required_step_operator_is_missing": 1.0618770370001585,
"tests/unit/pipelines/test_base_pipeline.py::test_registering_new_pipeline_version": 2.6634508870000673,
"tests/unit/pipelines/test_base_pipeline.py::test_rerunning_deloyment_does_not_fail": 2.328952759999993,
"tests/unit/pipelines/test_base_pipeline.py::test_reusing_pipeline_version": 1.0781393190000017,
"tests/unit/pipelines/test_base_pipeline.py::test_run_configuration_from_code_and_file": 2.232791661999954,
"tests/unit/pipelines/test_base_pipeline.py::test_run_configuration_from_file": 2.261903539000059,