-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path.test_durations
902 lines (902 loc) · 113 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
{
"hypha/addressfield/tests.py::test_non_required": 0.005342124990420416,
"hypha/addressfield/tests.py::test_non_required_blank_data": 0.002868790994398296,
"hypha/addressfield/tests.py::test_one_field_required": 0.003047666948987171,
"hypha/addressfield/tests.py::test_one_field_required_blank_data": 0.0029949590389151126,
"hypha/addressfield/tests.py::test_one_field_required_supplied_data": 0.0020785829692613333,
"hypha/apply/activity/tests/test_comments.py::TestCommentEdit::test_cant_edit_if_not_author": 29.54530270799296,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_activity_created": 0.16030399900046177,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_handle_transition_public_to_public": 0.08761829097056761,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_handle_transition_to_private_to_public": 0.10858987501705997,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_handle_transition_to_public_to_private": 0.10090454301098362,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_internal_transition_kwarg_for_invisible_transition": 0.10160637501394376,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_lead_saved_on_activity": 30.180153668043204,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_public_transition_kwargs": 0.09079495901823975,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_review_saved_on_activity": 0.11005162500077859,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_reviewers_message_both": 0.2381641230022069,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_reviewers_message_no_added": 0.10153212497243658,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_reviewers_message_no_removed": 0.09993237600428984,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_reviewers_with_and_without_role": 0.19944608301739208,
"hypha/apply/activity/tests/test_messaging.py::TestActivityAdapter::test_reviewers_with_role": 0.11243037402164191,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_activity_created": 0.1437914990237914,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_activity_lead_change": 0.15701733299647458,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_activity_lead_change_from_none": 0.11734837503172457,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_email_staff_update_invoice": 29.577253750991076,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_slack_applicant_update_invoice": 0.18648824901902117,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_slack_created": 0.1538688330037985,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_slack_lead_change": 0.12658354203449562,
"hypha/apply/activity/tests/test_messaging.py::TestAdaptersForProject::test_slack_staff_update_invoice": 0.11725441800081171,
"hypha/apply/activity/tests/test_messaging.py::TestAnyMailBehaviour::test_email_new_submission": 0.1516654169827234,
"hypha/apply/activity/tests/test_messaging.py::TestAnyMailBehaviour::test_webhook_adds_reject_reason": 0.15414416597923264,
"hypha/apply/activity/tests/test_messaging.py::TestAnyMailBehaviour::test_webhook_updates_status": 0.14776024900493212,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_calls_method_if_available": 0.1581773340003565,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_calls_method_if_avaliable": 0.15610029199160635,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_can_include_extra_kwargs": 0.16923787503037602,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_can_send_a_message": 0.11583929200423881,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_django_messages_used": 0.11489783399156295,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_doesnt_send_a_message_if_not_configured": 0.10543341701850295,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_that_kwargs_passed_to_send_message": 0.09763291699346155,
"hypha/apply/activity/tests/test_messaging.py::TestBaseAdapter::test_that_message_is_formatted": 0.12998037500074133,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_applicant_for_submission_comments": 0.17294475002563559,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_applicant_partners_for_submission_comments": 0.16162991803139448,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_failed": 28.692026126023848,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_new_submission": 0.161508334975224,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_partner_for_submission_comments": 0.19961029099067673,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_sent": 0.15057500102557242,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_staff_project_comments": 0.15338462498039007,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_email_staff_submission_comments": 0.1534764170064591,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_hide_staff_in_email": 0.14091395898140036,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_no_email_own_project_comment": 0.18284412403590977,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_no_email_own_submission_comment": 0.10588875095709227,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_no_email_private_comment": 0.12605520800570957,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_reviewer_update_email": 0.14879141698474996,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_reviewers_email": 0.16146316699450836,
"hypha/apply/activity/tests/test_messaging.py::TestEmailAdapter::test_show_staff_in_email": 0.1496398750168737,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendApplication::test_event_created": 0.13780862497515045,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendApplication::test_message_sent_to_adapter": 0.10195120703428984,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendApplication::test_message_sent_to_all_adapter": 0.09483383296173997,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendProject::test_event_created": 0.16748345899395645,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendProject::test_message_sent_to_adapter": 0.10727087600389495,
"hypha/apply/activity/tests/test_messaging.py::TestMessageBackendProject::test_message_sent_to_all_adapter": 0.11692716600373387,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_400_bad_request": 0.17289554097806104,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_cant_send_with_no_room": 0.08997324996744283,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_cant_send_with_no_token": 0.10110983302001841,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_correct_payload": 0.10820208303630352,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_fund_custom_slack_channel": 0.1053990010113921,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_fund_multiple_custom_slack_channel": 0.09414354202453978,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_gets_blank_if_slack_not_set": 0.08692025105119683,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_gets_lead_if_slack_set": 0.07125145898316987,
"hypha/apply/activity/tests/test_messaging.py::TestSlackAdapter::test_message_with_good_response": 0.15753724903333932,
"hypha/apply/activity/tests/test_models.py::TestActivityModel::test_can_save_related_invoice": 0.26135129094473086,
"hypha/apply/activity/tests/test_models.py::TestActivityModel::test_can_save_related_report": 0.22154570801649243,
"hypha/apply/activity/tests/test_models.py::TestActivityModel::test_can_save_source_application": 0.09495900000911206,
"hypha/apply/activity/tests/test_models.py::TestActivityModel::test_can_save_source_project": 0.10509087404352613,
"hypha/apply/activity/tests/test_models.py::TestActivityOnlyIncludesCurrent::test_doesnt_include_non_current": 0.24004691702430137,
"hypha/apply/activity/tests/test_tasks.py::TestSendEmail::test_args_passed_to_django": 0.2603149179776665,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_can_render_if_no_response": 0.010561083006905392,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_field_and_help_default": 0.00528366697835736,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_multi_select_disabled": 0.006469708983786404,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_multi_select_enabled": 0.004267292039003223,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_options_included_in_choices": 0.005238167010247707,
"hypha/apply/categories/tests/test_blocks.py::TestCategoryQuestionBlock::test_supplied_field_and_help": 0.0033850420149974525,
"hypha/apply/dashboard/tests/test_views.py::TestAdminDashboard::test_does_show_admin_button_to_admins": 0.20140983402961865,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_can_access_submissions_partials_with_active": 0.2378834580304101,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_can_have_draft_titles_on_submissions_partials": 0.2948834580020048,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_can_not_access_other_users_active": 31.844685416988796,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_no_edit_if_in_review": 0.17318966798484325,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_submissions_partials_gets_invite_if_invited_to_proposal": 0.17690649902215227,
"hypha/apply/dashboard/tests/test_views.py::TestApplicantDashboard::test_submissions_partials_no_invite_if_can_edit": 0.16106049995869398,
"hypha/apply/dashboard/tests/test_views.py::TestReviewerDashboard::test_no_submissions_waiting_for_review": 0.30230966801173054,
"hypha/apply/dashboard/tests/test_views.py::TestReviewerDashboard::test_submission_assigned_but_not_in_external_review_status": 0.28646083202329464,
"hypha/apply/dashboard/tests/test_views.py::TestReviewerDashboard::test_waiting_for_review_with_count": 0.2606660010351334,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_active_invoices_with_invoices_in_correct_state": 0.4014409570081625,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_active_invoices_with_no_project": 0.19030095703783445,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_cannot_see_submission_in_determination_when_not_lead": 0.2904547919752076,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_doesnt_show_active_invoices_when_not_mine": 0.2983190010127146,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_doesnt_show_active_invoices_with_none": 1.1664183319953736,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_doest_show_active_invoices_when_paid_or_declined": 0.2850328749627806,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_unassigned_staff_cant_see_projects_awaiting_review_stats_or_table": 0.2884709579811897,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_waiting_for_review_after_agreement_is_empty": 0.3093150840140879,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboard::test_waiting_for_review_with_count": 0.33286783398943953,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboardWithWagtailAdminAccess::test_does_show_admin_button_to_staff_with_wagtail_admin_access": 0.2142502499918919,
"hypha/apply/dashboard/tests/test_views.py::TestStaffDashboardWithoutWagtailAdminAccess::test_doesnt_show_admin_button_to_staff_without_wagtail_admin_access": 0.22025828997720964,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_determination_block_required": 29.06263508403208,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_field_label_required": 0.085849833994871,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_form_creation": 0.10516324898344465,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_message_block_required": 0.09354741699644364,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_name_field_required": 0.08240237503196113,
"hypha/apply/determinations/tests/test_admin_views.py::TestCreateDeterminationFormView::test_send_notice_block_required": 0.07764620799571276,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_can_submit_batch_determination": 0.7603419579972979,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_can_submit_batch_determination_more_info_comment": 0.6046440840000287,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_cant_access_without_action": 0.21183137499610893,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_cant_access_without_submissions": 0.09749637401546352,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_message_created_if_determination_exists": 0.35226004096330144,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_sets_next_on_redirect": 0.008064333000220358,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_success_if_no_next": 0.019086124026216567,
"hypha/apply/determinations/tests/test_views.py::BatchDeterminationTestCase::test_success_redirects_if_exists": 0.023389415990095586,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_auto_creation_uses_draft_when_invalid_status_settings": 0.3496702490374446,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_auto_creation_uses_status_settings": 0.23159208401921205,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_can_access_form_if_lead": 0.18131874996470287,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_can_edit_draft_determination": 0.24714195801061578,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_can_edit_draft_determination_if_not_lead": 0.24323266695137136,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_can_edit_draft_determination_if_not_lead_with_projects": 0.2447490820195526,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_can_progress_stage_via_determination": 0.28104595898184925,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_cant_access_wrong_status": 0.18466120900120586,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_cant_edit_submitted_more_info": 0.3288120419892948,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_cant_resubmit_determination": 0.2130260410194751,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_disabling_project_auto_creation_stops_projects_being_created": 0.22792104200925678,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_disabling_projects_ignores_auto_creation_setting": 34.46324791703955,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_first_stage_accepted_determination_does_not_create_project": 0.2664125830051489,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_first_stage_rejected_determination_does_not_create_project": 0.21483695800998248,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_second_stage_accepted_determination_creates_project": 0.22421970800496638,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_second_stage_rejected_determination_does_not_create_project": 0.2251624580239877,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_sends_message_if_requires_more_info": 0.21581074901041575,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_single_stage_accepted_determination_creates_project": 0.2454721659887582,
"hypha/apply/determinations/tests/test_views.py::DeterminationFormTestCase::test_single_stage_rejected_determination_does_not_create_project": 0.3926138759998139,
"hypha/apply/determinations/tests/test_views.py::EditDeterminationFormTestCase::test_can_edit_determination": 0.25491770898224786,
"hypha/apply/determinations/tests/test_views.py::StaffDeterminationsTestCase::test_can_access_determination": 0.6226546239631716,
"hypha/apply/determinations/tests/test_views.py::StaffDeterminationsTestCase::test_lead_can_access_determination": 0.18239125004038215,
"hypha/apply/determinations/tests/test_views.py::UserDeterminationFormTestCase::test_cant_access_form": 0.1811713749775663,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_active": 0.09912520900252275,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_annotated": 0.06795274998876266,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_by_lead": 28.367357833019923,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_can_get": 0.05077950097620487,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_closed": 0.04041429204517044,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_inactive": 0.21298066698363982,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_new": 0.04287687502801418,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_no_submissions_not_either": 0.04393074999097735,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_open": 0.06752133296686225,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_with_determined": 0.09545766699011438,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForLab::test_with_progress": 0.07437887499690987,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_active": 0.1777604170201812,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_annotated": 0.09403041703626513,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_by_lead": 0.20033916700049303,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_can_get": 0.08274487502058037,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_closed": 0.3391866250021849,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_inactive": 0.11907524999696761,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_new": 0.08292162604629993,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_no_submissions_not_either": 0.07939100099611096,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_open": 0.07564779103267938,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_with_determined": 0.09954754100181162,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestForRound::test_with_progress": 29.40957504202379,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestRoundsAndLabsManager::test_cant_get_fund": 0.07708312600152567,
"hypha/apply/funds/tests/models/test_roundsandlabs.py::TestRoundsAndLabsManager::test_doesnt_confuse_lab_and_round": 0.31484820900368504,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_can_save_multiple_forms_stage_two": 0.05669333299738355,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_can_save_two_forms": 0.039880874974187464,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_does_validates_without_project_approval_form": 0.053028707014163956,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_doesnt_validates_with_multiple_external_review_form": 0.03582425098284148,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_doesnt_validates_with_multiple_project_approval_form": 0.05640312496689148,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_doesnt_validates_with_no_form": 0.009018582000862807,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_doesnt_validates_with_two_first_stage_forms_in_two_stage": 0.036308208014816046,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_doesnt_validates_with_two_forms_one_stage": 0.03740308395936154,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_dosnt_validates_without_project_approval_form_for_projects_enabled": 0.023889252042863518,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validate_external_review_form": 0.02673274901462719,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validate_project_approval_form": 0.029920542030595243,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validates_with_one_form_one_stage": 0.024150751007255167,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validates_with_one_form_one_stage_with_deleted": 0.0317141670093406,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validates_with_project_report_form": 0.023296956991543993,
"hypha/apply/funds/tests/test_admin_form.py::TestWorkflowFormAdminForm::test_validates_without_external_review_form": 0.02066154099884443,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_email_block_required": 0.11531729198759422,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_field_label_required": 0.08058087600511499,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_form_creation": 0.09856558300089091,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_full_name_block_required": 0.08081041599507444,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_name_field_required": 0.09370204200968146,
"hypha/apply/funds/tests/test_admin_views.py::TestCreateApplicationFormView::test_title_block_required": 0.08376187502290122,
"hypha/apply/funds/tests/test_admin_views.py::TestFundCreationView::test_can_create_fund": 0.4272887499828357,
"hypha/apply/funds/tests/test_admin_views.py::TestFundCreationView::test_can_create_fund_with_external_review_form": 30.164822124992497,
"hypha/apply/funds/tests/test_admin_views.py::TestFundCreationView::test_can_create_multi_phase_fund": 0.3098443339986261,
"hypha/apply/funds/tests/test_admin_views.py::TestFundCreationView::test_can_create_multi_phase_fund_reuse_forms": 0.2720820000395179,
"hypha/apply/funds/tests/test_admin_views.py::TestFundCreationView::test_can_create_multiple_forms_second_stage_in_fund": 0.2691910840512719,
"hypha/apply/funds/tests/test_admin_views.py::TestRoundIndexView::test_application_links": 0.8836046660144348,
"hypha/apply/funds/tests/test_admin_views.py::TestRoundIndexView::test_number_of_rounds": 0.15972116598277353,
"hypha/apply/funds/tests/test_admin_views.py::TestRoundIndexView::test_review_form_links": 0.17074641698854975,
"hypha/apply/funds/tests/test_forms.py::TestReviewerFormQueries::test_queries_existing_reviews": 0.20794537500478327,
"hypha/apply/funds/tests/test_forms.py::TestReviewerFormQueries::test_queries_init_and_render": 0.1623947079933714,
"hypha/apply/funds/tests/test_forms.py::TestReviewerFormQueries::test_queries_reviewers_swap": 0.16729033397859894,
"hypha/apply/funds/tests/test_forms.py::TestReviewerFormQueries::test_queries_roles_swap": 0.13645666697993875,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_can_get_draft_data": 0.12431154199293815,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_can_get_ordered_qs": 0.12460104099591263,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_can_get_required_block_names": 0.12874812600784935,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_can_get_reverse_ordered_qs": 0.14343879200168885,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_choices_added_for_search": 0.0961222909973003,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_correct_file_path_generated": 0.09090083301998675,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_create_revision_on_create": 0.09950370699516498,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_create_revision_on_data_change": 0.10162741600652225,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_dont_create_revision_on_data_same": 0.10049275000346825,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_draft_updated": 0.09122591698542237,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_file_gets_uploaded": 0.10153341697878204,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_in_final_stage": 0.24698545900173485,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_is_draft_property": 0.08737595699494705,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_number_not_in_search": 0.09727525099879131,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_richtext_in_char_is_removed_for_search": 0.10972100001526996,
"hypha/apply/funds/tests/test_models.py::TestApplicationSubmission::test_richtext_is_removed_for_search": 0.08436387497931719,
"hypha/apply/funds/tests/test_models.py::TestAssignedReviewersQuerySet::test_reviewed": 0.1450488319969736,
"hypha/apply/funds/tests/test_models.py::TestAssignedReviewersQuerySet::test_reviewed_with_review_order": 0.11252787400735542,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_assigned_but_not_reviewed": 0.13832775098853745,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_disagree_review_is_maybe": 0.1548485409875866,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_dont_double_count_review_and_opinion": 0.14582637496641837,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_opinionated_slash_confused_reviewer": 0.1588398759777192,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_review_outcome": 0.11100441799499094,
"hypha/apply/funds/tests/test_models.py::TestForTableQueryset::test_submissions_dont_conflict": 0.25467620900599286,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_associated_if_another_user_exists": 0.23324991602567025,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_associated_if_logged_in": 0.1756245420256164,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_associated_if_not_new": 0.2294265410164371,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_can_submit_if_blank_user_data_even_if_logged_in": 0.18258929200237617,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_can_submit_if_new": 0.16693133302032948,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_doesnt_mess_with_name": 0.15155849998700432,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_email_sent_to_user_on_submission_fund": 0.15916308399755508,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_email_sent_to_user_on_submission_lab": 0.14772912600892596,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_valid_email": 0.16707929203403182,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_workflow_and_draft": 0.1391968330135569,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_workflow_and_draft_lab": 0.14355675104889087,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_workflow_and_status_assigned": 0.1612166260019876,
"hypha/apply/funds/tests/test_models.py::TestFormSubmission::test_workflow_and_status_assigned_lab": 0.2332612079626415,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_can_access_workflow_class": 0.040906582988100126,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_can_not_be_open_with_draft_round": 0.07802591600921005,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_closed_round": 0.1407247499737423,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_multiple_open_rounds": 0.13242699898546562,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_no_open_rounds": 0.035849166015395895,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_no_round_exists": 0.031547624996164814,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_normal_round": 0.06955495901638642,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_open_ended_round": 0.08506108401343226,
"hypha/apply/funds/tests/test_models.py::TestFundModel::test_round_not_open": 0.06608279095962644,
"hypha/apply/funds/tests/test_models.py::TestReminderModel::test_can_save_reminder": 0.12334074996761046,
"hypha/apply/funds/tests/test_models.py::TestReminderModel::test_check_default_action": 0.09161704100552015,
"hypha/apply/funds/tests/test_models.py::TestReminderModel::test_reminder_action_message": 0.10681554200709797,
"hypha/apply/funds/tests/test_models.py::TestRequestForPartners::test_form_when_round": 0.21282183297444135,
"hypha/apply/funds/tests/test_models.py::TestRequestForPartners::test_message_when_no_round": 0.06033858400769532,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_can_create_without_end_date": 0.08426100100041367,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_can_not_create_with_other_open_end_date": 0.21221904098638333,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_can_not_overlap_clean": 0.10679362501832657,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_can_not_overlap_with_normal_round": 0.08047299896134064,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_end_before_start": 0.047712250001495704,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_end_overlaps": 0.09404595897649415,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_inside_overlaps": 0.08398012499674223,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_normal_start_end_doesnt_error": 0.0758838749898132,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_other_fund_not_impacting": 0.1334088749717921,
"hypha/apply/funds/tests/test_models.py::TestRoundModelDates::test_start_overlaps": 0.11737295798957348,
"hypha/apply/funds/tests/test_models.py::TestRoundModelWorkflowAndForms::test_can_change_round_form_not_fund": 0.11611908295890316,
"hypha/apply/funds/tests/test_models.py::TestRoundModelWorkflowAndForms::test_forms_are_copied_to_new_rounds": 0.06734566600061953,
"hypha/apply/funds/tests/test_models.py::TestRoundModelWorkflowAndForms::test_workflow_is_copied_to_new_rounds": 0.0686939160223119,
"hypha/apply/funds/tests/test_models.py::TestSubmissionRenderMethods::test_file_private_url_included": 0.12624491701717488,
"hypha/apply/funds/tests/test_models.py::TestSubmissionRenderMethods::test_named_blocks_dont_break_if_no_response": 0.09127099899342284,
"hypha/apply/funds/tests/test_models.py::TestSubmissionRenderMethods::test_named_blocks_not_included_in_answers": 0.09327700102585368,
"hypha/apply/funds/tests/test_models.py::TestSubmissionRenderMethods::test_normal_answers_included_in_answers": 0.10848891697241925,
"hypha/apply/funds/tests/test_models.py::TestSubmissionRenderMethods::test_paragraph_not_rendered_in_answers": 0.10391558401170187,
"hypha/apply/funds/tests/test_tags.py::TestTemplateTags::test_markdown_tags": 0.012085666006896645,
"hypha/apply/funds/tests/test_tags.py::TestTemplateTags::test_submission_tags": 0.1107227909960784,
"hypha/apply/funds/tests/test_tags.py::TestTemplateTags::test_translate_tags_as_applicant": 0.09242920798715204,
"hypha/apply/funds/tests/test_tags.py::TestTemplateTags::test_translate_tags_as_staff": 0.0882080000010319,
"hypha/apply/funds/tests/test_tags.py::TestTemplateTags::test_translate_tags_disabled": 0.08980183300445788,
"hypha/apply/funds/tests/test_utils.py::test_get_copied_form_name[(Copied on 2020-10-30 18:13:26.04) Out of place timestamp-(Copied on 2020-10-30 18:13:26.04) Out of place timestamp (Copied on 2024-10-16 15:05:13.72)]": 0.30676812399178743,
"hypha/apply/funds/tests/test_utils.py::test_get_copied_form_name[A Copied Form! (Copied on 2022-09-25 16:30:26.04)-A Copied Form! (Copied on 2024-10-16 15:05:13.72)]": 0.01913629099726677,
"hypha/apply/funds/tests/test_utils.py::test_get_copied_form_name[Test Form-Test Form (Copied on 2024-10-16 15:05:13.72)]": 0.050893417006591335,
"hypha/apply/funds/tests/test_views.py::TestAnonSubmissionFileView::test_anonymous_can_not_access": 0.24030862402287312,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_applicant_can_see_lead": 0.3678732920088805,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_applicant_cant_see_hidden_lead": 0.6326463319710456,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_can_edit_own_submission": 0.30181795803946443,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_can_see_view_determination_primary_action": 0.5961838320072275,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_can_submit_submission": 0.3804084160074126,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_can_view_own_submission": 0.3054740829684306,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_edit_other_submission": 0.37109654099913314,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_edit_submission_incorrect_state": 0.3719907909980975,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_add_determination_primary_action": 0.5734577499970328,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_assign_reviewers_primary_action": 0.6000090419838671,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_assign_reviewers_secondary_action": 0.4333128340076655,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_create_review_primary_action": 0.4331921249977313,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_or_screen_submission": 0.2686046250164509,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_see_view_determination_primary_action": 0.4912479170016013,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_cant_view_others_submission": 0.3295627489860635,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_get_congratulations_draft_proposal": 0.5177709170093294,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_get_edit_link_when_editable": 0.4114942910091486,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_gets_draft_on_edit_submission": 0.3888763760041911,
"hypha/apply/funds/tests/test_views.py::TestApplicantSubmissionView::test_sees_latest_draft_if_it_exists": 0.3858036670135334,
"hypha/apply/funds/tests/test_views.py::TestReviewerLeaderboard::test_applicant_cannot_access_reviewer_leaderboard": 0.08048508403589949,
"hypha/apply/funds/tests/test_views.py::TestReviewerLeaderboard::test_community_reviewer_cannot_access_reviewer_leaderboard": 0.06161362599232234,
"hypha/apply/funds/tests/test_views.py::TestReviewerLeaderboard::test_partner_cannot_access_reviewer_leaderboard": 0.0720210839936044,
"hypha/apply/funds/tests/test_views.py::TestReviewerLeaderboard::test_reviewer_cannot_access_leader_board": 0.07026016598683782,
"hypha/apply/funds/tests/test_views.py::TestReviewerLeaderboard::test_staff_can_access_leaderboard": 0.09377575002145022,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_access_any_submission": 0.23528633295791224,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_only_access_accepted_submission": 0.5731471680046525,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_only_access_assigned_submission": 0.564384041033918,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_only_access_external_review_or_higher_submission": 0.36126087402226403,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_only_access_reviewed_submission": 0.28077850001864135,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_see_create_review_primary_action": 0.34838125098031014,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_see_view_determination_primary_action": 0.3286028750007972,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_can_view_applicant_pii": 0.2579448750184383,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_access_dismissed_submission": 0.2940064590075053,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_see_add_determination_primary_action": 0.36084570799721405,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_see_assign_reviewers_primary_action": 0.221685833967058,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_see_assign_reviewers_secondary_action": 0.3993204580328893,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_see_create_review_primary_action": 0.536135667032795,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_see_view_determination_primary_action": 0.32999645703239366,
"hypha/apply/funds/tests/test_views.py::TestReviewerSubmissionView::test_cant_view_applicant_pii": 0.23771762399701402,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_can_add_external_reviewer_and_review_remains": 0.26544658400234766,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_can_be_made_role_and_not_duplciated": 0.2653093341505155,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_can_be_made_role_and_not_duplicated": 0.20030450000194833,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_can_remove_external_reviewer_and_review_remains": 0.22914987400872633,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_add_reviewers_for_proposal": 0.22271662403363734,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_add_staff_single": 0.18115083299926482,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_change_role_reviewer_and_review_remains": 0.19344895801623352,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_change_staff_single": 0.21865808303118683,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_remove_reviewers_for_proposal": 0.4317535420123022,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_can_remove_some_reviewers_for_proposal": 0.27938262504176237,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_lead_cant_add_reviewers_single": 0.23551554101868533,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_staff_cant_add_reviewers_proposal": 0.17907520799781196,
"hypha/apply/funds/tests/test_views.py::TestReviewersUpdateView::test_staff_cant_remove_reviewers_proposal": 0.1988118329900317,
"hypha/apply/funds/tests/test_views.py::TestRevisionCompare::test_renders_with_all_the_diffs": 0.4513173330051359,
"hypha/apply/funds/tests/test_views.py::TestRevisionList::test_get_in_correct_order": 0.46393916697707027,
"hypha/apply/funds/tests/test_views.py::TestRevisionList::test_list_doesnt_include_draft": 0.27583233403856866,
"hypha/apply/funds/tests/test_views.py::TestRevisionsView::test_create_revisions_on_submit": 0.2988480000058189,
"hypha/apply/funds/tests/test_views.py::TestRevisionsView::test_dont_update_live_revision_on_save": 0.2451412910304498,
"hypha/apply/funds/tests/test_views.py::TestRevisionsView::test_existing_draft_edit_and_submit": 0.3733655830146745,
"hypha/apply/funds/tests/test_views.py::TestStaffReminderDeleteView::test_confirm_message": 0.19752091701957397,
"hypha/apply/funds/tests/test_views.py::TestStaffReminderDeleteView::test_has_access": 0.17327933199703693,
"hypha/apply/funds/tests/test_views.py::TestStaffSealedView::test_cant_post_to_sealed": 0.23802250099834055,
"hypha/apply/funds/tests/test_views.py::TestStaffSealedView::test_non_sealed_redirected_away": 0.21505120801157318,
"hypha/apply/funds/tests/test_views.py::TestStaffSealedView::test_non_sealed_unaffected": 0.19397445904905908,
"hypha/apply/funds/tests/test_views.py::TestStaffSealedView::test_redirected_to_sealed": 0.46055829102988355,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionFileView::test_staff_can_access": 0.17859349999343976,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_applicant_can_see_application_draft_status": 0.26623054197989404,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_access_edit": 0.26508608399308287,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_access_edit_button": 0.2114635409670882,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_create_project": 0.17794766699080355,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_edit_submission": 0.4603585429722443,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_progress_phase": 0.2036336669989396,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_screen_submission": 0.1629775420005899,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_see_add_determination_primary_action": 0.6179685830429662,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_see_assign_reviewers_primary_action": 0.6403788750176318,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_see_assign_reviewers_secondary_action": 0.4441335420124233,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_see_create_review_primary_action": 0.5423847499478143,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_see_view_determination_primary_action": 0.41376733299694024,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_view_a_lab_submission": 0.3992740829999093,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_view_a_submission": 0.17059916598373093,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_can_view_submission_screening_block": 0.15875349997077137,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_access_edit_button_when_applicant_editing": 0.2761726239696145,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_progress_stage_if_not_lead": 0.2415212079649791,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_see_add_determination_primary_action": 0.5489891679608263,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_see_assign_reviewers_primary_action": 0.36970349901821464,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_see_create_review_primary_action": 0.6186491660191678,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_cant_see_view_determination_primary_action": 0.44208370900014415,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_new_form_after_progress": 0.29902999897603877,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_not_included_fields_render": 0.4038031669915654,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_not_redirected_if_determination_submitted": 0.24655179100227542,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_not_redirected_if_wrong_determination_selected": 0.24469112500082701,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_previous_and_next_appears_on_page": 0.48163754103006795,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_redirected_to_determination": 0.25782312601222657,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_screen_application_primary_action_is_displayed": 0.1582247079932131,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_staff_can_see_application_draft_status": 0.18332612499943934,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_staff_can_see_translate_primary_action": 0.233855417027371,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_staff_cant_see_application_draft_status": 0.25308987603057176,
"hypha/apply/funds/tests/test_views.py::TestStaffSubmissionView::test_staff_cant_see_translate_primary_action": 0.23531366701354273,
"hypha/apply/funds/tests/test_views.py::TestSubmissionDetailSimplifiedView::test_project_required": 0.13855633401544765,
"hypha/apply/funds/tests/test_views.py::TestSubmissionDetailSimplifiedView::test_staff_only": 0.12153325100371148,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSealedView::test_can_post_to_sealed": 0.3656220840057358,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSealedView::test_can_view_multiple_sealed": 0.35199770698091015,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSealedView::test_not_asked_again": 0.29736154098645784,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSealedView::test_peeking_is_logged": 0.23552395799197257,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSealedView::test_redirected_to_sealed": 0.19177104299888015,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSubmissionView::test_can_screen_applications_in_final_status": 0.3052344990137499,
"hypha/apply/funds/tests/test_views.py::TestSuperUserSubmissionView::test_can_screen_submission": 0.16483175102621317,
"hypha/apply/funds/tests/test_views.py::TestUpdateReviewersMixin::test_submission_transition_all_reviewer_roles_not_assigned": 0.23082183301448822,
"hypha/apply/funds/tests/test_views.py::TestUpdateReviewersMixin::test_submission_transition_to_internal_review": 0.16780562498024665,
"hypha/apply/funds/tests/test_views.py::TestUpdateReviewersMixin::test_submission_transition_to_proposal_internal_review": 0.1806858329800889,
"hypha/apply/funds/tests/test_views.py::TestUserReminderDeleteView::test_doesnt_has_access": 0.18415912598720752,
"hypha/apply/funds/tests/test_views.py::TestUserSubmissionFileView::test_owner_can_access": 0.17426620799233206,
"hypha/apply/funds/tests/test_views.py::TestUserSubmissionFileView::test_user_can_not_access": 0.32332654201309197,
"hypha/apply/funds/tests/views/test_batch_progress.py::ApplicantTestCase::test_cant_access_page_to_page": 0.10833295801421627,
"hypha/apply/funds/tests/views/test_batch_progress.py::ReivewersTestCase::test_cant_post_to_page": 0.08987254099338315,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_can_progress_application": 0.37284958400414325,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_can_progress_different_states": 0.47289337500114925,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_can_progress_multiple_applications": 0.9429610840015812,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_can_progress_one_in_mixed_state": 0.4437733740051044,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_cant_progress_in_incorrect_state": 0.33982808199652936,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_determine_redirects": 0.2351640819979366,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_messenger_not_called_with_failed": 0.3188801259821048,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_messenger_with_submission_in_review": 0.30122216598829255,
"hypha/apply/funds/tests/views/test_batch_progress.py::StaffTestCase::test_mixed_determine_notifies": 0.36853354099730495,
"hypha/apply/funds/tests/views/test_batch_reviewers.py::StaffTestCase::test_can_assign_role_reviewers": 0.7183987090102164,
"hypha/apply/funds/tests/views/test_batch_reviewers.py::StaffTestCase::test_can_reassign_from_other_role_reviewers": 0.6453075000026729,
"hypha/apply/funds/tests/views/test_batch_reviewers.py::StaffTestCase::test_can_reassign_role_reviewers": 0.694828542007599,
"hypha/apply/funds/tests/views/test_batch_reviewers.py::StaffTestCase::test_doesnt_remove_if_already_reviewed": 0.641025916003855,
"hypha/apply/funds/tests/views/test_rounds.py::TestApplicantRoundPage::test_cant_access_page": 0.1012737920100335,
"hypha/apply/funds/tests/views/test_rounds.py::TestReviewerAllRoundPage::test_cant_access_page": 0.07498929198482074,
"hypha/apply/funds/tests/views/test_rounds.py::TestStaffRoundPage::test_can_access_page": 0.2655544599692803,
"hypha/apply/funds/tests/views/test_submission_delete.py::test_delete_submission_view_login": 0.17213966700364836,
"hypha/apply/funds/tests/views/test_submission_delete.py::test_submission_delete_by_admin": 0.251603165990673,
"hypha/apply/funds/tests/views/test_submission_delete.py::test_submission_delete_by_applicant": 0.35873879096470773,
"hypha/apply/projects/reports/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_already_notified": 0.16456070903223008,
"hypha/apply/projects/reports/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_project_complete": 0.10629583400441334,
"hypha/apply/projects/reports/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_project_not_in_progress": 0.11422208201838657,
"hypha/apply/projects/reports/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_report_due_in_7_days_already_submitted": 0.13884324999526143,
"hypha/apply/projects/reports/tests/test_commands.py::TestNotifyReportDue::test_notify_report_due_in_7_days": 0.13552666598116048,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_late_if_two_weeks_behind": 0.13998116698348895,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_not_late_if_one_ahead": 0.11432424996746704,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_not_late_if_two_ahead_but_one_in_future": 0.14646383302169852,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_queryset_done_doesnt_includes_draft": 0.12158191698836163,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_queryset_done_doesnt_includes_to_do": 0.11178670899244025,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_queryset_done_includes_skipped": 0.11233525100396946,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_queryset_done_includes_submitted": 0.11950037401402369,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_start_date": 0.22718320897547528,
"hypha/apply/projects/reports/tests/test_models.py::TestReport::test_start_date_with_submitted": 0.2229899170633871,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_current_due_report_gets_active_report": 0.16702325001824647,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_last_report_gets_report_in_past": 0.11740574898431078,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_last_report_gets_skipped": 0.10475720901740715,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_last_report_gets_submitted_report_in_past": 0.1458801660046447,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_months_always_relative": 0.116297874978045,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_next_date_month_from_now": 0.11333724998985417,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_next_date_week_from_now": 0.11508266697637737,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_no_report_creates_report": 0.11857716698432341,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_no_report_creates_report_if_current_skipped": 0.25182774901622906,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_no_report_creates_report_not_in_past": 0.11937979099457152,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_no_report_schedule_in_future_creates_report": 0.15873187500983477,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due": 0.16261491598561406,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_has_drafts": 0.12350666598649696,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_no_future": 0.1158793340146076,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_no_skipped": 0.10808645802899264,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_no_submitted": 0.11398195798392408,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_report_creates_report": 0.11085212498437613,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_past_due_report_future_schedule_creates_report": 0.12708816601661965,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_submitted_report_unaffected": 0.10792812501313165,
"hypha/apply/projects/reports/tests/test_models.py::TestReportConfig::test_today_schedule_gets_report_today": 0.13288495800225064,
"hypha/apply/projects/reports/tests/test_pages.py::TestReportListPage::test_applicants_cannot_access_report_list_page": 0.19346058199880645,
"hypha/apply/projects/reports/tests/test_pages.py::TestReportListPage::test_staff_can_access_report_list_page": 0.20991641597356647,
"hypha/apply/projects/reports/tests/test_pages.py::TestReportingPage::test_applicants_cannot_access_reporting_page": 0.07603379199281335,
"hypha/apply/projects/reports/tests/test_pages.py::TestReportingPage::test_staff_can_access_reporting_page": 0.18488416701438837,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_can_access_own_submitted_report": 0.24353037498076446,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_draft_report": 0.18341454202891327,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_future_report": 0.2002066660206765,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_submitted_report": 0.18864904198562726,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_cant_access_own_draft_report": 0.16869854103424586,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantReportDetail::test_cant_access_own_future_report": 0.38201120900339447,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_cant_edit_submitted_report": 0.22867308402783237,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_cant_get_other_report": 0.18928554104059003,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_cant_get_own_report_for_closing_and_complete_project": 0.30315300001529977,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_cant_submit_blank_report": 0.20674512497498654,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_cant_submit_other_report": 0.17775658299797215,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_get_own_report_for_inprogress_project": 0.18771733297035098,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_save_report_draft": 0.26683208299800754,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_save_report_with_draft": 0.2917422079772223,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_submit_own_report": 0.2955214589892421,
"hypha/apply/projects/reports/tests/test_views.py::TestApplicantSubmitReport::test_submit_private_report": 0.2573943340103142,
"hypha/apply/projects/reports/tests/test_views.py::TestReportFrequencyUpdate::test_applicant_cant_access": 0.1966827510332223,
"hypha/apply/projects/reports/tests/test_views.py::TestReportFrequencyUpdate::test_staff_can_access": 0.15679195898701437,
"hypha/apply/projects/reports/tests/test_views.py::TestReportListView::test_applicant_cant_access": 0.083402708027279,
"hypha/apply/projects/reports/tests/test_views.py::TestReportListView::test_staff_can_access": 0.24004720896482468,
"hypha/apply/projects/reports/tests/test_views.py::TestReportingView::test_applicant_cant_access": 0.0858847500057891,
"hypha/apply/projects/reports/tests/test_views.py::TestReportingView::test_staff_can_access": 0.24129879201063886,
"hypha/apply/projects/reports/tests/test_views.py::TestSkipReport::test_can_skip_draft_report": 0.21693137401598506,
"hypha/apply/projects/reports/tests/test_views.py::TestSkipReport::test_can_skip_report": 0.18400412597111426,
"hypha/apply/projects/reports/tests/test_views.py::TestSkipReport::test_can_unskip_report": 0.18865316698793322,
"hypha/apply/projects/reports/tests/test_views.py::TestSkipReport::test_cant_skip_current_report": 0.18468416601535864,
"hypha/apply/projects/reports/tests/test_views.py::TestSkipReport::test_cant_skip_submitted_report": 0.1626319990027696,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffReportDetail::test_can_access_submitted_report": 0.807158124021953,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffReportDetail::test_cant_access_draft_report": 0.22117166701355018,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffReportDetail::test_cant_access_future_report": 0.19532116703339852,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffReportDetail::test_cant_access_skipped_report": 0.22667512399493717,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_cant_get_page_for_closing_and_complete_project": 0.3731228329706937,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_blank_report": 0.22337179200258106,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_future_report": 0.19380366601399146,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_report_for_closing_and_complete_project": 0.31446987405070104,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_edit_submitted_report": 0.27511579103884287,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_get_page_for_inprogress_project": 0.38620012599858455,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_resubmit_submitted_report": 0.2663159170479048,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_save_report_draft": 0.502513042971259,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_save_report_with_draft": 0.27537287498125806,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_submit_private_report": 0.25157816702267155,
"hypha/apply/projects/reports/tests/test_views.py::TestStaffSubmitReport::test_submit_report": 0.2622620410111267,
"hypha/apply/projects/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_already_notified": 0.20664137485437095,
"hypha/apply/projects/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_project_complete": 0.15369704202748835,
"hypha/apply/projects/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_project_not_in_progress": 0.14183241710998118,
"hypha/apply/projects/tests/test_commands.py::TestNotifyReportDue::test_dont_notify_report_due_in_7_days_already_submitted": 0.1701067901449278,
"hypha/apply/projects/tests/test_commands.py::TestNotifyReportDue::test_notify_report_due_in_7_days": 0.1784827500814572,
"hypha/apply/projects/tests/test_files.py::TestFlatten::test_no_items": 0.008471917040878907,
"hypha/apply/projects/tests/test_files.py::TestFlatten::test_one_level_of_items": 0.0009364589932374656,
"hypha/apply/projects/tests/test_files.py::TestFlatten::test_three_levels_of_items": 0.0005538320110645145,
"hypha/apply/projects/tests/test_files.py::TestFlatten::test_two_levels_of_items": 0.0012248340353835374,
"hypha/apply/projects/tests/test_files.py::TestGetFiles::test_get_files": 0.1221675839915406,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_finance1_choices_with_approved_by_staff_status": 0.13681883399840444,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_finance1_choices_with_changes_requested_by_finance1_status": 0.10793549998197705,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_finance1_choices_with_changes_requested_by_staff_status": 0.10471283399965614,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_finance1_choices_with_resubmitted_status": 0.11483412500820123,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_finance1_choices_with_submitted_status": 0.14824091701302677,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_staff_choices_with_approved_by_staff_status": 0.09698845804086886,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_staff_choices_with_changes_requested_by_finance1_status": 0.1305097920121625,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_staff_choices_with_changes_requested_by_staff_status": 0.09794025102746673,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_staff_choices_with_resubmitted_status": 0.09777487500105053,
"hypha/apply/projects/tests/test_forms.py::TestChangeInvoiceStatusFormForm::test_staff_choices_with_submitted_status": 0.14227845799177885,
"hypha/apply/projects/tests/test_forms.py::TestChangePAFStatusForm::test_comment_is_not_required": 0.14652300099260174,
"hypha/apply/projects/tests/test_forms.py::TestChangePAFStatusForm::test_paf_status_is_required": 0.08898675002274103,
"hypha/apply/projects/tests/test_forms.py::TestContractUploadForm::test_applicant_can_upload_signed": 0.00728166796034202,
"hypha/apply/projects/tests/test_forms.py::TestContractUploadForm::test_applicant_cant_upload_unsigned": 0.0023275830026250333,
"hypha/apply/projects/tests/test_forms.py::TestCreateInvoiceForm::test_adding_invoice": 0.1298770830326248,
"hypha/apply/projects/tests/test_forms.py::TestCreateInvoiceForm::test_supporting_documents_not_required": 0.10782937501790002,
"hypha/apply/projects/tests/test_forms.py::TestEditInvoiceForm::test_add_new_supporting_document": 0.14984233299037442,
"hypha/apply/projects/tests/test_forms.py::TestEditInvoiceForm::test_keep_existing_supporting_document": 0.10644850003882311,
"hypha/apply/projects/tests/test_forms.py::TestEditInvoiceForm::test_remove_existing_supporting_document": 0.10680300000240095,
"hypha/apply/projects/tests/test_forms.py::TestProjectForm::test_updating_fields_sets_changed_flag": 0.13581920899741817,
"hypha/apply/projects/tests/test_forms.py::TestSelectDocumentForm::test_copying_files": 0.13772541703656316,
"hypha/apply/projects/tests/test_forms.py::TestStaffContractUploadForm::test_staff_can_upload_signed": 0.009319042030256242,
"hypha/apply/projects/tests/test_forms.py::TestStaffContractUploadForm::test_staff_can_upload_unsigned": 0.004525706986896694,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_applicant_can_edit_invoice": 0.34031837500515394,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_applicant_cant_edit_deliverables": 1.0823944180010585,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_applicant_cant_edit_invoice": 0.5751454170385841,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_can_user_delete_from_submitted": 0.11135087395086884,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_deliverables_total_amount": 0.2221907079947414,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_finance1_cant_edit_deliverables": 0.8016104589914903,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_invoice_status_user_choices": 0.008393499010708183,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_paid_value_overrides_paid_value": 0.09844004199840128,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_paid_value_used_when_no_paid_value": 0.10272245900705457,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_can_change_status": 0.43855062598595396,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_can_delete_from_submitted": 0.09793358400929719,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_can_edit_deliverables": 0.3231267920054961,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_can_edit_invoice": 0.3152942080050707,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_change_status": 0.4460888759640511,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_delete_from_changes_requested": 0.13604675003443845,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_delete_from_declined": 0.11191795900231227,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_delete_from_paid": 0.12552974998834543,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_delete_from_resubmitted": 0.14077258296310902,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_edit_deliverables": 0.6452054999972461,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_staff_cant_edit_invoice": 0.5808762499655131,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_user_cant_delete_from_changes_requested": 0.15149591700173914,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_user_cant_delete_from_declined": 0.10850533304619603,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_user_cant_delete_from_paid": 0.11986345905461349,
"hypha/apply/projects/tests/test_models.py::TestInvoiceModel::test_user_cant_delete_from_resubmitted": 0.10976083201239817,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_approved_by_finance_1": 0.1342894589761272,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_approved_by_staff": 0.10601112496806309,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_for_finance_1": 0.3207609999808483,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_get_totals": 0.20953704297426157,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_get_totals_no_value": 0.002782917028525844,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_not_rejected": 0.20298583299154416,
"hypha/apply/projects/tests/test_models.py::TestInvoiceQueryset::test_rejected": 0.20619900000747293,
"hypha/apply/projects/tests/test_models.py::TestProjectModel::test_create_from_submission": 0.11392141703981906,
"hypha/apply/projects/tests/test_models.py::TestReport::test_late_if_two_weeks_behind": 0.19634166709147394,
"hypha/apply/projects/tests/test_models.py::TestReport::test_not_late_if_one_ahead": 0.17253308196086437,
"hypha/apply/projects/tests/test_models.py::TestReport::test_not_late_if_two_ahead_but_one_in_future": 0.15967058390378952,
"hypha/apply/projects/tests/test_models.py::TestReport::test_queryset_done_doesnt_includes_draft": 0.14343870792072266,
"hypha/apply/projects/tests/test_models.py::TestReport::test_queryset_done_doesnt_includes_to_do": 0.13223879097495228,
"hypha/apply/projects/tests/test_models.py::TestReport::test_queryset_done_includes_skipped": 0.12229966698214412,
"hypha/apply/projects/tests/test_models.py::TestReport::test_queryset_done_includes_submitted": 0.16984625102486461,
"hypha/apply/projects/tests/test_models.py::TestReport::test_start_date": 0.36023799993563443,
"hypha/apply/projects/tests/test_models.py::TestReport::test_start_date_with_submitted": 0.3107237931108102,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_current_due_report_gets_active_report": 0.1908937090774998,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_last_report_gets_report_in_past": 0.17313183296937495,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_last_report_gets_skipped": 0.1784205009462312,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_last_report_gets_submitted_report_in_past": 0.1673934580758214,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_months_always_relative": 0.13849699997808784,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_next_date_month_from_now": 0.13591970794368535,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_next_date_week_from_now": 0.1300598740344867,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_no_report_creates_report": 0.1626441249391064,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_no_report_creates_report_if_current_skipped": 0.3391600828617811,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_no_report_creates_report_not_in_past": 0.13832145789638162,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_no_report_schedule_in_future_creates_report": 0.14976866694632918,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due": 0.14902862592134625,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_has_drafts": 0.12650970800314099,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_no_future": 0.16134987608529627,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_no_skipped": 0.19995729206129909,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_no_submitted": 0.1643628760939464,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_report_creates_report": 0.1675410009920597,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_past_due_report_future_schedule_creates_report": 0.15726233297027647,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_submitted_report_unaffected": 0.18455791601445526,
"hypha/apply/projects/tests/test_models.py::TestReportConfig::test_today_schedule_gets_report_today": 0.14914162398781627,
"hypha/apply/projects/tests/test_templatetags.py::TestContractTools::test_only_owner_or_contracting_can_upload_contract": 0.550106082984712,
"hypha/apply/projects/tests/test_templatetags.py::TestContractTools::test_owner_can_only_upload_during_contracting": 0.6784185829747003,
"hypha/apply/projects/tests/test_templatetags.py::TestContractTools::test_staff_cant_upload_contract": 0.6274538749712519,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_applicant_and_staff_can_edit_in_resubmitted": 0.1590440420259256,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_applicant_and_staff_can_edit_in_submitted": 0.11471349999192171,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_applicant_and_staff_cant_edit_in_decline": 0.10579200097708963,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_applicant_and_staff_cant_edit_in_paid": 0.12547499901847914,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_applicant_can_edit_in_changes_requested": 0.11720170703483745,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_can_change_status_from_changes_requested": 0.10198491701157764,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_can_change_status_from_resubmitted": 0.11121558299055323,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_can_change_status_from_submitted": 0.09391054100706242,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_can_delete_from_submitted": 0.11846258302102797,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_change_status_from_declined": 0.1012407089874614,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_change_status_from_paid": 0.11129420800716616,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_delete_from_changes_requested": 0.12237283398280852,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_delete_from_declined": 0.13180033399839886,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_delete_from_paid": 0.1150786669459194,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_delete_from_resubmitted": 0.11971387595986016,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_staff_cant_edit_in_changes_requested": 0.10767375101568177,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_can_delete_from_changes_requested": 0.09943391600972973,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_can_delete_from_submitted": 0.10668095800792798,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_change_status_from_changes_requested": 0.11234354198677465,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_change_status_from_declined": 0.1073179179802537,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_change_status_from_paid": 0.12599479302298278,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_change_status_from_resubmitted": 0.14454354203189723,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_change_status_from_submitted": 0.11725533398566768,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_delete_from_declined": 0.1120696670259349,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_delete_from_paid": 0.11037904201657511,
"hypha/apply/projects/tests/test_templatetags.py::TestInvoiceTools::test_user_cant_delete_from_resubmitted": 0.10820012501790188,
"hypha/apply/projects/tests/test_views.py::ApplicantStaffProjectDetailDownloadView::test_cant_access_docx": 0.3967220420308877,
"hypha/apply/projects/tests/test_views.py::ApplicantStaffProjectDetailDownloadView::test_cant_access_pdf": 0.1870973339828197,
"hypha/apply/projects/tests/test_views.py::TestAnonPacketView::test_anonymous_can_not_access": 0.42599024999071844,
"hypha/apply/projects/tests/test_views.py::TestApplicantChangeInoviceStatus::test_can": 0.28795220800384413,
"hypha/apply/projects/tests/test_views.py::TestApplicantChangeInoviceStatus::test_other_cant": 0.2800875839893706,
"hypha/apply/projects/tests/test_views.py::TestApplicantChangeInvoiceStatus::test_can": 0.2501498339988757,
"hypha/apply/projects/tests/test_views.py::TestApplicantChangeInvoiceStatus::test_other_cant": 0.2388752920087427,
"hypha/apply/projects/tests/test_views.py::TestApplicantDetailInvoiceStatus::test_can": 0.4252734170295298,
"hypha/apply/projects/tests/test_views.py::TestApplicantDetailInvoiceStatus::test_other_cant": 0.18611974897794425,
"hypha/apply/projects/tests/test_views.py::TestApplicantEditInvoiceView::test_editing_invoice_remove_supporting_document": 0.2668159590102732,
"hypha/apply/projects/tests/test_views.py::TestApplicantEditInvoiceView::test_editing_payment_keeps_receipts": 0.22501937500783242,
"hypha/apply/projects/tests/test_views.py::TestApplicantInvoiceDocumentPrivateMedia::test_can_access_own": 0.1754142489808146,
"hypha/apply/projects/tests/test_views.py::TestApplicantInvoiceDocumentPrivateMedia::test_cant_access_other": 0.17767220802488737,
"hypha/apply/projects/tests/test_views.py::TestApplicantProjectDetailView::test_applicant_can_see_lead": 0.18715221001184545,
"hypha/apply/projects/tests/test_views.py::TestApplicantProjectDetailView::test_applicant_cant_see_hidden_lead": 0.22667079098755494,
"hypha/apply/projects/tests/test_views.py::TestApplicantProjectDetailView::test_has_access": 0.22460808398318477,
"hypha/apply/projects/tests/test_views.py::TestApplicantProjectDetailView::test_lab_project_renders": 0.20390270900679752,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_can_access_own_submitted_report": 0.34192750009242445,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_draft_report": 0.23435479088220745,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_future_report": 0.36649500008206815,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_cant_access_other_submitted_report": 0.3065117511432618,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_cant_access_own_draft_report": 0.2478377080988139,
"hypha/apply/projects/tests/test_views.py::TestApplicantReportDetail::test_cant_access_own_future_report": 0.2677389149321243,
"hypha/apply/projects/tests/test_views.py::TestApplicantSelectDocumentView::test_can_choose": 0.2893836670118617,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_cant_edit_submitted_report": 0.33169391588307917,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_cant_get_other_report": 0.27912012685555965,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_cant_get_own_report_for_closing_and_complete_project": 0.42497162509243935,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_cant_submit_blank_report": 0.27732295694295317,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_cant_submit_other_report": 0.24962412496097386,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_get_own_report_for_inprogress_project": 0.230056083179079,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_save_report_draft": 0.5207799988565966,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_save_report_with_draft": 0.44433083396870643,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_submit_own_report": 0.4332485831109807,
"hypha/apply/projects/tests/test_views.py::TestApplicantSubmitReport::test_submit_private_report": 0.32812233397271484,
"hypha/apply/projects/tests/test_views.py::TestApplicantSupportingDocumentPrivateMedia::test_can_access_own": 0.19092424897826277,
"hypha/apply/projects/tests/test_views.py::TestApplicantSupportingDocumentPrivateMedia::test_cant_access_other": 0.23357354098698124,
"hypha/apply/projects/tests/test_views.py::TestApplicantUploadContractView::test_non_owner_upload_contract": 0.23894304200075567,
"hypha/apply/projects/tests/test_views.py::TestApplicantUploadContractView::test_owner_upload_contract": 0.24389300102484412,
"hypha/apply/projects/tests/test_views.py::TestApproveContractView::test_approve_already_approved_contract": 0.48321983401547186,
"hypha/apply/projects/tests/test_views.py::TestApproveContractView::test_approve_unapproved_contract": 0.20435416701366194,
"hypha/apply/projects/tests/test_views.py::TestApproveContractView::test_approve_unsigned_contract": 0.19790637501864694,
"hypha/apply/projects/tests/test_views.py::TestApproveContractView::test_attempt_to_approve_non_latest": 0.15809858398279175,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_assigned_approvers_can_approve_paf": 0.26523020898457617,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_assigned_approvers_can_reject_paf": 0.22938320803223178,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_unassigned_applicant_cant_update_paf_status": 0.19478866600547917,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_unassigned_contracting_cant_update_paf_status": 0.21150695899268612,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_unassigned_finance_cant_update_paf_status": 0.24351341699366458,
"hypha/apply/projects/tests/test_views.py::TestChangePAFStatusView::test_unassigned_staff_cant_update_paf_status": 0.41210500002489425,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_all_signed_and_approved_contracts_appear": 0.19787700098822825,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_all_signed_and_unapproved_returns_latest": 0.15729379197000526,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_all_unsigned_and_unapproved_returns_only_latest": 0.12581962498370558,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_mixture_of_both_latest_signed_and_approved": 0.12089466798352078,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_mixture_of_both_latest_signed_and_unapproved": 0.14875687504536472,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_mixture_of_both_latest_unsigned_and_unapproved": 0.1433844169951044,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_mixture_with_latest_signed_returns_no_unsigned": 0.10663670802023262,
"hypha/apply/projects/tests/test_views.py::TestContractsMixin::test_no_contracts_returns_nothing": 0.13503983401460573,
"hypha/apply/projects/tests/test_views.py::TestFinanceDetailInvoiceStatus::test_can": 0.25705487400409766,
"hypha/apply/projects/tests/test_views.py::TestFinanceDetailInvoiceStatus::test_wrong_project_cant": 0.27545758296037093,
"hypha/apply/projects/tests/test_views.py::TestFinanceProjectDetailView::test_has_access": 0.3233297500119079,
"hypha/apply/projects/tests/test_views.py::TestFinanceProjectDetailView::test_lab_project_renders": 0.19656225002836436,
"hypha/apply/projects/tests/test_views.py::TestProjectDetailApprovalView::test_staff_only": 0.15795537500525825,
"hypha/apply/projects/tests/test_views.py::TestProjectListView::test_applicants_cannot_access_project_list_page": 0.41392729099607095,
"hypha/apply/projects/tests/test_views.py::TestProjectListView::test_staff_can_access_project_list_page": 0.32808091799961403,
"hypha/apply/projects/tests/test_views.py::TestRemoveDocumentView::test_remove_document": 0.5860756240144838,
"hypha/apply/projects/tests/test_views.py::TestRemoveDocumentView::test_remove_non_existent_document": 0.2057525409909431,
"hypha/apply/projects/tests/test_views.py::TestReviewerUserProjectDetailView::test_doesnt_have_access": 0.19089379100478254,
"hypha/apply/projects/tests/test_views.py::TestSendForApprovalView::test_send_for_approval_fails_when_project_is_locked": 0.17082662499160506,
"hypha/apply/projects/tests/test_views.py::TestSendForApprovalView::test_send_for_approval_fails_when_project_is_not_in_draft_state": 0.13405249998322688,
"hypha/apply/projects/tests/test_views.py::TestSendForApprovalView::test_send_for_approval_happy_path": 0.2801321670121979,
"hypha/apply/projects/tests/test_views.py::TestSkipReport::test_can_skip_draft_report": 0.29360487509984523,
"hypha/apply/projects/tests/test_views.py::TestSkipReport::test_can_skip_report": 0.23937391606159508,
"hypha/apply/projects/tests/test_views.py::TestSkipReport::test_can_unskip_report": 0.25959083205088973,
"hypha/apply/projects/tests/test_views.py::TestSkipReport::test_cant_skip_current_report": 0.2729966660263017,
"hypha/apply/projects/tests/test_views.py::TestSkipReport::test_cant_skip_submitted_report": 0.256131749949418,
"hypha/apply/projects/tests/test_views.py::TestStaffChangeInvoiceStatus::test_can": 0.2231167499849107,
"hypha/apply/projects/tests/test_views.py::TestStaffChangeInvoiceStatus::test_can_view_updated_invoice_status": 0.24712699998053722,
"hypha/apply/projects/tests/test_views.py::TestStaffChangeInvoiceStatus::test_can_view_updated_invoice_table": 0.18227437598397955,
"hypha/apply/projects/tests/test_views.py::TestStaffChangeInvoiceStatus::test_can_view_updated_rejected_invoice_table": 0.22185445798095316,
"hypha/apply/projects/tests/test_views.py::TestStaffDetailInvoiceStatus::test_can": 0.2389725829998497,
"hypha/apply/projects/tests/test_views.py::TestStaffDetailInvoiceStatus::test_wrong_project_cant": 0.31354583299253136,
"hypha/apply/projects/tests/test_views.py::TestStaffEditInvoiceView::test_editing_invoice_keeps_supporting_document": 0.2426748749858234,
"hypha/apply/projects/tests/test_views.py::TestStaffEditInvoiceView::test_editing_invoice_keeps_supprting_document": 0.26939449994824827,
"hypha/apply/projects/tests/test_views.py::TestStaffEditInvoiceView::test_editing_invoice_remove_supporting_document": 0.28313470899593085,
"hypha/apply/projects/tests/test_views.py::TestStaffInoviceDocumentPrivateMedia::test_can_access": 0.7114744159916881,
"hypha/apply/projects/tests/test_views.py::TestStaffInoviceDocumentPrivateMedia::test_cant_access_if_project_wrong": 0.37489687697961926,
"hypha/apply/projects/tests/test_views.py::TestStaffInvoiceDocumentPrivateMedia::test_can_access": 0.23043154197512195,
"hypha/apply/projects/tests/test_views.py::TestStaffInvoiceDocumentPrivateMedia::test_cant_access_if_project_wrong": 0.569218749034917,
"hypha/apply/projects/tests/test_views.py::TestStaffInvoiceSupportingDocumentPrivateMedia::test_can_access": 0.20586199997342192,
"hypha/apply/projects/tests/test_views.py::TestStaffPacketView::test_staff_can_access": 0.22015479195397347,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailDownloadView::test_can_access_docx": 0.24551904294639826,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailDownloadView::test_can_access_pdf": 0.20951150101609528,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailDownloadView::test_response_object_is_docx": 0.22968904199660756,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailDownloadView::test_response_object_is_pdf": 0.2109885840327479,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailView::test_has_access": 0.25287366699194536,
"hypha/apply/projects/tests/test_views.py::TestStaffProjectDetailView::test_lab_project_renders": 0.17209224999533035,
"hypha/apply/projects/tests/test_views.py::TestStaffReportDetail::test_can_access_submitted_report": 0.6922510400181636,
"hypha/apply/projects/tests/test_views.py::TestStaffReportDetail::test_cant_access_draft_report": 0.25937683414667845,
"hypha/apply/projects/tests/test_views.py::TestStaffReportDetail::test_cant_access_future_report": 0.269983374979347,
"hypha/apply/projects/tests/test_views.py::TestStaffReportDetail::test_cant_access_skipped_report": 0.4529503750381991,
"hypha/apply/projects/tests/test_views.py::TestStaffSelectDocumentView::test_can_choose": 0.40352912500384264,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_cant_get_page_for_closing_and_complete_project": 0.2275480848038569,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_blank_report": 0.18356758391018957,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_future_report": 0.4889063751325011,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_cant_submit_report_for_closing_and_complete_project": 0.47748870705254376,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_edit_submitted_report": 0.3938110830495134,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_get_page_for_inprogress_project": 0.3010017089545727,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_resubmit_submitted_report": 0.3175683340523392,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_save_report_draft": 0.2937593328533694,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_save_report_with_draft": 0.3115786659764126,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_submit_private_report": 0.43759945791680366,
"hypha/apply/projects/tests/test_views.py::TestStaffSubmitReport::test_submit_report": 0.4051831681281328,
"hypha/apply/projects/tests/test_views.py::TestSuperUserProjectDetailView::test_has_access": 0.4590523329679854,
"hypha/apply/projects/tests/test_views.py::TestUpdateLeadView::test_update_lead": 0.1906310000049416,
"hypha/apply/projects/tests/test_views.py::TestUpdateLeadView::test_update_lead_from_none": 0.16908908300683834,
"hypha/apply/projects/tests/test_views.py::TestUploadDocumentView::test_upload_document": 0.18889750001835637,
"hypha/apply/projects/tests/test_views.py::TestUserPacketView::test_owner_can_access": 0.19263241603039205,
"hypha/apply/projects/tests/test_views.py::TestUserPacketView::test_user_can_not_access": 0.19586624900694005,
"hypha/apply/projects/tests/test_views.py::TestUserProjectDetailView::test_doesnt_have_access": 0.19493958298699,
"hypha/apply/projects/tests/test_views.py::TestUserProjectDetailView::test_owner_has_access": 0.21189924998907372,
"hypha/apply/review/tests/test_admin.py::TestReviewFormAdminForm::test_can_create_review_form": 0.02919399901293218,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_comments_block_required": 0.1439050819608383,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_field_label_required": 0.08875950099900365,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_form_creation": 0.08825100099784322,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_name_field_required": 0.061616042017703876,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_recommendation_block_required": 0.0699318340048194,
"hypha/apply/review/tests/test_admin_views.py::TestCreateReviewFormView::test_visibility_block_required": 0.08080758299911395,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_no_opinion_agree": 0.1465438329614699,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_no_opinion_disagree": 0.11036675097420812,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_not_all_opinion": 0.1110388340021018,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_yes_mixed_opinion": 0.13832104197354056,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_yes_opinion_agree": 0.10222408300614916,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_review_yes_opinion_disagree": 0.10498670800006948,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_reviews_maybe": 0.11061841703485698,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_reviews_mixed": 0.13109162502223626,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_reviews_no": 0.09889566598576494,
"hypha/apply/review/tests/test_models.py::TestReviewQueryset::test_reviews_yes": 0.09586162501364015,
"hypha/apply/review/tests/test_views.py::NonStaffReviewOpinionCase::test_nonstaff_cant_post_opinion_to_review": 0.232543624995742,
"hypha/apply/review/tests/test_views.py::ReviewDetailTestCase::test_review_detail_opinion": 0.2419364999514073,
"hypha/apply/review/tests/test_views.py::ReviewDetailTestCase::test_review_detail_recommendation": 0.20824404098675586,
"hypha/apply/review/tests/test_views.py::ReviewDetailVisibilityTestCase::test_review_detail_visibility_private": 0.28145454201148823,
"hypha/apply/review/tests/test_views.py::ReviewDetailVisibilityTestCase::test_review_detail_visibility_reviewer": 0.26583820799714886,
"hypha/apply/review/tests/test_views.py::ReviewListTestCase::test_review_list_opinion": 0.2629014590056613,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_com_external_review_to_ready_for_discussion": 0.3208649579901248,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_ext_external_review_to_ready_for_discussion": 0.2576849999895785,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_external_review_to_ready_for_discussion": 0.27973066599224694,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_initial_state_transition_to_internal_review": 0.30454070802079514,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_internal_review_to_ready_for_discussion": 0.2095969179936219,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_proposal_discussion_to_proposal_internal_review": 0.3057095430267509,
"hypha/apply/review/tests/test_views.py::ReviewWorkFlowActionTestCase::test_submission_did_not_transition": 0.28528458400978707,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_can_access_form": 0.20954374998109415,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_can_edit_draft_review": 0.16571112503879704,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_can_submit_draft_review": 0.27075237498502247,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_cant_access_wrong_status": 0.2510179159871768,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_cant_resubmit_review": 0.1815292079700157,
"hypha/apply/review/tests/test_views.py::StaffReviewFormTestCase::test_revision_captured_on_review": 0.23339162502088584,
"hypha/apply/review/tests/test_views.py::StaffReviewListingTestCase::test_can_access_review_listing": 0.32121704099699855,
"hypha/apply/review/tests/test_views.py::StaffReviewListingTestCase::test_draft_reviews_dont_appear": 0.18357699899934232,
"hypha/apply/review/tests/test_views.py::StaffReviewOpinionCase::test_can_add_opinion_to_others_review": 0.3183992089761887,
"hypha/apply/review/tests/test_views.py::StaffReviewOpinionCase::test_can_see_opinion_buttons_on_others_review": 0.2863342909840867,
"hypha/apply/review/tests/test_views.py::StaffReviewOpinionCase::test_cant_see_opinion_buttons_on_self_review": 0.18469049900886603,
"hypha/apply/review/tests/test_views.py::StaffReviewOpinionCase::test_disagree_opinion_redirects_to_review_form": 0.21262866698089056,
"hypha/apply/review/tests/test_views.py::StaffReviewsTestCase::test_can_access_other_review": 0.2751631669816561,
"hypha/apply/review/tests/test_views.py::StaffReviewsTestCase::test_can_access_review": 0.1969575840048492,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_average_score_calculated": 0.29755933399428613,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_na_included_in_review_average": 0.24648341702413745,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_na_included_multiple_reviews_average": 0.3864796250127256,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_na_included_reviews_average": 0.26659458299400285,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_no_score_is_NA": 0.26470979003352113,
"hypha/apply/review/tests/test_views.py::TestReviewScore::test_score_calculated": 0.3313009159755893,
"hypha/apply/review/tests/test_views.py::UserReviewFormTestCase::test_cant_access_form": 0.1807721679797396,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens0-date_field-expected0]": 0.0012020000140182674,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens1-date_field-expected1]": 0.40255808297661133,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens10-date_field-expected10]": 0.0006021660228725523,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens11-date_field-expected11]": 0.0009779169922694564,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens2-date_field-expected2]": 0.0007945409743115306,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens3-date_field-expected3]": 0.0007347079808823764,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens4-date_field-expected4]": 0.0007598350348416716,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens5-date_field-expected5]": 0.0007819590100552887,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens6-date_field-expected6]": 0.0013136250199750066,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens7-date_field-expected7]": 0.0007805000350344926,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens8-date_field-expected8]": 0.0009009999921545386,
"hypha/apply/search/tests/test_filters.py::test_date_filter_tokens_to_q_obj[tokens9-date_field-expected9]": 0.0007326679769903421,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[\"hello world\"-expected8]": 0.0008292499696835876,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[#12 #13-expected1]": 0.0015552509867120534,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[#12 text after-expected3]": 0.0010278339905198663,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[-expected0]": 0.001062374998582527,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[hello-expected4]": 0.0008514159708283842,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[submitted:\"hello world\"-expected7]": 0.0009597499738447368,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[submitted:2023-12-02 hello-expected5]": 0.0004654160002246499,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[submitted:>2023-12-02 submitted:<2023-12-01 hello-expected6]": 0.0010760000150185078,
"hypha/apply/search/tests/test_query_parser.py::test_parse_search_query[text before #12-expected2]": 0.0014931659970898181,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[1111-12-89-expected7]": 0.0007115840271580964,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[2023-12-expected5]": 0.0009179159824270755,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[2023-24-expected6]": 0.000847707997309044,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[2023-expected8]": 0.0008689170063007623,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[<2023-12-01-expected1]": 0.0009646670077927411,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[<=2023-12-01-expected2]": 0.0007198749808594584,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[>2023-12-02-expected0]": 0.002258624997921288,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[>2023-expected9]": 0.0003481679887045175,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[>=2023-12-01-expected3]": 0.00036487396573647857,
"hypha/apply/search/tests/test_query_parser.py::test_tokenize_date_filter_value[>=2023-12-expected4]": 0.0009878339769784361,
"hypha/apply/stream_forms/tests.py::TestBlocks::test_blocks_decode_none": 0.008560457004932687,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_add_task_to_user_api": 0.13446870900224894,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_add_task_to_user_group_api": 0.014837375987553969,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_remove_all_task_of_related_obj": 0.15039941703435034,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_remove_task_for_user_api": 0.015009291004389524,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_remove_task_for_user_group_api": 0.013181374000851065,
"hypha/apply/todo/tests.py::TestTaskAPIs::test_remove_task_of_related_obj_with_code": 0.018263499048771337,
"hypha/apply/todo/tests.py::TestTaskListView::test_all_tasks_for_user": 0.3044756249873899,
"hypha/apply/todo/tests.py::TestTaskListView::test_template_for_project_action_contracting_state": 0.37268141700769775,
"hypha/apply/todo/tests.py::TestTaskListView::test_template_for_project_action_draft_state": 0.13987612500204705,
"hypha/apply/todo/tests.py::TestTaskListView::test_template_for_project_action_internal_approval_state": 0.35224462501355447,
"hypha/apply/todo/tests.py::TestTaskListView::test_template_for_project_action_invoicing_state": 0.2220140419958625,
"hypha/apply/todo/tests.py::TestTaskListView::test_template_for_submission_actions": 0.3174641669902485,
"hypha/apply/todo/tests.py::TestTaskListView::test_user_manual_tasks": 0.3490284589934163,
"hypha/apply/todo/tests.py::TestTaskManualRemovalView::test_manual_removal_by_user": 0.226945166970836,
"hypha/apply/todo/tests.py::TestTaskManualRemovalView::test_user_cant_remove_others_task": 0.1201852920348756,
"hypha/apply/translate/tests/test_translate.py::TestTranslate::test_duplicate_code_translate": 0.0018015830137301236,
"hypha/apply/translate/tests/test_translate.py::TestTranslate::test_invalid_code_translate": 0.00046824998571537435,
"hypha/apply/translate/tests/test_translate.py::TestTranslate::test_valid_translate": 0.00041620898991823196,
"hypha/apply/translate/tests/test_utils.py::TesGetAvailableTranslations::test_get_available_translations": 0.0008279160247184336,
"hypha/apply/translate/tests/test_utils.py::TesGetAvailableTranslations::test_get_available_translations_with_codes": 0.0006899579893797636,
"hypha/apply/translate/tests/test_utils.py::TestGetLangName::test_get_lang_name": 0.0006896239938214421,
"hypha/apply/translate/tests/test_utils.py::TestGetLangName::test_get_lang_name_invalid_code": 0.0011266240035183728,
"hypha/apply/translate/tests/test_utils.py::TestGetLanguageChoices::test_get_language_choices_json": 0.0003540419857017696,
"hypha/apply/translate/tests/test_utils.py::TestGetLanguageChoices::test_get_language_choices_json_with_current_url": 0.0007687500037718564,
"hypha/apply/translate/tests/test_utils.py::TestGetLanguageChoices::test_get_language_choices_json_with_language_code": 0.0007569580338895321,
"hypha/apply/translate/tests/test_utils.py::TestGetTranslationParams::test_get_translation_params_with_invalid_args": 0.0006875410035718232,
"hypha/apply/translate/tests/test_utils.py::TestGetTranslationParams::test_get_translation_params_with_invalid_params": 0.0007295020041055977,
"hypha/apply/translate/tests/test_utils.py::TestGetTranslationParams::test_get_translation_params_with_request": 0.0007147500000428408,
"hypha/apply/translate/tests/test_utils.py::TestGetTranslationParams::test_get_translation_params_with_url": 0.0006647080008406192,
"hypha/apply/translate/tests/test_utils.py::TestTranslateSubmissionFormData::test_translate_application_form_data_error_bubble_up": 0.0012593749561347067,
"hypha/apply/translate/tests/test_utils.py::TestTranslateSubmissionFormData::test_translate_application_form_data_html_fields": 0.0006121259648352861,
"hypha/apply/translate/tests/test_utils.py::TestTranslateSubmissionFormData::test_translate_application_form_data_plaintext_fields": 0.00024658197071403265,
"hypha/apply/translate/tests/test_utils.py::TestTranslateSubmissionFormData::test_translate_application_form_data_skip_info_fields": 0.00022245798027142882,
"hypha/apply/translate/tests/test_utils.py::TestTranslateSubmissionFormData::test_translate_application_form_data_skip_non_str_fields": 0.0006737080111633986,
"hypha/apply/users/tests/test_forms.py::TestEmailChangePasswordForm::test_can_update_slack": 0.013775749015621841,
"hypha/apply/users/tests/test_forms.py::TestEmailChangePasswordForm::test_doesnt_error_on_null_slack_field": 0.0062795840203762054,
"hypha/apply/users/tests/test_forms.py::TestProfileForm::test_can_change_email": 0.014875873981509358,
"hypha/apply/users/tests/test_forms.py::TestProfileForm::test_cant_set_slack_name": 0.011157667002407834,
"hypha/apply/users/tests/test_forms.py::TestProfileForm::test_email_unique": 0.014062625967198983,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_auto_prepend_at": 0.016024167009163648,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_can_clear_slack_name": 0.007583750004414469,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_can_set_slack_name": 0.009447332995478064,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_can_set_slack_name_with_trailing_space": 0.012649999960558489,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_cant_change_email_oauth": 0.00666441599605605,
"hypha/apply/users/tests/test_forms.py::TestStaffProfileForm::test_cant_set_slack_name_with_space": 0.018529916007537395,
"hypha/apply/users/tests/test_forms.py::test_become_user_form_query_count": 0.025330042000859976,
"hypha/apply/users/tests/test_middleware.py::TestTwoFactorAuthenticationMiddleware::test_unverified_user_can_access_allowed_urls": 0.27968270701239817,
"hypha/apply/users/tests/test_middleware.py::TestTwoFactorAuthenticationMiddleware::test_unverified_user_redirect": 0.09018020797520876,
"hypha/apply/users/tests/test_middleware.py::TestTwoFactorAuthenticationMiddleware::test_verified_user_redirect": 0.11911812500329688,
"hypha/apply/users/tests/test_oauth_access.py::TestOAuthAccess::test_oauth_not_set_up": 0.349335125007201,
"hypha/apply/users/tests/test_oauth_access.py::TestOAuthAccess::test_oauth_page_requires_login": 0.40617162504349835,
"hypha/apply/users/tests/test_oauth_access.py::TestOAuthAccess::test_oauth_user_email_not_whitelisted": 0.10777287499513477,
"hypha/apply/users/tests/test_oauth_access.py::TestOAuthAccess::test_oauth_whitelisted_user_can_access_oauth_settings_page": 0.08291850000387058,
"hypha/apply/users/tests/test_oauth_access.py::TestOAuthAccess::test_oauth_whitelisted_user_can_see_link_to_oauth_settings_page": 0.09288908299640752,
"hypha/apply/users/tests/test_tokens.py::test_passwordless_login_token": 0.014739333011675626,
"hypha/apply/users/tests/test_tokens.py::test_passwordless_signup_token": 0.005893791007110849,
"hypha/apply/users/tests/test_utils.py::TestActivationEmail::test_activation_email_includes_link": 0.019509666977683082,
"hypha/apply/users/tests/test_utils.py::TestGetUserByEmail::test_multiple_accounts_same_email": 0.021135124989086762,
"hypha/apply/users/tests/test_utils.py::TestGetUserByEmail::test_no_account": 0.0020861249940935522,
"hypha/apply/users/tests/test_utils.py::TestGetUserByEmail::test_single_same_email": 0.006272957049077377,
"hypha/apply/users/tests/test_utils.py::TestUserAlreadyRegistered::test_case_sensitive_email": 0.015385666018119082,
"hypha/apply/users/tests/test_utils.py::TestUserAlreadyRegistered::test_no_account": 0.003948668017983437,
"hypha/apply/users/tests/test_views.py::TestBecome::test_staff_cannot_become_superuser": 0.11601687499205582,
"hypha/apply/users/tests/test_views.py::TestBecome::test_staff_cannot_become_user": 0.09918316701077856,
"hypha/apply/users/tests/test_views.py::TestBecome::test_superuser_can_become_staff": 0.390567458991427,
"hypha/apply/users/tests/test_views.py::TestBecome::test_superuser_cannot_become_superuser": 0.06211816598079167,
"hypha/apply/users/tests/test_views.py::TestBecome::test_user_cannot_become_other_user": 0.24178341700462624,
"hypha/apply/users/tests/test_views.py::TestBecome::test_user_cannot_become_staff": 0.09259058302268386,
"hypha/apply/users/tests/test_views.py::TestBecome::test_user_cannot_become_superuser": 0.4071126260096207,
"hypha/apply/users/tests/test_views.py::TestPasswordReset::test_receives_email": 0.1266760830185376,
"hypha/apply/users/tests/test_views.py::TestPasswordReset::test_recieves_email": 0.13236708300246391,
"hypha/apply/users/tests/test_views.py::TestProfileView::test_2fa_setup_view": 0.11530733402469195,
"hypha/apply/users/tests/test_views.py::TestProfileView::test_cant_access_if_not_logged_in": 0.11002512401319109,
"hypha/apply/users/tests/test_views.py::TestProfileView::test_doesnt_includes_change_password_for_oauth": 0.10388591600349173,
"hypha/apply/users/tests/test_views.py::TestProfileView::test_has_required_text_and_buttons": 0.1316841240040958,
"hypha/apply/users/tests/test_views.py::TestStaffProfileView::test_can_set_slack_name": 0.1561570829944685,
"hypha/apply/utils/tests/test_views.py::TestDelegatedViewMixin::test__access_if_no_object": 0.00578908302122727,
"hypha/apply/utils/tests/test_views.py::TestDelegatedViewMixin::test_parent_access_if_no_object": 0.3412665840005502,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_add_to_query": 0.011208915995666757,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_add_to_query_only_query_string": 0.0017958320386242121,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_construct_query_string": 0.013007250003283843,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_construct_query_string_only_query_string": 0.0018218740005977452,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_modify_query": 0.00394008302828297,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_modify_query_only_query_string": 0.001607042009709403,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_remove_from_query": 0.0014899170200806111,
"hypha/core/templatetags/tests/test_query_params.py::QueryParamsTemplateTagTests::test_remove_from_query_only_query_string": 0.0007646669691894203,
"hypha/core/tests/test_utils.py::test_markdown_to_html[**bold**-<p><strong>bold</strong></p>]": 0.004124708008021116,
"hypha/core/tests/test_utils.py::test_markdown_to_html[Header1 | Header2\\n------ | ------\\nCell1 | Cell2-<table><thead><tr><th>Header1</th><th>Header2</th></tr></thead><tbody><tr><td>Cell1</td><td>Cell2</td></tr></tbody></table>]": 0.41284116700990126,
"hypha/core/tests/test_utils.py::test_markdown_to_html[~~strike~~-<p><del>strike</del></p>]": 0.43525716799194925
}