-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.test_durations
2755 lines (2755 loc) · 373 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
{
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_authorized": 9.980118838007911,
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_invalid_signature": 0.005024249010602944,
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_missing_parameters": 0.005327249979018234,
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_no_installation": 0.010987665998982266,
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_owner_not_found": 0.005572000998654403,
"api/gen_ai/tests/test_gen_ai.py::GenAIAuthViewTests::test_unauthorized": 0.013175291998777539,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_annotate_commit_with_totals_no_complexity_sets_ratio_to_None": 0.07132466600160114,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_annotate_commits_with_totals": 0.05708429198421072,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_default_filters": 0.1083018329954939,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_grouping": 0.15428237400192302,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_simple_filters": 0.07353883401083294,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_simple_filters_branch_filtering": 0.09869333299866412,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_simple_filters_repo_filtering": 0.06778399999893736,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_apply_simple_filters_without_service": 0.06293833297968376,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_ordering": 0.04559062402404379,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_validate_params_agg_fields": 0.04461762400751468,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_validate_params_invalid": 0.04091191600309685,
"api/internal/tests/test_charts.py::CoverageChartHelpersTest::test_validate_params_valid": 0.04204733300139196,
"api/internal/tests/test_charts.py::RepositoryCoverageChartTest::test_get_commits_no_time_grouping": 0.00011304199870210141,
"api/internal/tests/test_charts.py::RepositoryCoverageChartTest::test_get_commits_with_coverage_change": 0.05208729099831544,
"api/internal/tests/test_charts.py::RepositoryCoverageChartTest::test_get_commits_with_time_grouping": 0.03609199999482371,
"api/internal/tests/test_charts.py::RepositoryCoverageChartTest::test_no_permissions": 0.030811583012109622,
"api/internal/tests/test_charts.py::TestChartQueryRunnerHelperMethods::test_end_date": 0.014796792005654424,
"api/internal/tests/test_charts.py::TestChartQueryRunnerHelperMethods::test_first_complete_commit_date_returns_date_of_first_complete_commit_in_repoids": 0.02014808400417678,
"api/internal/tests/test_charts.py::TestChartQueryRunnerHelperMethods::test_interval": 0.008774457004619762,
"api/internal/tests/test_charts.py::TestChartQueryRunnerHelperMethods::test_repoids": 0.01640137398499064,
"api/internal/tests/test_charts.py::TestChartQueryRunnerHelperMethods::test_start_date": 0.014157417987007648,
"api/internal/tests/test_charts.py::TestChartQueryRunnerQuery::test_query_aggregates_multiple_repository_totals": 0.03268675100116525,
"api/internal/tests/test_charts.py::TestChartQueryRunnerQuery::test_query_aggregates_with_latest_commit_if_no_recent_upload": 0.00013374999980442226,
"api/internal/tests/test_charts.py::TestChartQueryRunnerQuery::test_query_doesnt_crash_if_no_commits": 0.03833904101338703,
"api/internal/tests/test_charts.py::TestChartQueryRunnerQuery::test_query_supports_different_grouping_params": 0.00010525000107008964,
"api/internal/tests/test_charts.py::TestChartQueryRunnerQuery::test_query_supports_reverse_ordering": 0.00044358400919009,
"api/internal/tests/test_charts.py::TestOrganizationChartHandler::test_basic_success": 0.03804720799962524,
"api/internal/tests/test_feature.py::FeatureEndpointTests::test_invalid_request_body": 0.021523167000850663,
"api/internal/tests/test_feature.py::FeatureEndpointTests::test_valid_request_body": 0.015315042997826822,
"api/internal/tests/test_feature.py::FeatureEndpointTests::test_variant_assigned_false": 0.019608041999163106,
"api/internal/tests/test_feature.py::FeatureEndpointTests::test_variant_assigned_true": 0.018324374992516823,
"api/internal/tests/test_feature.py::test_overrides_by_email[EMAIL-o_emails0-o_owner_ids0-o_repo_ids0-o_org_ids0-o_values0]": 0.030249040995840915,
"api/internal/tests/test_feature.py::test_overrides_by_email[ORG_ID-o_emails3-o_owner_ids3-o_repo_ids3-o_org_ids3-o_values3]": 0.030302874991321005,
"api/internal/tests/test_feature.py::test_overrides_by_email[OWNER_ID-o_emails1-o_owner_ids1-o_repo_ids1-o_org_ids1-o_values1]": 0.022636501002125442,
"api/internal/tests/test_feature.py::test_overrides_by_email[REPO_ID-o_emails2-o_owner_ids2-o_repo_ids2-o_org_ids2-o_values2]": 0.026270209011272527,
"api/internal/tests/test_pagination.py::PageNumberPaginationTests::test_pagination_returned_page_size": 0.0581687090016203,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_fetch_provider_permissions_caches_read_permissions": 0.02574524999363348,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_fetch_provider_permissions_caches_read_permissions_when_owner_has_no_permissions": 0.014000042006955482,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_fetch_provider_permissions_fetches_permissions_from_provider": 0.014086249997490086,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_has_read_permissions_gets_permissions_from_provider_if_above_conds_not_met": 0.010154374991543591,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_has_read_permissions_returns_true_if_repo_not_private": 0.010599083005217835,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_has_read_permissions_returns_true_if_repoid_in_permission_array": 0.01028487499570474,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_has_read_permissions_returns_true_if_user_is_owner": 0.005991833982989192,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_activates_user_and_returns_true_if_can_auto_activate": 0.013190417012083344,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_false_if_cant_auto_activate": 0.01141987599839922,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_false_if_owner_is_none": 0.004400167003041133,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_false_if_user_is_none": 0.004179582989308983,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_false_if_user_not_in_owner_org": 0.014412666991120204,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_true_if_user_is_activated": 0.00853420901694335,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_true_when_owner_has_legacy_plan": 0.007523541993577965,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_returns_true_when_user_is_owner": 0.0048845839919522405,
"api/internal/tests/test_permissions.py::TestRepositoryPermissionsService::test_user_is_activated_when_self_hosted": 0.01436983201710973,
"api/internal/tests/test_permissions.py::TestUserIsAdminPermissions::test_is_admin_on_provider_handles_torngit_exception": 0.015738750007585622,
"api/internal/tests/test_permissions.py::TestUserIsAdminPermissions::test_is_admin_on_provider_invokes_torngit_adapter_when_user_not_in_admin_array": 0.009025167004438117,
"api/internal/tests/test_repo_accessors.py::RepositoryAccessorsTestCase::test_fetch_and_create_repo": 0.03956550100701861,
"api/internal/tests/test_repo_accessors.py::RepositoryAccessorsTestCase::test_fetch_and_create_repo_if_torngit_error": 0.26320412500353996,
"api/internal/tests/test_repo_accessors.py::RepositoryAccessorsTestCase::test_get_repo_details_if_exists": 0.02584512399334926,
"api/internal/tests/test_repo_accessors.py::RepositoryAccessorsTestCase::test_get_repo_details_if_not_exists": 0.02048650100186933,
"api/internal/tests/test_repo_accessors.py::RepositoryAccessorsTestCase::test_get_repo_permissions_when_author": 0.020249916007742286,
"api/internal/tests/test_views.py::BranchViewSetTests::test_branch_data_includes_most_recent_commiter_of_each_branch": 0.042488958992180414,
"api/internal/tests/test_views.py::BranchViewSetTests::test_can_get_public_repo_branches_if_not_authenticated": 0.03048962401226163,
"api/internal/tests/test_views.py::BranchViewSetTests::test_list_as_inactive_user_returns_403": 0.029156457996577956,
"api/internal/tests/test_views.py::BranchViewSetTests::test_list_returns_200_and_expected_branches": 0.028108915998018347,
"api/internal/tests/test_views.py::BranchViewSetTests::test_list_with_nonexistent_repo_returns_404": 0.024457084000459872,
"api/internal/tests/test_views.py::BranchViewSetTests::test_list_without_permission_returns_403": 0.027470707005704753,
"api/internal/tests/test_views.py::RepoCommitList::test_can_get_public_repo_commits_if_not_authenticated": 0.04463066699099727,
"api/internal/tests/test_views.py::RepoCommitList::test_fetch_commits_inactive_user_returns_403": 0.027158666009199806,
"api/internal/tests/test_views.py::RepoCommitList::test_fetch_commits_no_permissions": 0.02858679200289771,
"api/internal/tests/test_views.py::RepoCommitList::test_filters_by_branch_name": 0.0453597500018077,
"api/internal/tests/test_views.py::RepoCommitList::test_get_commits": 0.030656541988719255,
"api/internal/tests/test_views.py::RepoCommitList::test_get_commits_wrong_org": 0.02601416599645745,
"api/internal/tests/test_views.py::RepoPullDetail::test_can_get_public_repo_pull_detail_when_not_authenticated": 0.04455374999088235,
"api/internal/tests/test_views.py::RepoPullDetail::test_get_pull": 0.03312679199734703,
"api/internal/tests/test_views.py::RepoPullDetail::test_get_pull_as_inactive_user_returns_403": 0.02665883298323024,
"api/internal/tests/test_views.py::RepoPullDetail::test_get_pull_no_permissions": 0.02821908498299308,
"api/internal/tests/test_views.py::RepoPullList::test_can_get_public_repo_pulls_when_not_authenticated": 0.05095070897368714,
"api/internal/tests/test_views.py::RepoPullList::test_get_pull_wrong_org": 0.029832499989424832,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls": 0.03747650199511554,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_as_inactive_user_returns_403": 0.03159325099841226,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_default_ordering": 0.03612604098452721,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_filter_state": 0.04142733500339091,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_no_base_commit_returns_null_for_base_totals": 0.0367107079946436,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_no_head_commit_returns_null_for_head_totals": 0.03584779099037405,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_no_permissions": 0.03279141499660909,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_null_head_author_doesnt_crash": 0.046609166005509906,
"api/internal/tests/test_views.py::RepoPullList::test_get_pulls_ordered_by_pullid": 0.04418941699259449,
"api/internal/tests/test_views.py::RepoPullList::test_list_pulls_comparedto_not_base": 0.046791292013949715,
"api/internal/tests/test_views.py::RepoPullList::test_pulls_list_returns_most_recent_commiter": 0.04215841699624434,
"api/internal/tests/unit/views/test_compare_flags_view.py::TestCompareFlagsView::test_compare_flags___success": 0.05720433400711045,
"api/internal/tests/unit/views/test_compare_flags_view.py::TestCompareFlagsView::test_compare_flags_doesnt_crash_if_base_doesnt_have_flags": 0.03770179199636914,
"api/internal/tests/unit/views/test_compare_flags_view.py::TestCompareFlagsView::test_compare_flags_view_accepts_pullid_query_param": 0.042089667011168785,
"api/internal/tests/unit/views/test_compare_flags_view.py::TestCompareFlagsView::test_compare_flags_view_doesnt_crash_if_coverage_is_none": 0.038074625001172535,
"api/internal/tests/unit/views/test_compare_flags_view.py::TestCompareFlagsView::test_compare_flags_with_report_with_cff_and_non_cff": 0.04860358401492704,
"api/internal/tests/unit/views/test_compare_view.py::TestCompareCommitsView::test_compare_commits_bad_branch": 0.060618292016442865,
"api/internal/tests/unit/views/test_compare_view.py::TestCompareCommitsView::test_compare_commits_bad_commit": 0.04771220899419859,
"api/internal/tests/unit/views/test_compare_view.py::TestCompareCommitsView::test_compare_commits_view_with_branchname": 0.05744466699252371,
"api/internal/tests/unit/views/test_compare_view.py::TestCompareCommitsView::test_compare_commits_view_with_commitid": 0.05387124999833759,
"api/internal/tests/unit/views/test_compare_view.py::TestCompareCommitsView::test_compare_commits_view_with_pullid": 0.05674462397291791,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_account_with_free_user_plan": 0.03603770799236372,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_account_with_paid_user_plan_billed_annually": 0.020742208012961783,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_account_with_paid_user_plan_billed_monthly": 0.021687918007955886,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_destroy_not_own_account_returns_404": 0.019054458010941744,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_destroy_triggers_delete_owner_task": 0.015592873984132893,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_gets_account_fields": 0.022957666995353065,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_gets_account_fields_when_there_are_scheduled_details": 0.02399545798834879,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_gets_account_students": 0.02959962500608526,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_gets_none_for_schedule_details_when_schedule_is_nonexistent": 0.024244832995464094,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_returns_401_if_no_current_owner": 0.024000917008379474,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_returns_401_if_not_authenticated": 0.017562375986017287,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_returns_404_if_user_not_member": 0.017411125008948147,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_account_returns_last_phase_when_more_than_one_scheduled_phases": 0.023196207999717444,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_handles_stripe_error": 0.02057779200549703,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_org_with_account": 0.05286003999935929,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_own_account_give_200": 0.019853374993545003,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_retrieve_subscription_with_stripe_invoice_data": 0.021739834002801217,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_apply_cancellation_discount": 0.025253207015339285,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_apply_cancellation_discount_yearly": 0.02436054100689944,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_billing_address": 0.02691937398049049,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_billing_address_handles_stripe_error": 0.016951915007666685,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_billing_address_without_address": 0.01683746001799591,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_billing_address_without_body": 0.01614558300934732,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_billing_address_without_name": 0.015666791980038397,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_change_name_and_email": 0.02301708300365135,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_set_plan_auto_activate_on_org_with_account": 0.028002374994684942,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_set_plan_auto_activate_to_false": 0.02283379099390004,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_set_plan_auto_activate_to_true": 0.022553167000296526,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_set_plan_to_users_developer_should_set_to_developer": 0.02645679200941231,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_upgrade_to_paid_plan_for_existing_customer_and_set_plan_info": 0.03261895800824277,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_can_upgrade_to_paid_plan_for_new_customer_and_return_checkout_session_id": 0.027693374970112927,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_email_address": 0.02171658299630508,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_email_address_handles_stripe_error": 0.01652420799655374,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_email_address_with_propagate": 0.021646250010235235,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_email_address_without_body": 0.016800041994429193,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_handles_stripe_error": 0.022769125003833324,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_must_fail_if_quantity_and_plan_are_equal_to_the_owners_current_ones": 0.020707250994746573,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_must_fail_if_quantity_is_lower_than_activated_user_count": 0.04330604099959601,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_must_fail_if_team_plan_and_too_many_users": 0.028505250011221506,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_must_validate_active_users_without_counting_active_students": 0.05226937598490622,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_payment_method": 0.024554457995691337,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_payment_method_handles_stripe_error": 0.01627637501223944,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_payment_method_without_body": 0.015498624998144805,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_plan_must_fail_if_account": 0.02285674998711329,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_quantity_must_be_at_least_2_if_paid_plan": 0.02518241698271595,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_quantity_must_be_greater_or_equal_to_current_activated_users_if_paid_plan": 0.04363758402178064,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_quantity_must_fail_if_account": 0.019790124002611265,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_requires_quantity_if_updating_to_paid_plan": 0.018854791997000575,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_sentry_plan_annual": 0.028665374979027547,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_sentry_plan_annual_with_users_org": 0.03378091802005656,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_sentry_plan_monthly": 0.027378710015909746,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_sentry_plan_monthly_with_users_org": 0.03397041700372938,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_sentry_plan_non_sentry_user": 0.022382417009794153,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_team_plan_must_fail_if_currently_team_plan_add_too_many_users": 0.029038626002147794,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_team_plan_must_fail_if_too_many_activated_users_during_trial": 0.025526792000164278,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_update_without_admin_permissions_returns_404": 0.01741029301774688,
"api/internal/tests/views/test_account_viewset.py::AccountViewSetTests::test_upgrade_payment_failure": 0.0322182910022093,
"api/internal/tests/views/test_account_viewset.py::EnterpriseAccountViewSetTests::test_retrieve_own_account_give_200": 0.02849579299800098,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_accepts_pullid_query_param": 0.05271575001825113,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_can_return_public_repo_comparison_with_not_authenticated": 0.04286920902086422,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_diffs_larger_than_MAX_DIFF_SIZE_doesnt_include_lines": 0.03567612498591188,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_file_ignores_MAX_DIFF_SIZE": 0.036082748978515156,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_file_returns_compare_file_with_diff_and_src_data": 0.03590987499046605,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_missing_base_report_returns_none_base_totals": 0.03689237499202136,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_no_raw_reports_returns_404": 0.03593450000334997,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_pull_request_pseudo_comparison_can_update_base_report": 0.038704542006598786,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_pullid_with_nonexistent_base_returns_404": 0.03277666599024087,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_pullid_with_nonexistent_head_returns_404": 0.033624875999521464,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_200_and_expected_files_on_success": 0.03551399998832494,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_403_if_user_inactive": 0.02889879301073961,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_404_if_base_or_head_references_not_found": 0.03053425000689458,
"api/internal/tests/views/test_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_404_if_user_doesnt_have_permissions": 0.03130112499638926,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree": 0.036514416002319194,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_branch": 0.02320791700913105,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_missing_branch": 0.022798165984568186,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_missing_report": 0.02395733300363645,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_missing_sha": 0.02353770898480434,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_no_data_for_components": 0.02267783299612347,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_no_data_for_flags": 0.02234695799415931,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_not_found_for_components": 0.02218829101184383,
"api/internal/tests/views/test_coverage_viewset.py::CoverageViewSetTests::test_tree_sha": 0.021338165999623016,
"api/internal/tests/views/test_current_user_view.py::CurrentUserViewTests::test_current_user_authenticated": 0.02661500099929981,
"api/internal/tests/views/test_current_user_view.py::CurrentUserViewTests::test_current_user_unauthenticated": 0.011918542004423216,
"api/internal/tests/views/test_license_view.py::LicenseViewTest::test_license_url": 0.023725333012407646,
"api/internal/tests/views/test_license_view.py::LicenseViewTest::test_license_view": 0.0099475420138333,
"api/internal/tests/views/test_owner_viewset.py::OwnerViewSetTests::test_retrieve_owner_unknown_service_returns_404": 0.02882920898264274,
"api/internal/tests/views/test_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_404_if_no_matching_username": 0.007872583009884693,
"api/internal/tests/views/test_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_owner_with_period_username": 0.010546791992965154,
"api/internal/tests/views/test_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_owner_with_username": 0.013209790995460935,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_activation_checks_if_credits_available_for_legacy_users": 0.19206887601467315,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_can_retrieve_repo_if_not_authenticated": 0.028713958003208973,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_can_retrieve_repo_name_containing_dot": 0.02742633200250566,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_can_retrieve_repo_name_containing_special_char": 0.03032274999713991,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_cant_access_private_repo_if_not_authenticated": 0.03017879099934362,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_create_repo_on_fetch_if_dne": 0.022343417003867216,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_destroy_repo_as_inactive_user_returns_403": 0.023364332999335602,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_destroy_repo_with_admin_rights_succeeds": 0.0337630019930657,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_destroy_repo_with_provider_admin_rights_succeedes": 0.035793499991996214,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_destroy_repo_without_admin_rights_returns_403": 0.025291250000009313,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_fetch_repo_with_fork_doesnt_crash": 0.03159204201074317,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_get_object_handles_torngit_error": 0.017336167002213188,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_latest_commit_is_none_if_dne": 0.02630749899253715,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_permissions_check_handles_torngit_error": 0.02085129200713709,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_repo_bot_returns_username_if_bot_not_null": 0.03042425100284163,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_accepts_branch_query_param_to_specify_latest_commit": 0.03821316600078717,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_for_inactive_user_returns_403": 0.024823833009577356,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_returns_latest_commit_data": 0.032734499996877275,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_returns_latest_commit_of_default_branch_if_branch_not_specified": 0.03527891599514987,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_returns_yaml": 0.027401500003179535,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_with_no_commits_doesnt_crash": 0.026818209007615224,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_with_view_and_edit_permissions_succeeds": 0.027502792014274746,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_without_edit_permissions_returns_detail_view_without_upload_token": 0.02738154199323617,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_retrieve_without_read_permissions_returns_404": 0.023502249998273328,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_unable_to_fetch_git_repo": 0.017417916998965666,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_update_default_branch_with_permissions_succeeds": 0.027676291996613145,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetDetailActions::test_update_default_branch_without_write_permissions_returns_403": 0.024920415991800837,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_can_retrieve_repo_list_if_not_authenticated": 0.03491741699690465,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_doesnt_return_private_repos_if_above_conditions_not_met": 0.02866091698524542,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_active_repos": 0.027315542014548555,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_all_repos": 0.0263928320055129,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_all_repos_by_name": 0.02698729099938646,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_inactive_repos": 0.030614998991950415,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_repos_with_totals": 0.032543376000830904,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_get_totals_with_timestamp": 0.03306729100586381,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_latest_commit_null": 0.025053083008970134,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_order_by_coverage": 0.04655320900201332,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_order_by_lines": 0.044162292018882,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_order_by_name": 0.0364740010118112,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_order_by_updatestamp": 0.036715583002660424,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_returns_latest_commit_totals": 0.03149608301464468,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_returns_latest_coverage_change": 0.032154542015632614,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_returns_private_repos_if_user_has_permission": 0.02770487499947194,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_returns_private_repos_if_user_owns_repo": 0.025962082989281043,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_returns_public_repos_if_not_owned_by_user_and_not_in_permissions_array": 0.026352709013735875,
"api/internal/tests/views/test_repo_view.py::TestRepositoryViewSetList::test_totals_serializer": 0.03361349999613594,
"api/internal/tests/views/test_self_hosted_settings_viewset.py::SettingsViewsetNonadminTestCase::test_settings": 0.02420591599366162,
"api/internal/tests/views/test_self_hosted_settings_viewset.py::SettingsViewsetUnauthenticatedTestCase::test_settings": 0.008384250002563931,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_detail": 0.032087166007841006,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_list_users": 0.03179237499716692,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_list_users_filter_activated": 0.023048291986924596,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_list_users_filter_admin": 0.02496850000170525,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_list_users_search": 0.024131292026140727,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_update_activate": 0.030645459017250687,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_update_activate_no_more_seats": 0.0291930830135243,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAdminTestCase::test_update_deactivate": 0.03211391701188404,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAuthenticatedTestCase::test_current": 0.028916957991896197,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAuthenticatedTestCase::test_current_update": 0.030172875005519018,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAuthenticatedTestCase::test_detail": 0.019414541995502077,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAuthenticatedTestCase::test_detail_self": 0.016622251001535915,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetAuthenticatedTestCase::test_list_users": 0.017775042011635378,
"api/internal/tests/views/test_self_hosted_user_viewset.py::UserViewsetUnauthenticatedTestCase::test_list_users": 0.007220293002319522,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_already_exists": 0.034328041001572274,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_missing_headers": 0.007217875012429431,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_success": 0.012049750992446207,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_with_invalid_owner": 0.008642082990263589,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_with_invalid_service": 0.007872084010159597,
"api/internal/tests/views/test_slack_view.py::SlackViewSetTests::test_generate_access_token_with_invalid_token": 0.007618625008035451,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_filter_by_activated": 0.03908891598985065,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_filter_by_is_admin": 0.029770373992505483,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_order_by_activated": 0.040025292022619396,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_order_by_email": 0.04052033298648894,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_order_by_last_pull_timestamp": 0.04403220801032148,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_order_by_name": 0.04021295798884239,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_order_by_username": 0.04192274900560733,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_search_by_email": 0.03765199999907054,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_search_by_name": 0.03435475000878796,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_can_search_by_username": 0.03409729200939182,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_returns_200_and_user_list_on_success": 0.02874733398493845,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_sets_activated": 0.030756292020669207,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_list_sets_is_admin": 0.03434583402122371,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_can_set_activated_to_false": 0.032890583999687806,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_can_set_activated_to_true": 0.03308320800715592,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_can_set_is_admin_to_false": 0.033030916005373,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_can_set_is_admin_to_true": 0.03304129099706188,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_returns_403_if_cannot_activate_user": 0.027993708004942164,
"api/internal/tests/views/test_user_viewset.py::UserViewSetTests::test_patch_with_ownerid": 0.03580520799732767,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_create_new_pull_user_provided_base": 0.04545641699223779,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pull": 0.023371208997559734,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pull_no_permissions": 0.021082749983179383,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pull_no_pullid_provided": 0.021824625990120694,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pulls": 0.03040191599575337,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pulls_no_permissions": 0.018241331999888644,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_get_pulls_wrong_repo_token": 0.01942208300170023,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_post_pull_user_provided_base": 0.01989633399352897,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_update_pull_user_provided_base": 0.021932415998890065,
"api/public/v1/tests/views/test_pull_viewset.py::PullViewSetTests::test_update_pull_user_provided_base_no_permissions": 0.020335416003945284,
"api/public/v2/tests/test_api_branch_viewset.py::BranchViewsetTests::test_list": 0.11941699899034575,
"api/public/v2/tests/test_api_branch_viewset.py::BranchViewsetTests::test_retrieve": 0.033729000977473333,
"api/public/v2/tests/test_api_branch_viewset.py::BranchViewsetTests::test_retrieve_period": 0.03270920801151078,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitDetailTestCase::test_commit_detail_authenticated": 0.03675162501167506,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitDetailTestCase::test_commit_detail_not_authenticated": 0.02902716599055566,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitListTestCase::test_commit_list_authenticated": 0.03724387600959744,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitListTestCase::test_commit_list_not_authenticated": 0.0326897489867406,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitListTestCase::test_commit_list_null_coverage": 0.027247833990259096,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitUploadsTestCase::test_commit_uploads_authenticated": 0.046554875996662304,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitUploadsTestCase::test_commit_uploads_not_authenticated": 0.0436934160097735,
"api/public/v2/tests/test_api_commit_viewset.py::RepoCommitUploadsTestCase::test_commit_uploads_pagination": 0.0404839590046322,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_accepts_pullid_query_param": 0.0537217499804683,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_can_return_public_repo_comparison_with_not_authenticated": 0.04403354099486023,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_components_comparison": 0.035013998989597894,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_file_ignores_MAX_DIFF_SIZE": 0.03685287499683909,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_file_returns_compare_file_with_diff_and_src_data": 0.037381375004770234,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_flags_comparison": 0.031706415975349955,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_has_diff_query_param": 0.04541737600811757,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_missing_base_report_returns_none_base_totals": 0.041950914994231425,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_no_raw_reports_returns_404": 0.03974766700412147,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_pull_request_pseudo_comparison_can_update_base_report": 0.03735945800144691,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_pullid_with_nonexistent_base_returns_404": 0.03206362499622628,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_pullid_with_nonexistent_head_returns_404": 0.03308450001350138,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_200_and_expected_files_on_success": 0.03287912500672974,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_403_if_user_inactive": 0.028190582015668042,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_404_if_base_or_head_references_not_found": 0.030181791007635184,
"api/public/v2/tests/test_api_compare_viewset.py::TestCompareViewSetRetrieve::test_returns_404_if_user_doesnt_have_permissions": 0.03175137400103267,
"api/public/v2/tests/test_api_compare_viewset.py::TestImpactedFilesComparison::test_impacted_file_segment_found": 0.057627707996289246,
"api/public/v2/tests/test_api_compare_viewset.py::TestImpactedFilesComparison::test_impacted_file_segment_not_found": 0.09241133200703189,
"api/public/v2/tests/test_api_compare_viewset.py::TestImpactedFilesComparison::test_impacted_files_200_found": 0.047598625998944044,
"api/public/v2/tests/test_api_compare_viewset.py::TestImpactedFilesComparison::test_impacted_files_200_not_found": 0.046157459015375935,
"api/public/v2/tests/test_api_component_viewset.py::ComponentViewSetTestCase::test_component_list": 0.038333457996486686,
"api/public/v2/tests/test_api_component_viewset.py::ComponentViewSetTestCase::test_component_list_no_coverage": 0.02783241700672079,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_flag_coverage": 0.20602279099693988,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_flag_coverage_missing_flag": 0.025548125006025657,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_repo_coverage": 0.04590800000005402,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_repo_coverage_branch": 0.04247087500698399,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_repo_coverage_invalid_interval": 0.023672333001741208,
"api/public/v2/tests/test_api_coverage_viewset.py::CoverageViewSetTestCase::test_repo_coverage_no_interval": 0.02456129199708812,
"api/public/v2/tests/test_api_owner_viewset.py::OwnerViewSetTests::test_retrieve_owner_unknown_service_returns_404": 0.006915750011103228,
"api/public/v2/tests/test_api_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_404_if_no_matching_username": 0.006398165991413407,
"api/public/v2/tests/test_api_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_owner_with_period_username": 0.010599666988127865,
"api/public/v2/tests/test_api_owner_viewset.py::OwnerViewSetTests::test_retrieve_returns_owner_with_username": 0.008472750007058494,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_has_active_session": 0.03054891600913834,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_multiple_sessions_one": 0.027398209014791064,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_multiple_sessions_two": 0.022212417010450736,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_no_sessions": 0.020479166982113384,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_not_admin_of_org": 0.25877150101587176,
"api/public/v2/tests/test_api_owner_viewset.py::UserSessionViewSetTests::test_not_part_of_org": 0.2419836660119472,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_list": 0.028438624984119087,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_retrieve_by_ownerid": 0.06255424900155049,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_retrieve_by_username": 0.023959916026797146,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_retrieve_cannot_get_details_if_not_member_of_org": 0.030706833000294864,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_retrieve_cannot_get_details_of_members_of_other_orgs": 0.03164070800994523,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_update_activate_by_ownerid": 0.03614075000223238,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_update_activate_by_username": 0.0356615829950897,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_update_activate_no_seats_left": 0.05542895798862446,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_update_activate_unauthorized_members_of_other_orgs": 0.05128079101268668,
"api/public/v2/tests/test_api_owner_viewset.py::UserViewSetTests::test_update_activate_unauthorized_not_member_of_org": 0.047585624997736886,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_list": 0.07786991701868828,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_list_cursor_pagination": 0.035626333992695436,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_list_start_date": 0.028102500014938414,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_list_state": 0.029963541994220577,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_no_pull_if_not_super_token_nor_user_token": 0.022039792005671188,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_no_pull_if_super_token_but_no_GET_request": 0.020579167001415044,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_no_pull_if_unauthenticated_token_request": 0.01959424999949988,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_pull_with_valid_super_token": 0.024979749985504895,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_retrieve": 0.026293831993825734,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_retrieve_with_patch_coverage": 0.02840599900810048,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_retrieve_with_patch_coverage_no_branches": 0.02653283298423048,
"api/public/v2/tests/test_api_pull_viewset.py::PullViewsetTests::test_retrieve_with_patch_coverage_no_commit_comparison": 0.028305916988756508,
"api/public/v2/tests/test_api_repo_config.py::RepoConfigViewTests::test_get": 0.05330133299867157,
"api/public/v2/tests/test_api_repo_config.py::RepoConfigViewTests::test_get_no_part_of_org": 0.023853541002608836,
"api/public/v2/tests/test_api_repo_viewset.py::RepoViewsetTests::test_list": 0.06056483299471438,
"api/public/v2/tests/test_api_repo_viewset.py::RepoViewsetTests::test_retrieve": 0.030662458011647686,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report": 0.038681583988363855,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_large_walk_back": 0.026913417008472607,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_missing_file": 0.030937417002860457,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_missing_parent_commit": 0.027072458018665202,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_no_walk_back": 0.02601908499491401,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_not_enough_walk_back": 0.026917750015854836,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_walk_back_commit_not_complete": 0.029601916001411155,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_walk_back_commit_not_found": 0.029363917012233287,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_walk_back_found": 0.028158500004792586,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_walk_back_no_parent": 0.03159883299667854,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_with_walk_back": 0.029006041993852705,
"api/public/v2/tests/test_file_report_viewset.py::FileReportViewSetTestCase::test_file_report_with_walk_back_oldest_sha": 0.02727679201052524,
"api/public/v2/tests/test_flag_viewset.py::FlagViewSetTestCase::test_flag_list_no_commit": 0.0389354579965584,
"api/public/v2/tests/test_flag_viewset.py::FlagViewSetTestCase::test_flag_list_no_report": 0.03284316802455578,
"api/public/v2/tests/test_flag_viewset.py::FlagViewSetTestCase::test_flag_list_with_coverage": 0.030918168020434678,
"api/public/v2/tests/test_owners_view.py::OwnersViewTestCase::test_owners_list": 0.03128483302134555,
"api/public/v2/tests/test_owners_view.py::OwnersViewTestCase::test_owners_list_invalid_service": 0.021403792008641176,
"api/public/v2/tests/test_owners_view.py::OwnersViewTestCase::test_owners_list_unauthenticated": 0.01546745898667723,
"api/public/v2/tests/test_report_tree.py::ReportTreeTests::test_tree": 0.030390583007829264,
"api/public/v2/tests/test_report_tree.py::ReportTreeTests::test_tree_depth": 0.02067145901673939,
"api/public/v2/tests/test_report_tree.py::ReportTreeTests::test_tree_path": 0.021335457990062423,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_no_report_if_not_super_token_nor_user_token": 0.033866665995446965,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_no_report_if_super_token_but_no_GET_request": 0.022664541989797726,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_no_report_if_unauthenticated_token_request": 0.020758917002240196,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report": 0.027281250018859282,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_branch": 0.02639033301966265,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_commit_sha": 0.02690208399144467,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_component": 0.05376987499766983,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_flag": 0.03321329200116452,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_flag_and_path": 0.027365460016881116,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_invalid_path": 0.02574929199181497,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_missing_report": 0.02541637499234639,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_nonexistent_branch": 0.025126749984337948,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_nonexistent_commit_sha": 0.024662791984155774,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_path": 0.027311124984407797,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_path_regex_filter": 0.04829687299206853,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_success_if_token_is_not_super_but_is_user_token": 0.027751499990699813,
"api/public/v2/tests/test_report_viewset.py::ReportViewSetTestCase::test_report_super_token_permission_success": 0.025364790999446996,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_list": 0.08689695801876951,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_list_filters": 0.05433508299756795,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_no_result_if_not_super_token_nor_user_token": 0.048126457986654714,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_no_result_if_super_token_but_no_GET_request": 0.04621400001633447,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_no_test_result_if_unauthenticated_token_request": 0.045128791010938585,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_result_with_valid_super_token": 0.04863195899815764,
"api/public/v2/tests/test_test_results_view.py::TestResultsViewsetTests::test_retrieve": 0.052179042002535425,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_no_report_if_unauthenticated_token_request": 0.03216375097690616,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report": 0.02779445899068378,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_branch": 0.02839516599487979,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_commit_sha": 0.025505543002509512,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_component": 0.0425126240006648,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_flag": 0.033515040995553136,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_invalid_path": 0.027967041009105742,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_nonexistent_branch": 0.025347000002511777,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_nonexistent_commit_sha": 0.0264129159913864,
"api/public/v2/tests/test_totals_viewset.py::TotalsViewSetTestCase::test_report_path": 0.026262793006026186,
"billing/tests/test_helpers.py::HelpersTestCase::test_on_enterprise_plan_cloud": 0.018055332999210805,
"billing/tests/test_helpers.py::HelpersTestCase::test_on_enterprise_plan_enterprise_cloud": 0.008294458006275818,
"billing/tests/test_helpers.py::HelpersTestCase::test_on_enterprise_plan_on_prem": 0.0057270830002380535,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_check_and_handle_delayed_notification_payment_methods": 0.019525873998645693,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_check_and_handle_delayed_notification_payment_methods_multiple_subscriptions": 0.01089112600311637,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_check_and_handle_delayed_notification_payment_methods_no_customer": 0.005493249977007508,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_check_and_handle_delayed_notification_payment_methods_no_subscription": 0.006184041980304755,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_checkout_session_completed_sets_stripe_ids": 0.01109145900409203,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_created_logs_and_doesnt_crash": 0.006767082013539039,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_created_can_trigger_trial_expiration": 0.034289167015231214,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_created_does_nothing_if_no_plan_id": 0.008747289990424179,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_created_does_nothing_if_plan_not_paid_user_plan": 0.008629375995951705,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_created_early_returns_if_unverified_payment": 0.012157874996773899,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_created_sets_plan_info": 0.015663167025195435,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_deleted_deactivates_all_repos": 0.016557623981498182,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_deleted_deactivates_all_repos_multiple_owner": 0.03309299900138285,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_deleted_no_customer": 0.009996250009862706,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_deleted_sets_plan_to_free": 0.012350916003924794,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_deleted_sets_plan_to_free_mutliple_owner": 0.017900125007145107,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_does_not_change_subscription_if_not_paid_user_plan": 0.01575429098738823,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_does_not_change_subscription_if_there_is_a_schedule": 0.011278332996880636,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_logs_error_if_no_matching_owners": 0.007184083995525725,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_payment_failed": 0.010067875002278015,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_sets_fields_on_success": 0.012139376005507074,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_sets_fields_on_success_multiple_owner": 0.0176852919976227,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_sets_free_and_deactivates_all_repos_if_incomplete_expired": 0.01784179099195171,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_subscription_updated_sets_free_and_deactivates_all_repos_if_incomplete_expired_multiple_owner": 0.02875629199843388,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_update_but_not_payment_method": 0.007084500000928529,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_update_but_payment_method_is_same": 0.006555291009135544,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_customer_update_payment_method": 0.007047959006740712,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_has_unverified_initial_payment_method": 0.004258332992321812,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_has_unverified_initial_payment_method_no_payment_intent": 0.004000416985945776,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_has_unverified_initial_payment_method_payment_intent_succeeded": 0.004293250996852294,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invalid_event_signature": 0.006402416998753324,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_failed_sends_email_to_admins": 0.01907629199558869,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_failed_sends_email_to_admins_no_card": 0.017911833012476563,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_failed_sets_multiple_owners_delinquent_true": 0.04909000001498498,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_failed_sets_owner_delinquent_true": 0.02171170900692232,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_failed_skips_delinquency_if_payment_intent_requires_action": 0.010620290995575488,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_succeeded_emails_delinquents": 0.027674041004502214,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_succeeded_emails_only_emails_delinquents": 0.014992124997661449,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_succeeded_sets_multiple_owners_delinquent_false": 0.030506916999001987,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_invoice_payment_succeeded_sets_owner_delinquent_false": 0.021907082991674542,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_payment_intent_succeeded": 0.005953416010015644,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_setup_intent_succeeded": 0.005331124004442245,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_subscription_schedule_created_logs_a_new_schedule": 0.01158491701062303,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_subscription_schedule_released_logs_error_if_owner_does_not_exist": 0.00856433401349932,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_subscription_schedule_released_updates_multiple_owners_with_existing_subscription": 0.0239799179835245,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_subscription_schedule_released_updates_owner_with_existing_subscription": 0.01572858302097302,
"billing/tests/test_views.py::StripeWebhookHandlerTests::test_subscription_schedule_updated_logs_changes_to_schedule": 0.011392874992452562,
"codecov/commands/tests/test_base.py::test_base_command": 0.0015688739804318175,
"codecov/commands/tests/test_base.py::test_base_interactor_with_missing_required_service": 0.00039158298750407994,
"codecov/commands/tests/test_executor.py::test_get_executor_from_command": 0.0004015430167783052,
"codecov/commands/tests/test_executor.py::test_get_executor_from_request": 0.0005634580156765878,
"codecov/tests/test_urls.py::ViewTest::test_health": 0.008857875014655292,
"codecov/tests/test_views.py::OwnerAutocompleteSearchTest::test_search_by_one_term_owner": 0.0309163339989027,
"codecov/tests/test_views.py::OwnerAutocompleteSearchTest::test_search_by_one_term_service": 0.025207999991835095,
"codecov/tests/test_views.py::OwnerAutocompleteSearchTest::test_search_by_two_terms": 0.023497791014960967,
"codecov/tests/test_views.py::OwnerAutocompleteSearchTest::test_unauthorized_access": 0.02165954098745715,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_one_term_repo": 0.03466350000235252,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_one_term_service": 0.028056166993337683,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_three_terms": 0.0254590830008965,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_three_terms_invalid_service": 0.022425917006330565,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_two_terms_owner": 0.029553416999988258,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_search_by_two_terms_service": 0.025429582979995757,
"codecov/tests/test_views.py::RepositoryAutocompleteSearchTest::test_unauthorized_access": 0.02199829200981185,
"codecov_auth/commands/owner/interactors/tests/test_cancel_trial.py::CancelTrialInteractorTest::test_cancel_trial_raises_exception_when_current_user_not_part_of_org": 0.3152541679883143,
"codecov_auth/commands/owner/interactors/tests/test_cancel_trial.py::CancelTrialInteractorTest::test_cancel_trial_raises_exception_when_owner_is_not_in_db": 0.28751404100330546,
"codecov_auth/commands/owner/interactors/tests/test_cancel_trial.py::CancelTrialInteractorTest::test_cancel_trial_raises_exception_when_owners_trial_status_is_expired": 0.30992766600684263,
"codecov_auth/commands/owner/interactors/tests/test_cancel_trial.py::CancelTrialInteractorTest::test_cancel_trial_raises_exception_when_owners_trial_status_is_not_started": 0.36312758398707956,
"codecov_auth/commands/owner/interactors/tests/test_cancel_trial.py::CancelTrialInteractorTest::test_cancel_trial_starts_trial_for_org_that_has_trial_ongoing": 0.3174778760148911,
"codecov_auth/commands/owner/interactors/tests/test_create_api_token.py::CreateApiTokenInteractorTest::test_create_token": 0.3071898340131156,
"codecov_auth/commands/owner/interactors/tests/test_create_api_token.py::CreateApiTokenInteractorTest::test_when_no_name_raise": 0.28438899999309797,
"codecov_auth/commands/owner/interactors/tests/test_create_api_token.py::CreateApiTokenInteractorTest::test_when_unauthenticated_raise": 0.33629275001294445,
"codecov_auth/commands/owner/interactors/tests/test_create_user_token.py::CreateUserTokenInteractorTest::test_create_token": 0.28927204200590495,
"codecov_auth/commands/owner/interactors/tests/test_create_user_token.py::CreateUserTokenInteractorTest::test_empty_name": 0.24502837500767782,
"codecov_auth/commands/owner/interactors/tests/test_create_user_token.py::CreateUserTokenInteractorTest::test_invalid_type": 0.2647824169835076,
"codecov_auth/commands/owner/interactors/tests/test_create_user_token.py::CreateUserTokenInteractorTest::test_unauthenticated": 0.24244820800959133,
"codecov_auth/commands/owner/interactors/tests/test_delete_session.py::DeleteSessionInteractorTest::test_delete_session": 0.28103833401110023,
"codecov_auth/commands/owner/interactors/tests/test_delete_session.py::DeleteSessionInteractorTest::test_when_unauthenticated_raise": 0.29040108299523126,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_admin_on_provider_initially_is_null": 0.3323457920050714,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_in_org_not_on_provider": 0.3048858760012081,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_no_current_owner": 0.28298366800299846,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_not_in_org_or_on_provider": 0.258994375995826,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_on_provider": 0.25662391699734144,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_on_provider_invokes_torngit_adapter": 0.294785916004912,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_on_provider_only_once": 0.30190766700252425,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_is_admin_self_hosted": 0.3179564590100199,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_user_admin_in_personal_org": 0.2960754590021679,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_user_not_a_provider_admin": 0.5162401250127004,
"codecov_auth/commands/owner/interactors/tests/test_get_is_current_user_an_admin.py::GetIsCurrentUserAnAdminInteractorTest::test_user_not_admin_in_org": 0.5192253340064781,
"codecov_auth/commands/owner/interactors/tests/test_get_org_upload_token.py::GetOrgUploadTokenInteractorTest::test_owner_with_no_org_upload_token": 0.3036299169907579,
"codecov_auth/commands/owner/interactors/tests/test_get_org_upload_token.py::GetOrgUploadTokenInteractorTest::test_owner_with_org_upload_token": 0.3119201660010731,
"codecov_auth/commands/owner/interactors/tests/test_get_org_upload_token.py::GetOrgUploadTokenInteractorTest::test_owner_with_org_upload_token_and_anonymous_user": 0.29143504101375584,
"codecov_auth/commands/owner/interactors/tests/test_get_org_upload_token.py::GetOrgUploadTokenInteractorTest::test_owner_with_org_upload_token_and_unauthorized_user": 0.28457545900892,
"codecov_auth/commands/owner/interactors/tests/test_get_uploads_number_per_user.py::GetUploadsNumberPerUserInteractorTest::test_number_of_uploads_with_expired_trial": 0.32875695801340044,
"codecov_auth/commands/owner/interactors/tests/test_get_uploads_number_per_user.py::GetUploadsNumberPerUserInteractorTest::test_with_no_uploads": 0.3223605840030359,
"codecov_auth/commands/owner/interactors/tests/test_get_uploads_number_per_user.py::GetUploadsNumberPerUserInteractorTest::test_with_number_of_uploads": 0.31270158299594186,
"codecov_auth/commands/owner/interactors/tests/test_is_syncing.py::IsSyncingInteractorTest::test_call_is_refreshing": 0.2829562089900719,
"codecov_auth/commands/owner/interactors/tests/test_onboard_user.py::OnboardUserInteractorTest::test_when_everything_is_good": 0.29425258398987353,
"codecov_auth/commands/owner/interactors/tests/test_onboard_user.py::OnboardUserInteractorTest::test_when_params_arent_good": 0.2550970839947695,
"codecov_auth/commands/owner/interactors/tests/test_onboard_user.py::OnboardUserInteractorTest::test_when_unauthenticated_raise": 0.24583937499846797,
"codecov_auth/commands/owner/interactors/tests/test_onboard_user.py::OnboardUserInteractorTest::test_when_user_already_completed_onboarding": 0.2375337080011377,
"codecov_auth/commands/owner/interactors/tests/test_regenerate_org_upload_token.py::RegenerateOrgUploadTokenInteractorTest::test_regenerate_org_upload_token": 0.24265487500815652,
"codecov_auth/commands/owner/interactors/tests/test_regenerate_org_upload_token.py::RegenerateOrgUploadTokenInteractorTest::test_regenerate_org_upload_token_user_not_part_of_org": 0.253604749974329,
"codecov_auth/commands/owner/interactors/tests/test_regenerate_org_upload_token.py::RegenerateOrgUploadTokenInteractorTest::test_when_unauthenticated_raise": 0.24917129099776503,
"codecov_auth/commands/owner/interactors/tests/test_regenerate_org_upload_token.py::RegenerateOrgUploadTokenInteractorTest::test_when_validation_no_owner_found": 0.2394788750098087,
"codecov_auth/commands/owner/interactors/tests/test_revoke_user_token.py::RevokeUserTokenInteractorTest::test_revoke_user_token": 0.24008754100941587,
"codecov_auth/commands/owner/interactors/tests/test_revoke_user_token.py::RevokeUserTokenInteractorTest::test_unauthenticated": 0.25595737401454244,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_create_okta_settings_when_account_does_not_exist": 0.8024335840018466,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_unauthorized_error_when_user_is_not_admin": 0.3045726249984,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_update_okta_settings_url_remove_trailing_slashes": 0.3116726679872954,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_update_okta_settings_when_account_exists": 0.30897691698919516,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_update_okta_settings_when_okta_settings_exists": 0.35228625099989586,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_update_okta_settings_when_some_fields_are_none": 0.27157420899311546,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_user_is_not_authenticated": 0.2822088329849066,
"codecov_auth/commands/owner/interactors/tests/test_save_okta_config.py::SaveOktaConfigInteractorTest::test_validation_error_when_owner_not_found": 0.28741470897512045,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_email_opt_in_saved_in_db": 0.2990238320053322,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_marketo_called_only_with_consent": 0.24967737398401368,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_marketo_not_called_without_consent": 0.23439633299130946,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_update_owner_and_user_when_email_is_not_empty": 0.2697648739995202,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_update_user_when_agreement_is_false": 0.2497628330020234,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_update_user_when_agreement_is_true": 0.2478263759840047,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_user_is_not_authenticated": 0.23449199898459483,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_deprecated_validation_error_when_customer_intent_invalid": 0.22813253998174332,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_email_opt_in_saved_in_db": 0.23497150001639966,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_marketo_called_only_with_consent": 0.24344370899780188,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_marketo_not_called_without_consent": 0.230835374983144,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_update_owner_and_user_when_email_and_name_are_not_empty": 0.26381883400608785,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_update_user_when_agreement_is_false": 0.25373650003166404,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_update_user_when_agreement_is_true": 0.2533244580263272,
"codecov_auth/commands/owner/interactors/tests/test_save_terms_agreement.py::UpdateSaveTermsAgreementInteractorTest::test_user_is_not_authenticated": 0.23931533299037255,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_set_upload_token_required_to_false": 0.25831008300883695,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_set_upload_token_required_to_null_raises_validation_error": 0.2502923350111814,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_set_upload_token_required_when_user_is_admin": 0.2536552910023602,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_unauthorized_error_when_user_is_not_admin": 0.25193037500139326,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_user_is_not_authenticated": 0.2560221660096431,
"codecov_auth/commands/owner/interactors/tests/test_set_upload_token_required.py::SetUploadTokenRequiredInteractorTest::test_validation_error_when_owner_not_found": 0.3295464159891708,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_changes_yaml_bot_and_branch": 0.27268066599208396,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_is_part_of_org_and_yaml_has_quotes": 0.2844424170034472,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_is_part_of_org_and_yaml_is_empty": 0.26223699998809025,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_is_part_of_org_and_yaml_is_good": 0.29092225000204053,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_is_part_of_org_and_yaml_is_not_codecov_valid": 0.25874258298426867,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_user_is_part_of_org_and_yaml_is_not_dict": 0.2726949169737054,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_when_not_path_of_org_raise": 0.23809716699179262,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_when_owner_not_found_raise": 0.24963262600067537,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_when_unauthenticated_raise": 0.24207774900423829,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_yaml_has_comments": 0.25884629199572373,
"codecov_auth/commands/owner/interactors/tests/test_set_yaml_on_owner.py::SetYamlOnOwnerInteractorTest::test_yaml_syntax_error": 0.2831567079992965,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_cancel_trial_raises_exception_when_current_user_not_part_of_org": 0.27386983401083853,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_start_trial_raises_exception_when_owner_is_not_in_db": 0.2758092919975752,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_start_trial_raises_exception_when_owners_trial_status_cannot_trial": 0.2625454159860965,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_start_trial_raises_exception_when_owners_trial_status_is_expired": 0.261124208002002,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_start_trial_raises_exception_when_owners_trial_status_is_ongoing": 0.26470262500515673,
"codecov_auth/commands/owner/interactors/tests/test_start_trial.py::StartTrialInteractorTest::test_start_trial_starts_trial_for_org_that_has_not_started_trial_before_and_calls_segment": 0.2682898759958334,
"codecov_auth/commands/owner/interactors/tests/test_trigger_sync.py::IsSyncingInteractorTest::test_call_is_refreshing": 0.24304570899403188,
"codecov_auth/commands/owner/interactors/tests/test_trigger_sync.py::IsSyncingInteractorTest::test_when_unauthenticated_raise": 0.24887395798577927,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_attempts_to_auto_activate_user_for_default_org": 0.2687591669964604,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_update_org_not_belonging_to_users_organizations": 0.3592837920150487,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_update_org_when_default_org_username_is_none": 0.3674397510039853,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_update_owners_default_org": 0.31849441601661965,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_update_owners_default_org_when_current_user_is_selected": 0.28158070899371523,
"codecov_auth/commands/owner/interactors/tests/test_update_default_organization.py::UpdateDefaultOrganizationInteractorTest::test_when_unauthenticated_raise": 0.2682273739919765,
"codecov_auth/commands/owner/interactors/tests/test_update_profile.py::UpdateProfileInteractorTest::test_update_email": 0.2849409589980496,
"codecov_auth/commands/owner/interactors/tests/test_update_profile.py::UpdateProfileInteractorTest::test_update_email_and_name": 0.26163150000502355,
"codecov_auth/commands/owner/interactors/tests/test_update_profile.py::UpdateProfileInteractorTest::test_update_name": 0.2843067489884561,
"codecov_auth/commands/owner/interactors/tests/test_update_profile.py::UpdateProfileInteractorTest::test_when_email_wrong": 0.26121304198750295,
"codecov_auth/commands/owner/interactors/tests/test_update_profile.py::UpdateProfileInteractorTest::test_when_unauthenticated_raise": 0.26625941701058764,
"codecov_auth/commands/owner/interactors/tests/test_update_self_hosted_settings.py::UpdateSelfHostedSettingsInteractorTest::test_update_self_hosted_settings_when_auto_activate_is_false": 0.261274083997705,
"codecov_auth/commands/owner/interactors/tests/test_update_self_hosted_settings.py::UpdateSelfHostedSettingsInteractorTest::test_update_self_hosted_settings_when_auto_activate_is_true": 0.2464042089995928,
"codecov_auth/commands/owner/interactors/tests/test_update_self_hosted_settings.py::UpdateSelfHostedSettingsInteractorTest::test_user_is_not_authenticated": 0.22670712499530055,
"codecov_auth/commands/owner/interactors/tests/test_update_self_hosted_settings.py::UpdateSelfHostedSettingsInteractorTest::test_validation_error_when_not_self_hosted_instance": 0.24941629100067075,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_cancel_trial_delegate_to_interactor": 0.2385064589761896,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_create_api_token_delegate_to_interactor": 0.2324503760173684,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_create_user_token_delegate_to_interactor": 0.24509083297743928,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_delete_session_delegate_to_interactor": 0.2814535840007011,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_get_is_current_user_an_admin_delegate_to_interactor": 0.21639858298294712,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_get_org_upload_token_delegate_to_interactor": 0.21998862500186078,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_get_uploads_number_per_user_delegate_to_interactor": 0.29331675099092536,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_is_syncing_delegate_to_interactor": 0.2415235410007881,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_onboard_user_delegate_to_interactor": 0.3265554590179818,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_regenerate_org_upload_token_delegate_to_interactor": 0.24693308398127556,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_revoke_user_token_delegate_to_interactor": 0.26986504199157935,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_save_okta_config_delegate_to_interactor": 0.2787163339962717,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_save_terms_agreement_delegate_to_interactor": 0.2581813750002766,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_set_upload_token_required_delegate_to_interactor": 0.3031030009879032,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_set_yaml_on_owner_delegate_to_interactor": 0.24514041798829567,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_start_trial_delegate_to_interactor": 0.25516324999625795,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_trigger_sync_delegate_to_interactor": 0.23926187500183005,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_update_default_organization_delegate_to_interactor": 0.23699345797649585,
"codecov_auth/commands/owner/tests/test_owner.py::OwnerCommandsTest::test_update_profile_delegate_to_interactor": 0.23952441601431929,
"codecov_auth/management/commands/tests/test_set_trial_status_values.py::OwnerCommandTestCase::test_set_trial_status_values": 0.08368508400053543,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_deactivate_stale_users": 0.07846912601962686,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_detail_page": 0.20228362501075026,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_link_users_to_account": 0.06996591700590216,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_link_users_to_account_not_enough_seats": 0.03778041600889992,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_link_users_to_account_remove_unneeded_account_users": 0.07190654102305416,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_list_page": 0.041849751985864714,
"codecov_auth/tests/test_admin.py::AccountAdminTest::test_seat_check": 0.048108249000506476,
"codecov_auth/tests/test_admin.py::InvoiceBillingAdminTest::test_account_widget": 0.01264549900952261,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_account_widget": 0.022646331999567337,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_confirmation_deleted_objects": 0.009226207999745384,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_delete_model": 0.00835491500038188,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_delete_queryset": 0.008689667010912672,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_extend_trial_action": 0.024092167004710063,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_inline_orgwide_add_token_permission_no_token_and_user_in_enterprise_cloud_plan": 0.01045987602265086,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_inline_orgwide_add_token_permission_no_token_user_not_in_enterprise_cloud_plan": 0.009559916987200268,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_inline_orgwide_permissions": 0.013099042000249028,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_inline_orgwide_tokens_display": 0.008912541990866885,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_org_token_refresh_request_calls_service_to_refresh_token": 0.024159415988833643,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_org_token_request_doesnt_call_service_to_refresh_token": 0.02190412401978392,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_owner_admin_detail_page": 0.05955199999152683,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_owner_admin_impersonate_owner": 0.0371332080103457,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_prev_and_new_values_in_log_entry": 0.011610917004873045,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_start_trial_action": 0.01481383501959499,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_start_trial_paid_plan": 0.014473666989943013,
"codecov_auth/tests/test_admin.py::OwnerAdminTest::test_start_trial_ui_display": 0.016669042001012713,
"codecov_auth/tests/test_admin.py::PlanAdminTest::test_add_plans_modal_action": 0.017458374990383163,
"codecov_auth/tests/test_admin.py::PlanAdminTest::test_plan_admin_modal_display": 0.025289459008490667,
"codecov_auth/tests/test_admin.py::PlanAdminTest::test_plan_change_form": 0.021573374993749894,
"codecov_auth/tests/test_admin.py::PlanAdminTest::test_plan_change_form_validation": 0.0564230429881718,
"codecov_auth/tests/test_admin.py::PlanAdminTest::test_plan_modal_tiers_display": 0.06553908399655484,
"codecov_auth/tests/test_admin.py::SentryUserAdminTest::test_user_admin_detail_page": 0.025101750012254342,
"codecov_auth/tests/test_admin.py::SentryUserAdminTest::test_user_admin_list_page": 0.019503834017086774,
"codecov_auth/tests/test_admin.py::StripeBillingAdminTest::test_account_widget": 0.012991957992198877,
"codecov_auth/tests/test_admin.py::TierAdminTest::test_add_plans_modal_action": 0.020673042003181763,
"codecov_auth/tests/test_admin.py::TierAdminTest::test_tier_change_form": 0.03144337497360539,
"codecov_auth/tests/test_admin.py::TierAdminTest::test_tier_modal_plans_display": 0.029505083002732135,
"codecov_auth/tests/test_admin.py::UserAdminTest::test_user_admin_detail_page": 0.040423043014016,
"codecov_auth/tests/test_admin.py::UserAdminTest::test_user_admin_list_page": 0.01851833300315775,
"codecov_auth/tests/test_admin.py::test_stale_user_cleanup": 0.054178665988729335,
"codecov_auth/tests/test_migrations.py::Migration0046Test::test_admins_deduped": 0.00014383401139639318,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_no_sync_on_update_other_fields": 0.007039584015728906,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_sync_error": 0.0056642499985173345,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_sync_on_create": 0.005665290998877026,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_sync_on_update_service": 0.007741376000922173,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_sync_on_update_upload_token_required_for_public_repos": 0.007610208005644381,
"codecov_auth/tests/test_signals.py::TestCodecovAuthSignals::test_sync_on_update_username": 0.008283791001304053,
"codecov_auth/tests/test_signals.py::test_shelter_org_token_sync": 0.013571583011071198,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::TestOrgWideUploadTokenService::test_create_org_token": 0.260004833995481,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::TestOrgWideUploadTokenService::test_delete_token": 0.2387412500102073,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::TestOrgWideUploadTokenService::test_get_org_token": 0.2524145819916157,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::TestOrgWideUploadTokenService::test_refresh_token": 0.241876208994654,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::TestOrgWideUploadTokenService::test_refresh_token_error": 0.2282432080100989,
"codecov_auth/tests/unit/services/test_org_level_token_service.py::test_token_is_deleted_when_changing_user_plan": 0.01671374897705391,
"codecov_auth/tests/unit/test_authentication.py::ImpersonationTests::test_impersonation": 0.26245208499312866,
"codecov_auth/tests/unit/test_authentication.py::ImpersonationTests::test_impersonation_invalid_user": 0.27065075100108515,
"codecov_auth/tests/unit/test_authentication.py::ImpersonationTests::test_impersonation_non_staff": 0.2546787079918431,
"codecov_auth/tests/unit/test_authentication.py::ImpersonationTests::test_impersonation_with_okta": 0.32124904199736193,
"codecov_auth/tests/unit/test_authentication.py::InternalTokenAuthenticationTests::test_bearer_token_auth_if_token_is_internal_token": 0.003705751005327329,
"codecov_auth/tests/unit/test_authentication.py::InternalTokenAuthenticationTests::test_bearer_token_auth_if_token_is_not_internal_token": 0.0018512070091674104,
"codecov_auth/tests/unit/test_authentication.py::InternalTokenAuthenticationTests::test_bearer_token_default_token_envar_and_same_string_as_header": 0.0014991259959060699,
"codecov_auth/tests/unit/test_authentication.py::SuperTokenAuthenticationTests::test_bearer_token_auth_if_token_is_super_token": 0.004148917010752484,
"codecov_auth/tests/unit/test_authentication.py::SuperTokenAuthenticationTests::test_bearer_token_auth_invalid_super_token": 0.0017789169942261651,
"codecov_auth/tests/unit/test_authentication.py::SuperTokenAuthenticationTests::test_bearer_token_default_token_envar": 0.0011757089960156009,
"codecov_auth/tests/unit/test_authentication.py::SuperTokenAuthenticationTests::test_bearer_token_default_token_envar_and_same_string_as_header": 0.0015213340084301308,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_bearer_token_auth": 0.007354790985118598,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_bearer_token_auth_expired_token": 0.006079208003939129,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_bearer_token_auth_invalid_token": 0.002111041991156526,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_bearer_token_auth_malformed_header": 0.0012317500077188015,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_bearer_token_auth_no_authorization_header": 0.0011623339960351586,
"codecov_auth/tests/unit/test_authentication.py::UserTokenAuthenticationTests::test_token_not_uuid": 0.001650290985708125,
"codecov_auth/tests/unit/test_helpers.py::test_current_user_part_of_org_when_user_doesnt_have_org": 0.009321792982518673,
"codecov_auth/tests/unit/test_helpers.py::test_current_user_part_of_org_when_user_has_org": 0.008753208996495232,
"codecov_auth/tests/unit/test_helpers.py::test_current_user_part_of_org_when_user_is_owner": 0.0047226669994415715,
"codecov_auth/tests/unit/test_helpers.py::test_current_user_part_of_org_when_user_not_authenticated": 0.01111608299834188,
"codecov_auth/tests/unit/test_helpers.py::test_log_entry": 0.01061387600202579,
"codecov_auth/tests/unit/test_helpers.py::test_log_entry_no_object": 0.00689358300587628,
"codecov_auth/tests/unit/test_managers.py::OwnerManagerTests::test_users_of": 0.03341495800123084,
"codecov_auth/tests/unit/test_middleware.py::MiddlewareTest::test_non_whitelisted_origin": 0.006824915995821357,
"codecov_auth/tests/unit/test_middleware.py::MiddlewareTest::test_whitelisted_origin": 0.003729374991962686,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGitHubOIDCTokenAuthentication::test_authenticate_credentials_empty_returns_none": 0.0013995000044815242,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGitHubOIDCTokenAuthentication::test_authenticate_credentials_no_repo": 0.0013129579892847687,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGitHubOIDCTokenAuthentication::test_authenticate_credentials_oidc_error": 0.0013234990037744865,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGitHubOIDCTokenAuthentication::test_authenticate_credentials_oidc_valid": 0.008132834002026357,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGitHubOIDCTokenAuthentication::test_authenticate_credentials_uuid_returns_none": 0.001520415986306034,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_for_enterprise_correct_token_repo_exists[github]": 0.007489583018468693,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_for_enterprise_correct_token_repo_exists[gitlab_single_user]": 0.007402458999422379,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_for_enterprise_correct_token_repo_exists[gitlab_subgroup_user]": 0.0075095409993082285,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_for_enterprise_correct_token_repo_not_exists": 0.0026921250100713223,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_for_enterprise_wrong_token": 0.0005284990038489923,
"codecov_auth/tests/unit/test_repo_authentication.py::TestGlobalTokenAuthentication::test_authentication_no_global_token_available": 0.0005966260068817064,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_enterprise_no_token_return_none": 0.0026606669853208587,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_expired_token_raises_exception": 0.008518290997017175,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_orgleveltoken_success_auth": 0.02095200000621844,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_orgleveltoken_success_auth_enterprise": 0.02356054300616961,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_owner_has_no_token_return_none": 0.0024722499947529286,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_owner_has_token_but_wrong_one_sent_return_none": 0.009234790981281549,
"codecov_auth/tests/unit/test_repo_authentication.py::TestOrgLevelTokenAuthentication::test_token_is_not_uuid": 0.0005243750056251884,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyQueryTokenAuthentication::test_authenticate_non_uuid_token": 0.00046533301065210253,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyQueryTokenAuthentication::test_authenticate_unauthenticated": 0.0015317090001190081,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyQueryTokenAuthentication::test_authenticate_uuid_token_no_repo": 0.003141874010907486,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyQueryTokenAuthentication::test_authenticate_uuid_token_with_repo": 0.018271917011588812,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyTokenAuthentication::test_authenticate_credentials_empty": 0.0015549999807262793,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyTokenAuthentication::test_authenticate_credentials_not_uuid": 0.0012170420086476952,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyTokenAuthentication::test_authenticate_credentials_uuid_no_repo": 0.001790082998923026,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryLegacyTokenAuthentication::test_authenticate_credentials_uuid_token_with_repo": 0.0076114580006105825,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_empty": 0.0027630420081550255,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_uuid_token_with_repo": 0.008110042006592266,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_uuid_token_with_repo_not_active": 0.007523541004047729,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_uuid_token_with_repo_valid_until_already_reached": 0.007369333994574845,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_uuid_token_with_repo_valid_until_not_reached": 0.007143915994674899,
"codecov_auth/tests/unit/test_repo_authentication.py::TestRepositoryTableTokenAuthentication::test_authenticate_credentials_valid_token_no_repo": 0.0020600410061888397,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_bad_path": 0.0004367070214357227,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007428207987686619,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.007029583997791633,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.009792876007850282,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.008071084012044594,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.0073112089885398746,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.0075259579898556694,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006984084015130065,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007355624999036081,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_matches_paths[/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007119375004549511,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[False-None-branch-False]": 0.007875249997596256,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[False-None-branch-True]": 0.00791524899250362,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[False-None-fork:branch-False]": 0.00796108299982734,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[False-None-fork:branch-True]": 0.007383499993011355,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-branch-branch-False]": 0.01985791599145159,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-branch-branch-True]": 0.016188790978048928,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-branch-fork:branch-False]": 0.016985500013106503,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-branch-fork:branch-True]": 0.0160827910003718,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-fork:branch-branch-False]": 0.01656762599304784,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-fork:branch-branch-True]": 0.01622879299975466,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-fork:branch-fork:branch-False]": 0.01700504198379349,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_success[True-fork:branch-fork:branch-True]": 0.016829166997922584,
"codecov_auth/tests/unit/test_repo_authentication.py::TestTokenlessAuth::test_tokenless_unknown_repository": 0.0025059999898076057,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007083916003466584,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.0071690839977236465,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.006920250001712702,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.006919082996319048,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.0069457909994525835,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007358999995631166,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007337625007494353,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.008040833985432982,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007196665974333882,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.006697957971482538,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.00725887599401176,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.007531873998232186,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.006953000003704801,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007053374996758066,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006920583022292703,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007501208005123772,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006857416010461748,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007330623993766494,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.006734416994731873,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.006878126005176455,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.006976832984946668,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.006994416980887763,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006961042003240436,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006796957983169705,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006834124986198731,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007157041007303633,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.006964458982110955,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007691124992561527,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.007009458015090786,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.006885290989885107,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.006964375017560087,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.008032290992559865,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007242917010444216,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.0077131250145612285,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006710832996759564,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.009504915986326523,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_bad_path": 0.00039404099516104907,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_bad_service": 0.000405039987526834,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-branch-False]": 0.008617793006123975,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-branch-True]": 0.007605332997627556,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-fork:branch-False]": 0.007444167000357993,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-fork:branch-True]": 0.007941917006974109,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-branch-False]": 0.015554833997157402,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-branch-True]": 0.015530959004536271,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-fork:branch-False]": 0.015442583011463284,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-fork:branch-True]": 0.016050456993980333,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-branch-False]": 0.015582250998704694,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-branch-True]": 0.015360582983703353,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-fork:branch-False]": 0.015779958994244225,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-fork:branch-True]": 0.015844667024794035,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-branch-False]": 0.007663208001758903,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-branch-True]": 0.007499373983591795,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-fork:branch-False]": 0.007329040992772207,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-fork:branch-True]": 0.007362125004874542,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-branch-False]": 0.015788249991601333,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-branch-True]": 0.01781716699770186,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-fork:branch-False]": 0.016349709010683,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-fork:branch-True]": 0.0161912079929607,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-branch-False]": 0.016253124995273538,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-branch-True]": 0.015995333989849314,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-fork:branch-False]": 0.015672042005462572,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-fork:branch-True]": 0.015895666991127655,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_unknown_owner": 0.006928707982297055,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredAuthenticationCheck::test_token_not_required_unknown_repository": 0.007112124003469944,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007029874992440455,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.007172958998125978,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.007457041007000953,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.007563749997643754,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007471125019947067,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007195874990429729,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007255208998685703,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006997625008807518,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-False-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.0077580829965882,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007115166983567178,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.006923832988832146,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.007286833002581261,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.007280290999915451,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007242583989864215,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.00732087399228476,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007124668001779355,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007287417000043206,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[False-True-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007318084011785686,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.00679599899740424,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.007248458001413383,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.0072059999947668985,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.007239539991132915,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007344458004808985,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.0069691249809693545,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.006996791023993865,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007325917002162896,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-False-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007036208000499755,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::__example-repo__/commits-owner/__example-repo__-None]": 0.007455459010088816,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::example-repo/commits-owner/example-repo-None]": 0.006836625005234964,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits-owner/the_repo-None]": 0.007444498987752013,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/-owner/the_repo-None]": 0.007121542003005743,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.00708091699925717,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.007168750002165325,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.00680987500527408,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::the_repo/commits/9652fb7ff577f554588ea83afded9000acd084ee/reports/default/uploads/-owner/the_repo-9652fb7ff577f554588ea83afded9000acd084ee]": 0.00714537501335144,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner[True-True-/upload/github/owner::::~example-repo:copy/commits-owner/~example-repo:copy-None]": 0.007430541983922012,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_get_repository_and_owner_with_service": 0.033317666995571926,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-branch-False]": 0.007715915999142453,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-branch-True]": 0.007575041978270747,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-fork:branch-False]": 0.007542584004113451,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-False-None-fork:branch-True]": 0.007320541000808589,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-branch-False]": 0.015569584022159688,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-branch-True]": 0.015828249001060612,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-fork:branch-False]": 0.015598333004163578,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-branch-fork:branch-True]": 0.015228251009830274,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-branch-False]": 0.01612258302338887,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-branch-True]": 0.015384875005111098,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-fork:branch-False]": 0.015884540989645757,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[False-True-fork:branch-fork:branch-True]": 0.01561187399784103,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-branch-False]": 0.007562083977973089,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-branch-True]": 0.007646750993444584,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-fork:branch-False]": 0.007799875005730428,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-False-None-fork:branch-True]": 0.007836585005861707,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-branch-False]": 0.015625624015228823,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-branch-True]": 0.015550541007542051,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-fork:branch-False]": 0.015866374975303188,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-branch-fork:branch-True]": 0.01573654101230204,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-branch-False]": 0.015500082998187281,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-branch-True]": 0.0159909579961095,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-fork:branch-False]": 0.015967458006343804,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_fork_branch_public_private[True-True-fork:branch-fork:branch-True]": 0.015833541998290457,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_invalid_data": 0.0005484159919433296,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_no_data": 0.00038850099372211844,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_no_git_service": 0.0059663329884642735,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_unknown_owner": 0.0068605419946834445,
"codecov_auth/tests/unit/test_repo_authentication.py::TestUploadTokenRequiredGetFromBodyAuthenticationCheck::test_token_not_required_unknown_repository": 0.008541584000340663,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_is_unchanged_if_no_default_org": 0.006286249001277611,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_is_unchanged_if_no_owner_profile": 0.004860668006585911,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_is_unchanged_if_url_is_different_from_base_url": 0.004125541992834769,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_user_has_a_default_org_for_bitbucket": 0.009151832011411898,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_user_has_a_default_org_for_github": 0.00794787600170821,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_user_has_a_default_org_for_github_long_org_name": 0.008314124017488211,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_adjust_redirection_url_user_has_a_default_org_for_gitlab": 0.00889795899274759,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_check_user_account_limitations_enterprise_pr_billing": 0.0159106250066543,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_check_user_account_limitations_enterprise_user_exists_not_pr_billing": 0.0037285410071490332,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_check_user_account_limitations_enterprise_user_new_not_pr_billing": 0.013464875009958632,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_check_user_account_limitations_not_enterprise": 0.002027249982347712,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_and_modify_user_enterprise_orgs_passes_if_user_in_org": 0.012448459005099721,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_and_modify_user_enterprise_raise_usernotinorganization_error": 0.0020540010009426624,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_and_modify_user_passes_if_not_enterprise": 0.007776456986903213,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_marketing_tags_on_enterprise": 0.0018530000088503584,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_or_create_calls_amplitude_user_created_when_owner_created": 0.006714332979754545,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_or_create_calls_amplitude_user_logged_in_when_owner_not_created": 0.007036334005533718,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_or_create_calls_analytics_user_signed_in_when_owner_not_created": 0.006407374981790781,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_get_or_create_calls_analytics_user_signed_up_when_owner_created": 0.005699000001186505,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_github_teams_restrictions": 0.009802875996683724,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_github_teams_restrictions_no_teams_in_config": 0.010125041007995605,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_authenticated_with_claimed_owner": 0.006509833998279646,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_authenticated_with_existing_service_owner": 0.01118658302584663,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_authenticated_with_unclaimed_owner": 0.009230873984051868,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_owner_with_expired_login_session": 0.01707549998536706,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_unauthenticated_with_claimed_owner": 0.00665899999148678,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_login_unauthenticated_with_unclaimed_owner": 0.007375834000413306,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_set_marketing_tags_on_cookies": 0.005154915997991338,
"codecov_auth/tests/unit/views/test_base.py::LoginMixinTests::test_use_marketing_tags_from_cookies": 0.007114042004104704,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_when_wrong_url": 0.0023085840075509623,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_with_path_redirection_url": 0.0012232910085003823,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_with_safe_domain_redirection_url": 0.001664249983150512,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_with_safe_domain_regex_redirection_url": 0.003394833009224385,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_with_unsafe_domain": 0.002157749011530541,
"codecov_auth/tests/unit/views/test_base.py::test_generate_state_without_redirection_url": 0.001790124995750375,
"codecov_auth/tests/unit/views/test_base.py::test_get_redirection_url_from_state_give_url": 0.0009152919956250116,
"codecov_auth/tests/unit/views/test_base.py::test_get_redirection_url_from_state_with_session_state_mismatch": 0.001218041987158358,
"codecov_auth/tests/unit/views/test_base.py::test_get_redirection_url_from_state_without_redis_state": 0.0010831679974216968,
"codecov_auth/tests/unit/views/test_base.py::test_get_redirection_url_from_state_without_session_state": 0.0012563339987536892,
"codecov_auth/tests/unit/views/test_base.py::test_remove_state_with_with_delay": 0.026041959004942328,
"codecov_auth/tests/unit/views/test_base.py::test_remove_state_with_with_no_delay": 0.0014811669971095398,
"codecov_auth/tests/unit/views/test_bitbucket.py::TestBitbucketLoginView::test_fetch_user_data": 0.0026116260123671964,
"codecov_auth/tests/unit/views/test_bitbucket.py::test_get_bitbucket_already_token": 0.032503708003787324,
"codecov_auth/tests/unit/views/test_bitbucket.py::test_get_bitbucket_already_token_no_cookie": 0.006417042997782119,
"codecov_auth/tests/unit/views/test_bitbucket.py::test_get_bitbucket_redirect": 0.006256959022721276,
"codecov_auth/tests/unit/views/test_bitbucket.py::test_get_bitbucket_redirect_bitbucket_unavailable": 0.0052051259990548715,
"codecov_auth/tests/unit/views/test_bitbucket_server.py::test_get_bbs_already_token": 0.03543537500081584,
"codecov_auth/tests/unit/views/test_bitbucket_server.py::test_get_bbs_redirect": 0.005408041019109078,
"codecov_auth/tests/unit/views/test_bitbucket_server.py::test_get_bbs_redirect_bitbucket_fails_to_get_request_token": 0.03398725100851152,
"codecov_auth/tests/unit/views/test_github.py::test__get_teams_info": 0.0027777919895015657,
"codecov_auth/tests/unit/views/test_github.py::test__get_teams_info_fails": 0.006028540999977849,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_already_owner_already_exist": 0.05708300101105124,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_already_with_code": 0.03375287400558591,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_already_with_code_github_error": 0.0108775829867227,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_already_with_code_is_student": 0.051730292005231604,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_already_with_code_with_email": 0.056121332992915995,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_missing_access_token": 0.010059748994535767,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_redirect": 0.007070584004395641,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_redirect_host_override": 0.007817709003575146,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_redirect_with_ghpr_cookie": 0.006854915991425514,
"codecov_auth/tests/unit/views/test_github.py::test_get_github_redirect_with_private_url": 0.007102875009877607,
"codecov_auth/tests/unit/views/test_github.py::test_state_not_known": 0.0052991669945186,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_already_owner_already_exist": 0.03544983299798332,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_already_with_code": 0.030088958985288627,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_already_with_code_github_error": 0.011631835004664026,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_already_with_code_with_email": 0.029146123997634277,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_redirect": 0.006994207011302933,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_ghe_redirect_with_ghpr_cookie": 0.00719770799332764,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_get_github_redirect_with_private_url": 0.007207208007457666,
"codecov_auth/tests/unit/views/test_github_enterprise.py::test_state_not_known": 0.00473520798550453,
"codecov_auth/tests/unit/views/test_gitlab.py::test_get_github_already_with_code_gitlab_error": 0.007750958015094511,
"codecov_auth/tests/unit/views/test_gitlab.py::test_get_gitlab_already_with_code": 0.030130334009299986,
"codecov_auth/tests/unit/views/test_gitlab.py::test_get_gitlab_already_with_code_no_session": 0.017570915995747782,
"codecov_auth/tests/unit/views/test_gitlab.py::test_get_gitlab_redirect": 0.007896123992395587,
"codecov_auth/tests/unit/views/test_gitlab_enterprise.py::test_get_gle_already_with_code": 0.0312751669989666,
"codecov_auth/tests/unit/views/test_gitlab_enterprise.py::test_get_gle_already_with_code_github_error": 0.006607543007703498,
"codecov_auth/tests/unit/views/test_gitlab_enterprise.py::test_get_gle_redirect": 0.007607583989738487,
"codecov_auth/tests/unit/views/test_logout.py::LogoutViewTest::test_logout_when_authenticated": 0.2721752090146765,
"codecov_auth/tests/unit/views/test_logout.py::LogoutViewTest::test_logout_when_unauthenticated": 0.23926108398882207,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login": 0.01829437400738243,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_authenticated": 0.018968459000461735,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_authenticated_existing_okta_user": 0.021411083012935705,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_error": 0.008170415996573865,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_existing_okta_user": 0.0177212920243619,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_existing_okta_user_existing_owner": 0.022164499008795246,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_perform_login_state_mismatch": 0.006157875002827495,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_redirect_to_authorize": 0.007197582992375828,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_redirect_to_authorize_invalid_iss": 0.004314165998948738,
"codecov_auth/tests/unit/views/test_okta.py::test_okta_redirect_to_authorize_no_iss": 0.004788582999026403,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_login_success": 0.02625791799800936,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_login_success_multiple_accounts": 0.026472083991393447,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_missing_okta_settings": 0.02473970798018854,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_missing_session": 0.021024999994551763,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_missing_user": 0.01466216699918732,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_no_code": 0.03023474899237044,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_perform_login_access_denied": 0.02688333299010992,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_perform_login_invalid_id_token": 0.027892540994798765,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_perform_login_invalid_state": 0.023729541993816383,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_callback_perform_login_no_user_data": 0.024160123997717164,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_already_signed_into_okta": 0.024665791977895424,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_invalid_organization": 0.0155399580107769,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_no_account": 0.018790417001582682,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_no_okta_settings": 0.022222957995836623,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_redirect_to_okta_issuer": 0.026420458001666702,
"codecov_auth/tests/unit/views/test_okta_cloud.py::test_okta_login_unauthenticated_user": 0.003953999999794178,
"codecov_auth/tests/unit/views/test_okta_mixin.py::test_okta_fetch_user_data_invalid_state": 0.0020827510161325336,
"codecov_auth/tests/unit/views/test_okta_mixin.py::test_validate_id_token": 0.03752100100973621,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_fetch_user_data_invalid_state": 0.004000084009021521,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login": 0.01815808301034849,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_authenticated": 0.017963624995900318,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_authenticated_existing_sentry_user": 0.021088998997583985,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_error": 0.007818123980541714,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_existing_sentry_user": 0.017011958989314735,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_existing_sentry_user_existing_owner": 0.01952199899824336,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_invalid_id_token": 0.00917924998793751,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_invalid_id_token_issuer": 0.009454250990529545,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_perform_login_state_mismatch": 0.006244541989872232,
"codecov_auth/tests/unit/views/test_sentry.py::test_sentry_redirect_to_consent": 0.006540416012285277,
"compare/commands/compare/interactors/tests/test_fetch_impacted_files.py::FetchImpactedFilesTest::test_impacted_file_sort_function": 0.253342124982737,
"compare/commands/compare/interactors/tests/test_fetch_impacted_files.py::FetchImpactedFilesTest::test_impacted_file_sort_function_error": 0.25455808399419766,
"compare/commands/compare/interactors/tests/test_fetch_impacted_files.py::FetchImpactedFilesTest::test_impacted_file_sort_function_no_misses": 0.26246225100476295,
"compare/commands/compare/interactors/tests/test_fetch_impacted_files.py::FetchImpactedFilesTest::test_impacted_files_filtered_by_change_coverage_ascending": 0.2566725010110531,
"compare/commands/compare/interactors/tests/test_fetch_impacted_files.py::FetchImpactedFilesTest::test_impacted_files_filtered_by_change_coverage_descending": 0.25119883398292586,