-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.test_durations
2947 lines (2947 loc) · 292 KB
/
.test_durations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/onegov/activity/test_iso20022.py::test_extract_transactions": 0.06912353900000312,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.0022236480000117353,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 3.6729583209999817,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.9288029009999832,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.011255084999959308,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9277094919999911,
"tests/onegov/activity/test_matching_db.py::test_alignment": 0.9297817810000026,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.9169565510000552,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 0.9173939109999765,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 1.3115590200000042,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 0.9444135920000178,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 0.9474135290000163,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.1706298860000004,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 0.9390771049999955,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 0.9532621319999919,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 0.9716440600000169,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.1798588780000046,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.2099235519999922,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 0.9192955649999703,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 0.9403922749999936,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.0010901600000181588,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.0013080769999760378,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.00292842899997936,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.0026481449999948836,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.0014458150000109526,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0012147349999906965,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.0013658359999908498,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.001067718000001605,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.0018896869999878163,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.0021588500000007116,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.0010941969999862522,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.0008660700000007182,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0008650579999880392,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.0009062170000220249,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.0008515739999666039,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.6046048990000088,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.0019978389999835144,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0009523819999799343,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.0464394819999825,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.6861841620000177,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 0.9292003660000319,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.001131505000046218,
"tests/onegov/activity/test_models.py::test_activity_order": 0.8994984029999955,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 0.9777071709999632,
"tests/onegov/activity/test_models.py::test_activity_states": 0.9057621970000014,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.9114845650000234,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 0.9213811659999465,
"tests/onegov/activity/test_models.py::test_add_activity": 0.8940434779999578,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6132874060000972,
"tests/onegov/activity/test_models.py::test_archive_period": 0.9216140980000205,
"tests/onegov/activity/test_models.py::test_attendee_age": 1.0970275530000322,
"tests/onegov/activity/test_models.py::test_attendees_count": 0.969055911000055,
"tests/onegov/activity/test_models.py::test_booking_collection": 1.3405117680000558,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 0.9529134760001057,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 0.9195625090000021,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.1313583110000422,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 0.943355720999989,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.9269472120000728,
"tests/onegov/activity/test_models.py::test_confirm_period": 0.9293047169999795,
"tests/onegov/activity/test_models.py::test_date_changes": 0.9366360989999407,
"tests/onegov/activity/test_models.py::test_deadline": 0.8925250339999593,
"tests/onegov/activity/test_models.py::test_happiness": 0.9514550210000152,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.9056882880000217,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.0010012189999315524,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0011267829999610512,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.0009258190000309696,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.9006244279999578,
"tests/onegov/activity/test_models.py::test_invoices": 0.9218322990000161,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.664784822999934,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.920995750999964,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 0.9173786019999852,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 0.9266865559999928,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 0.8861165509999296,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9579565619999357,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 1.125437278999982,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 0.6647709380000038,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 0.6740953789999367,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.6595063429999755,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.6633679009999582,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.6534319730000107,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.0381490200000485,
"tests/onegov/activity/test_models.py::test_occasion_duration": 0.9687841300000173,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 0.9226640320000001,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.9279640060000247,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.1627290360000302,
"tests/onegov/activity/test_models.py::test_occasions": 0.9187468490000015,
"tests/onegov/activity/test_models.py::test_period_phases": 0.929628790000038,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.11674522399999887,
"tests/onegov/activity/test_models.py::test_profiles": 0.9316116119999833,
"tests/onegov/activity/test_models.py::test_publication_request": 0.9082225549999521,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 0.9650215949999961,
"tests/onegov/activity/test_models.py::test_timeline_filter": 1.0028093730000478,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.906991226999935,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.0010532019999800468,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.0009811560000230202,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.001166592000060973,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.0010966019999614218,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.0010142280000309256,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.001020340000025044,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.0010819339999557087,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0012702970000759706,
"tests/onegov/agency/test_api.py::test_view_api": 9.53449425399998,
"tests/onegov/agency/test_app.py::test_app_custom": 0.6672520120000058,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 0.656245470999977,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.6339219540000158,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6327157329999409,
"tests/onegov/agency/test_cli.py::test_create_pdf": 1.1782169520000139,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 1.545100251000008,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 0.6308976439999014,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.6863657970000077,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.7417558739999777,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 1.2789804460000482,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.7227075249999757,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.7116882920000194,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 0.6754446929999744,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6322345259999338,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.6676684420000356,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 0.6552954350000277,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.6811036360000458,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.6840145040000607,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.7151475329999926,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.6734843120000278,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.6954951479999636,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.6793943859999558,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.6545489920000023,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.6400836760000743,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.6307146970000304,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.6870904369999948,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.7145061279999823,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.6964317500000448,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.7159630230000289,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 0.7273040659999879,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.7257761989999949,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 0.9785610639999618,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.6599641540000221,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.003320982000047934,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.0014663220000556976,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.687757366000028,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.0015239100000030703,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6221738449999634,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.6477724920000014,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.6806461859999899,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.0024426909999419877,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.4776490379999814,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.0012032619999899907,
"tests/onegov/agency/test_import.py::test_parse_address_bs[M de H, H d V, B p 3, F-68333 H C-M de H<br>H d V<br>B p 3<br>F-68333 H C]": 0.0012554299999578689,
"tests/onegov/agency/test_import.py::test_parse_address_bs[Rg 16, PS 1532, 4001 Basel-Rg 16<br>PS 1532<br>4001 Basel]": 0.0015652069999987361,
"tests/onegov/agency/test_import.py::test_parse_address_bs[Rg 16, PS 1532,4001 Basel-Rg 16<br>PS 1532<br>4001 Basel]": 0.001192682999999306,
"tests/onegov/agency/test_import.py::test_parse_address_bs[Rg 16,PS 1532, 4001 Basel-Rg 16<br>PS 1532<br>4001 Basel]": 0.0011960669999666607,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.6675249839999537,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.0014360669999859965,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.0014233420000095975,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.0011645589999602635,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.001382024999998066,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.0011918289999925946,
"tests/onegov/agency/test_models.py::test_agency_move": 0.6612644829999681,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6403831489999448,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.655229998999971,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6386884770000165,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6443932889999928,
"tests/onegov/agency/test_models.py::test_extended_membership": 1.2549748910000176,
"tests/onegov/agency/test_models.py::test_extended_person": 0.6226258049999842,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.6574299119999978,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.6445718049999982,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6416771799999879,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.7590418449999561,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.8260256909999839,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.6903696680000166,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 0.6727313910000134,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.7222976209999388,
"tests/onegov/agency/test_pdf.py::test_pdf_page_break_on_level": 0.637811566000039,
"tests/onegov/agency/test_security.py::test_security_get_current_role": 0.6334912310000504,
"tests/onegov/agency/test_security.py::test_security_permissions": 3.680661320000013,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.6749129909999851,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.6990960339999788,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.6629990400000452,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.0012603870000020834,
"tests/onegov/agency/test_views.py::test_agency_map": 1.131089109999948,
"tests/onegov/agency/test_views.py::test_basic_search": 21.742705975999968,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 0.8816263859999367,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 0.7894547530000295,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.7056939419999821,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.753011936000064,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 12.033298830999968,
"tests/onegov/agency/test_views.py::test_view_mutations": 3.8597068709999576,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 0.9942950780000501,
"tests/onegov/agency/test_views.py::test_view_user_groups": 1.2893397369999207,
"tests/onegov/agency/test_views.py::test_views_general": 8.808509202999971,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 1.5143605380000054,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.426325377000012,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 0.922845845999916,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.9274650180000208,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.9027461599999356,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 0.9001388250000559,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.018869403999986,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.8871652330000188,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.8942499800000405,
"tests/onegov/api/test_integration.py::test_integration": 0.6324818900000082,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.6393157409999617,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6505253940000557,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6391794569999547,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.001574625000046126,
"tests/onegov/api/test_views.py::test_view_api": 1.1023032190000208,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[invalid.url.com]": 0.003724437000016678,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[url1]": 0.001814292999938516,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 0.4044680030000336,
"tests/onegov/ballot/collections/test_ballots.py::test_ballots": 0.5961493899999937,
"tests/onegov/ballot/collections/test_candidates.py::test_candidates": 0.6040585490001149,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_by_date": 0.6085272640000312,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_by_id": 0.6275459859999728,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_by_years": 0.6102798719999782,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_for_years": 0.6367027400000325,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_get_latest": 0.5998241930000177,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_get_years": 0.6140499470000691,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_pagination": 1.3215945340000417,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.61498256699997,
"tests/onegov/ballot/collections/test_election_compounds.py::test_elections_shortcode_order": 0.6197271370000408,
"tests/onegov/ballot/collections/test_elections.py::test_elections_by_date": 0.6301116549999506,
"tests/onegov/ballot/collections/test_elections.py::test_elections_by_id": 0.6050906109999801,
"tests/onegov/ballot/collections/test_elections.py::test_elections_by_years": 0.624405017000015,
"tests/onegov/ballot/collections/test_elections.py::test_elections_for_years": 0.612513813000021,
"tests/onegov/ballot/collections/test_elections.py::test_elections_get_latest": 0.6171780509999962,
"tests/onegov/ballot/collections/test_elections.py::test_elections_get_years": 1.4769802539999546,
"tests/onegov/ballot/collections/test_elections.py::test_elections_pagination": 1.3924141640000016,
"tests/onegov/ballot/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.6304371869999272,
"tests/onegov/ballot/collections/test_elections.py::test_elections_shortcode_order": 0.6339944459999742,
"tests/onegov/ballot/collections/test_lists.py::test_lists": 0.6115246090000142,
"tests/onegov/ballot/collections/test_votes.py::test_votes_by_date": 0.6207040840000104,
"tests/onegov/ballot/collections/test_votes.py::test_votes_by_id": 0.644126201000006,
"tests/onegov/ballot/collections/test_votes.py::test_votes_by_years": 0.633716934000006,
"tests/onegov/ballot/collections/test_votes.py::test_votes_for_years": 0.6189158860000248,
"tests/onegov/ballot/collections/test_votes.py::test_votes_get_latest": 0.6044566230000328,
"tests/onegov/ballot/collections/test_votes.py::test_votes_get_years": 0.6034884079999188,
"tests/onegov/ballot/collections/test_votes.py::test_votes_pagination": 1.7246319169999538,
"tests/onegov/ballot/collections/test_votes.py::test_votes_shortcode_order": 0.6209296570000902,
"tests/onegov/ballot/models/test_candidate.py::test_candidate": 0.6893668700000148,
"tests/onegov/ballot/models/test_candidate.py::test_candidate_percentages": 0.668770655000003,
"tests/onegov/ballot/models/test_election.py::test_election_attachments": 0.7742030790000172,
"tests/onegov/ballot/models/test_election.py::test_election_clear[False]": 0.6276919900000166,
"tests/onegov/ballot/models/test_election.py::test_election_clear[True]": 0.6519568100000583,
"tests/onegov/ballot/models/test_election.py::test_election_clear_results": 0.593036503999997,
"tests/onegov/ballot/models/test_election.py::test_election_counted": 0.6172123910000096,
"tests/onegov/ballot/models/test_election.py::test_election_create_all_models": 0.6541770660000452,
"tests/onegov/ballot/models/test_election.py::test_election_derived_properties": 0.593425113999956,
"tests/onegov/ballot/models/test_election.py::test_election_export": 0.9633673499999986,
"tests/onegov/ballot/models/test_election.py::test_election_has_results": 0.6010259419999784,
"tests/onegov/ballot/models/test_election.py::test_election_hybrid_properties": 0.6413700630000676,
"tests/onegov/ballot/models/test_election.py::test_election_id_generation": 0.6187208990000386,
"tests/onegov/ballot/models/test_election.py::test_election_last_modified": 0.7310887099998808,
"tests/onegov/ballot/models/test_election.py::test_election_meta_data": 0.6150692880000292,
"tests/onegov/ballot/models/test_election.py::test_election_rename": 0.8300809129999607,
"tests/onegov/ballot/models/test_election.py::test_election_results": 0.6171654159999775,
"tests/onegov/ballot/models/test_election.py::test_election_status": 0.62673433599997,
"tests/onegov/ballot/models/test_election.py::test_election_summarized_properties": 0.611342556000011,
"tests/onegov/ballot/models/test_election.py::test_related_elections": 0.6657663909999769,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_attachments": 1.0402325219999966,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_export": 1.0589751869999873,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_export_parties": 1.0287444859999368,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_historical_party_strengths": 0.6374633189999486,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_id_generation": 0.617864284999996,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_last_modified": 0.7738002390000247,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_manual_completion": 0.6323873320000075,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_model": 0.7058834309999042,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_rename": 0.8091942579999909,
"tests/onegov/ballot/models/test_election_compound.py::test_election_compound_supersegment_progress": 0.6683274069999925,
"tests/onegov/ballot/models/test_election_compound.py::test_related_election_compounds": 0.6526483720000442,
"tests/onegov/ballot/models/test_election_compound_part.py::test_election_compound_part_historical_party_strengths": 0.6540858869999511,
"tests/onegov/ballot/models/test_election_compound_part.py::test_election_compound_part_model": 0.6579679009999495,
"tests/onegov/ballot/models/test_list.py::test_list": 0.7236192629999323,
"tests/onegov/ballot/models/test_list.py::test_list_percentages": 0.6574669400000062,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_attachments": 0.7803785920000337,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_clear[False]": 0.6544318529999487,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_clear[True]": 0.6593681849999484,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_clear_results": 0.638194128000066,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_create_all_models": 1.5120833699999707,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_export": 1.0226318310001261,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_export_parties": 1.022253838999859,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_has_data": 0.6396796349999931,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_historical_party_strengths": 0.6729622839999365,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_rename": 0.8049435230000199,
"tests/onegov/ballot/models/test_proporz_election.py::test_proporz_election_results": 0.6871649580000394,
"tests/onegov/ballot/models/test_vote.py::test_ballot": 0.6547960139999986,
"tests/onegov/ballot/models/test_vote.py::test_ballot_answer_counter_proposal_wins": 0.6429534970000077,
"tests/onegov/ballot/models/test_vote.py::test_ballot_answer_counter_tie_breaker_decides": 0.6176486790001263,
"tests/onegov/ballot/models/test_vote.py::test_ballot_answer_nobody_wins": 0.6137324579999586,
"tests/onegov/ballot/models/test_vote.py::test_ballot_answer_proposal_wins": 0.618396783000037,
"tests/onegov/ballot/models/test_vote.py::test_ballot_answer_simple": 0.6338106829999788,
"tests/onegov/ballot/models/test_vote.py::test_ballot_hybrid_properties": 0.776923805000024,
"tests/onegov/ballot/models/test_vote.py::test_ballot_nobody_voted_right": 0.639676073999965,
"tests/onegov/ballot/models/test_vote.py::test_ballot_results_aggregation": 0.8034938139999213,
"tests/onegov/ballot/models/test_vote.py::test_clear_ballot": 0.6174945109999612,
"tests/onegov/ballot/models/test_vote.py::test_clear_vote": 0.6273429680000504,
"tests/onegov/ballot/models/test_vote.py::test_complex_vote": 0.6154917359999672,
"tests/onegov/ballot/models/test_vote.py::test_vote": 0.6216572679999786,
"tests/onegov/ballot/models/test_vote.py::test_vote_attachments": 0.866128887000059,
"tests/onegov/ballot/models/test_vote.py::test_vote_export": 1.3248722189999853,
"tests/onegov/ballot/models/test_vote.py::test_vote_has_results": 0.6223429990000113,
"tests/onegov/ballot/models/test_vote.py::test_vote_id_generation": 0.6508580459999962,
"tests/onegov/ballot/models/test_vote.py::test_vote_last_modified": 0.8290637889999743,
"tests/onegov/ballot/models/test_vote.py::test_vote_meta_data": 0.6080991579999591,
"tests/onegov/ballot/models/test_vote.py::test_vote_progress": 0.612530877000097,
"tests/onegov/ballot/models/test_vote.py::test_vote_rename": 0.7923059970000281,
"tests/onegov/ballot/models/test_vote.py::test_vote_results_by_district": 0.6437326679999842,
"tests/onegov/ballot/models/test_vote.py::test_vote_status": 0.6573206929999742,
"tests/onegov/chat/test_collection.py::test_collection_filter": 0.6380354320000379,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.668949231000056,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.6647813720000499,
"tests/onegov/chat/test_model.py::test_message_edited": 0.6324103630000195,
"tests/onegov/chat/test_model.py::test_message_file": 1.7485420870000894,
"tests/onegov/chat/test_model.py::test_message_order": 0.6450393119999944,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.6581887379999785,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.6452790399999344,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.6800343479999924,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.6455240220000178,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 0.68799963999993,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6389577210000539,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6512902950000239,
"tests/onegov/core/test_adjacency_list.py::test_move": 0.6474851409999474,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6379661909999754,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.65691093800001,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.001220400999955018,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.666147260999935,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.6454947449999509,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.0017530879999867466,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.0010508859999163178,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.011514629000032528,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.0012907240000004094,
"tests/onegov/core/test_cache.py::test_cache_flush": 1.0526479320000135,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.0036714220000249043,
"tests/onegov/core/test_cache.py::test_cache_key": 0.003401854000003368,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.011159662999943976,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 1.1380223429999887,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.0011476560000573954,
"tests/onegov/core/test_cache.py::test_redis": 0.003846423999959825,
"tests/onegov/core/test_cache.py::test_store_slots_redis": 0.0042313949999197575,
"tests/onegov/core/test_cli.py::test_create_command_default_selector[cli0]": 0.6579635079999662,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.029049245999999584,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.028587625000000116,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.029406205999919166,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 0.6451593330000378,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.02855069899993623,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.02444737799999075,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.04313083300002063,
"tests/onegov/core/test_cli.py::test_sendmail": 0.011550933000023633,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.0064612029999580045,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.005670025999961581,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.014181974999985414,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.02029307399999425,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.05288116800005582,
"tests/onegov/core/test_collection.py::test_pagination": 0.0013196579999998903,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.0010572779999620252,
"tests/onegov/core/test_converters.py::test_date_converter": 0.0017161590000114302,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.0011122610000029454,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0011641679999456755,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0010316589999774806,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.01812678299995696,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0009903730000360156,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.5712332069999775,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0010832660000232863,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.6007785509999621,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.8725571979999813,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.0009778189999565257,
"tests/onegov/core/test_crypto.py::test_random_password": 0.0020849899999575428,
"tests/onegov/core/test_crypto.py::test_random_token": 0.0011569440000016584,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0012522709999416293,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0009612979999928939,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.0010043580000456132,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.0010158910000086507,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.0009654670000145416,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.008801051000034477,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.012838702000010471,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009119576999978563,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.04045062400001598,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.015568115999940346,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.07447827500016047,
"tests/onegov/core/test_csv.py::test_convert_xls_to_csv_wrong_format": 0.0012377949999518023,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0015389879999361256,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0013850399999455476,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.001714015000004565,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.0009610260000272319,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.0009693329999436173,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.0009766450000370241,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.0010723059999691031,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0010041680000654196,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.0009814949999622513,
"tests/onegov/core/test_csv.py::test_parse_header": 0.0022336879999897974,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.0009398690000352872,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.0014511940000261347,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.0013955200000168588,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.0011877820000449901,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0012929170000006707,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.0009496860000126617,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0009879170000317572,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.0009477639999317944,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.0010214600000040264,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.000990341999965949,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.0009511590000670367,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.00138042100002167,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.0017591900000297755,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6183399099999747,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.6603938430000085,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.6190947690000144,
"tests/onegov/core/test_directive.py::test_form_directive": 0.028115803000048345,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.01645314199998893,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.7490443229999642,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.648970472999963,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.6530638399999589,
"tests/onegov/core/test_elements.py::test_link": 0.7029355879999457,
"tests/onegov/core/test_elements.py::test_link_slots": 0.0012596850000363702,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.039637792999997146,
"tests/onegov/core/test_filestorage.py::test_independence": 0.005808252999997876,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.16563568399993756,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.014581120000002556,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.026932562000069993,
"tests/onegov/core/test_framework.py::test_configure": 0.002378858000042783,
"tests/onegov/core/test_framework.py::test_csrf": 0.04891910299994606,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.0019907240000520687,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0014020419999951628,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.003028944999982741,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.017166236999969442,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.014861205000045175,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.02547964600000796,
"tests/onegov/core/test_framework.py::test_get_form": 0.015121872999998232,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.016555384000014328,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.0011364160000084667,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.011389290999943569,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.612164029999974,
"tests/onegov/core/test_framework.py::test_request_messages": 0.017633661000047596,
"tests/onegov/core/test_framework.py::test_send_email": 0.002614831000016693,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.002701432999970166,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.04007464300002539,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.002291275000004589,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.26993527700000186,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.0038153849999957856,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0019512399999825902,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.36974391200004675,
"tests/onegov/core/test_framework.py::test_send_sms": 0.002204293999966467,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.003242383999975118,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.262914416000001,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.6248231830000464,
"tests/onegov/core/test_framework.py::test_session_nonce_request": 0.024076561000015317,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.001997426000059477,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.0012656570000331158,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.017728090999924007,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0015696249999450629,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.0010618669999189478,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.001141525000036836,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.001119883999990634,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.0040405569999393265,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.0010271820000298248,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.0019032089999768687,
"tests/onegov/core/test_layout.py::test_batched": 0.003357339000046977,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.0014219800000319083,
"tests/onegov/core/test_layout.py::test_format_number": 0.0011937630000034005,
"tests/onegov/core/test_layout.py::test_relative_date": 0.0013744010000777962,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.0015313339999920572,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.0020778169999289275,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.001130764000038198,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.001484697000023516,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.002121867999960614,
"tests/onegov/core/test_metadata.py::test_metadata": 0.015729137999983323,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.1787561839999512,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.28735521700002664,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.3983293600000479,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.5136234529999228,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.6286819389999891,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.7495530299999587,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.8658207420000394,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.9764555119999727,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.10325053899993,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.09195577599996341,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.11217862000000878,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.09730134099999077,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.09923165600002903,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.05603924100000768,
"tests/onegov/core/test_orm.py::test_content_properties": 0.050974479999979394,
"tests/onegov/core/test_orm.py::test_create_schema": 0.04867976599996382,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.056227384999999686,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.05964639299997998,
"tests/onegov/core/test_orm.py::test_find_models": 0.0026092999999605127,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.004834592000008797,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.09615770200002771,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.07234653000000435,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.0750736009999855,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.06323442400002932,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.030523167999945144,
"tests/onegov/core/test_orm.py::test_json_type": 0.058821928000043044,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.05143281900001284,
"tests/onegov/core/test_orm.py::test_markup_text": 0.05482121899996173,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.07743085500004554,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.06284772199995814,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.08178404400001682,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.06379130000004807,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.04662795899997718,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.06664437699998871,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.05766560999995818,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.599950660999923,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.03766371900002241,
"tests/onegov/core/test_orm.py::test_request_cache": 0.06857583300001124,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.0678103770000007,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.06156094100003884,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.05495216599996411,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.6536109190000161,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 0.6708005900000558,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 1.4557768690000898,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.16614608599996927,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.07296534400001065,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.05139647199996489,
"tests/onegov/core/test_orm.py::test_session_scope": 0.04304583900000125,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.06525407900005575,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.05591763400008176,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.05139991200002214,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.04719482899997729,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.045204036000029646,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.0466578589999358,
"tests/onegov/core/test_request.py::test_has_permission": 0.023265363999939837,
"tests/onegov/core/test_request.py::test_link_with_query_parameters": 0.019988585999840325,
"tests/onegov/core/test_request.py::test_link_with_query_parameters_and_fragement": 0.013759294000010414,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.03214642500000764,
"tests/onegov/core/test_request.py::test_return_to": 0.015821693000020787,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.0014451220000069043,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03500976999998784,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.0010296359999415472,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.01690553900004943,
"tests/onegov/core/test_security.py::test_forget": 0.02209400899994307,
"tests/onegov/core/test_security.py::test_personal_access": 0.019120871999973588,
"tests/onegov/core/test_security.py::test_private_access": 0.022586455999942245,
"tests/onegov/core/test_security.py::test_secret_access": 0.022514800000010382,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.014440097999965928,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.7517568170000004,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.7555650839999544,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.75213855100003,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.7493573500000252,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.7332936789999849,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 0.9912761840000144,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.7425109520000319,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.0018726010000591486,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.01056122500000356,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.0032601049999243514,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.0012147910000521733,
"tests/onegov/core/test_static.py::test_root_file_app": 0.01866461999998137,
"tests/onegov/core/test_static.py::test_static_file": 0.016140198000016426,
"tests/onegov/core/test_static.py::test_static_file_app": 0.023240136000083567,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.03420647000007193,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.16663206999999147,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.03961492800004862,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.04874806999998782,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.07029360500001758,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0015217049999591836,
"tests/onegov/core/test_theme.py::test_theme_application": 0.023700879000045916,
"tests/onegov/core/test_translation_string.py::test_escape": 0.0009878970000158915,
"tests/onegov/core/test_translation_string.py::test_html": 0.0009687699999858523,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.001045264000026691,
"tests/onegov/core/test_translation_string.py::test_init": 0.0012229369999658957,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.0009556279999856088,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0009812220000071648,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.0010299359999521585,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.001051365000023452,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0009885779999763145,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.0010275209999122126,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.0012982989999841266,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.0010203669999668818,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 1.7936089799999877,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.421604281999919,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0010165199999505603,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.001045604999887928,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.0012145609999265616,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0010957779999785089,
"tests/onegov/core/test_utils.py::test_batched": 0.0009987079999973503,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0010597219999795016,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.002692535000051066,
"tests/onegov/core/test_utils.py::test_bunch": 0.0010503450000669545,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0011487669999610262,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.05934996900003853,
"tests/onegov/core/test_utils.py::test_increment_name": 0.001048010999966209,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0010440230000199335,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.001007643999969332,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.0012712089999808995,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.0010411779999799364,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.0010703209999292085,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.5040841649999948,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.006739996999954201,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.0029102540000280896,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.0024147969999717134,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.0030384320000393927,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0016497650000246722,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.0018174690000023475,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.0014558820000161177,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.019996370000001207,
"tests/onegov/core/test_utils.py::test_local_lock": 0.001283010000008744,
"tests/onegov/core/test_utils.py::test_module_path": 0.0013449349999632432,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.0011830920000193146,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.001093505999961053,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.0010847689999309296,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.0012004350000438535,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.0011322379999683108,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.0010930049999728908,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.001122199000008095,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.0011099849999709477,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.0011375569999927393,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0011332280000146966,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.001193062000027112,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0011235909999527394,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.0011409250000156135,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.0011849460000235013,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.001141143999916494,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0011565749999817854,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.0011546200000225326,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.0011700279999331542,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.001158357999997861,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.001118402000088281,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.0011237320000532236,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0011016509999421942,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.0011379980000469914,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.0011413630000447483,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0011483380000640864,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.0029024489999756042,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.001085862000081761,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0011373079999543734,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0011100169999735954,
"tests/onegov/core/test_utils.py::test_post_thread": 0.6740139930000169,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.0011314270000184479,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.0011373179999623062,
"tests/onegov/core/test_utils.py::test_safe_format": 0.001255667999942034,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.006542064999962349,
"tests/onegov/core/test_utils.py::test_touch": 0.0016806220000376015,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.0010117019999711374,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0010168109999995067,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.0011584260000176982,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.0013373619999015318,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.0011820210000337283,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.0011894250000068496,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.001097292999986621,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.0011265470000125788,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.0013249179999661465,
"tests/onegov/directory/test_archive.py::test_archive_create": 0.7923612970000704,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.8216720469999927,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 0.7982089869998958,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.7943169810000086,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.7676028340000016,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 1.0116942860000222,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.7378736449999792,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.7543114459999742,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.7505848690000221,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.7668025860000398,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.0066033269999365984,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.0038729910000370182,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.004578911999999491,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.004370944000072541,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.001929598000003807,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.009005037999997967,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.009695408999903066,
"tests/onegov/directory/test_migration.py::test_directory_migration": 0.9337122399999771,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.002675022999937937,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011120252999944569,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.7136644099999216,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.7270112289999702,
"tests/onegov/directory/test_orm.py::test_custom_order": 0.9429550230000245,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.7056147719999899,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.010114895000015167,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 0.8508302480000793,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.6744138750000275,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.6810473089999505,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.7043020269999829,
"tests/onegov/directory/test_orm.py::test_files": 1.0122801029999664,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.8009152820000054,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 0.8646246360000305,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.7234767060000991,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 0.8478286169999478,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.9202394900000286,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 0.8513488670000129,
"tests/onegov/directory/test_orm.py::test_multi_files": 1.922478773000023,
"tests/onegov/directory/test_orm.py::test_validation_error": 0.6876973420000354,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 0.9661526520000052,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.8816971569999623,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.8742329159999827,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.6842782209999996,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.6651925459999575,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.6793105270000979,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.7100773950000416,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.6679039969999963,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.6618326580000371,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.7043720689999873,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.6856417800000258,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.6806583680000244,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.6905432700000347,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.657436969999992,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.6786681519999433,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.6689917059999857,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.674142975000052,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.3903796409999813,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.686347398999942,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.6797156350000932,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.6709125819999144,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.6611104189998969,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.6897642599999472,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.6726378770000565,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.7014012429998502,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.6904890370000203,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.420147414999974,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.65956615399989,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.694770225999946,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 0.6725937060000433,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 0.8979983230000244,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.9007025050000266,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 1.7084828749999588,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 0.7607324000000517,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.6856990349999705,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.8224180779999415,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 0.8994333780000261,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.1908511729999418,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.6750774130000536,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.7224046610000414,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.6922947320000503,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 0.834520861999863,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 1.483079609000015,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 1.3614960629998905,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 0.883813820000114,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.6721465079998552,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.6962818350000362,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.6760730450000665,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.6740913680000631,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.7110585000000356,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.6842812849999973,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.6915911199999982,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.6894421190000912,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 1.6794608180000523,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.7104705150001109,
"tests/onegov/election_day/formats/election/test_internal_compound.py::test_import_internal_compound_expats": 1.2687625480000406,
"tests/onegov/election_day/formats/election/test_internal_compound.py::test_import_internal_compound_invalid_values": 1.0204337730000361,
"tests/onegov/election_day/formats/election/test_internal_compound.py::test_import_internal_compound_missing_headers": 1.0333607600000505,
"tests/onegov/election_day/formats/election/test_internal_compound.py::test_import_internal_compound_regional_gr": 32.42329661800011,
"tests/onegov/election_day/formats/election/test_internal_compound.py::test_import_internal_compound_temporary_results": 1.3686660550000624,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 1.1280211750000717,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_expats": 1.0502098110000588,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.9848861660000239,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 1.0020468509999318,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 1.113756837999972,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 1.1479367270000012,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 1.0594329209999387,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_regional": 1.1246484490000057,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 1.0649293309999166,
"tests/onegov/election_day/formats/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.9743911760000401,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 45.0166440480001,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.9484442739999395,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_expats": 1.1418029369998521,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 1.041256843000042,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 1.0498482430000422,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 1.5143939159999036,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_regional": 1.2715093300000717,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 1.4858618069998784,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 1.0644606420001992,
"tests/onegov/election_day/formats/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 1.049640085999954,
"tests/onegov/election_day/formats/election/test_parties.py::test_import_party_results": 1.1208201130000361,
"tests/onegov/election_day/formats/election/test_parties.py::test_import_party_results_domains": 1.2749321459998555,
"tests/onegov/election_day/formats/election/test_parties.py::test_import_party_results_fixtures": 1.1161605150000469,
"tests/onegov/election_day/formats/election/test_parties.py::test_import_party_results_invalid_values": 1.0398825469997064,
"tests/onegov/election_day/formats/election/test_parties.py::test_import_party_results_missing_headers": 1.0629622379999546,
"tests/onegov/election_day/formats/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 4.843042225999852,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_cantonal_complete": 1.3015294559997983,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_cantonal_simple": 1.2629192660001536,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_expats": 1.1293500910001057,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_invalid_values": 0.9831247179999991,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_missing_headers": 0.9734494189999623,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_municipal": 1.13250069899982,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_regional": 1.1976449779999712,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_regional_sg": 1.067224417000034,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_temporary_results": 1.023133510000207,
"tests/onegov/election_day/formats/election/test_wabsti_majorz.py::test_import_wabsti_majorz_utf16": 1.0084257039998192,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_cantonal": 2.1183220349996645,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_cantonal_complete": 2.232339839999895,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_expats": 1.1984566459998405,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_invalid_values": 0.9583721969997896,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_missing_headers": 1.016931060999923,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_regional": 1.2684064959998977,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_regional_sg": 9.045546006999984,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_temporary_results": 1.1074715999995988,
"tests/onegov/election_day/formats/election/test_wabsti_proporz.py::test_import_wabsti_proporz_utf16": 0.9790927849999207,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_intermediate": 1.0378148429999783,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 1.3051483730000655,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 1.1800688519999767,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 1.0283744489997844,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.9640106900001228,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 1.2561732149997624,
"tests/onegov/election_day/formats/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 1.056383649999816,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.0033693979996769485,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 6.095676970999875,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 1.363873548000356,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 1.1415928960000201,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 1.0460466079998696,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 1.3201811540000108,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 5.84340691400007,
"tests/onegov/election_day/formats/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 1.1257373750001989,
"tests/onegov/election_day/formats/exports/test_export_election_compound_internal.py::test_election_compound_export": 0.7448338220000323,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.6861369330000571,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.7419925849999345,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.7079045779998978,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.6840239600001041,
"tests/onegov/election_day/formats/exports/test_export_vote_ech_0252.py::test_vote_export_ech_0252": 0.769431223999959,
"tests/onegov/election_day/formats/exports/test_export_vote_internal.py::test_vote_export_internal": 0.689887184999975,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 0.8650471849998667,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 38.450541168000086,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.75436136299993,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.6992510739999034,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.6748351719999164,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.6793476809999675,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.707841468999959,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7254735100000289,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.6904817949999824,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 0.8216820829999278,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.7283096260000548,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.722885344000133,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 24.782912047999957,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.1458930210000062,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.7563055409999606,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.6892155929999717,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.6849471170000925,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 0.9652373259999649,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.8363498170000412,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 0.8254819719999205,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.6884026940000467,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.6789270240000178,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 2.665212426999915,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_cantonal_complete": 0.7931004690000236,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_cantonal_simple": 0.7919624069998008,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_expats": 0.6744694740000341,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_invalid_values": 0.6078493540001091,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_missing_headers": 0.6085875109998824,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_municipal": 0.6390284759999076,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_regional": 0.6870546979999972,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_regional_sg": 0.6440911870000718,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_temporary_results": 0.6286600660000659,
"tests/onegov/election_day/formats/imports/election/test_wabsti_majorz.py::test_import_wabsti_majorz_utf16": 0.6028714980000132,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_cantonal": 1.2245731010000327,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_cantonal_complete": 1.2583469209998839,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_expats": 1.849857042999929,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_invalid_values": 0.6220355489999747,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_missing_headers": 0.6269971919999762,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_regional": 0.7392839679999952,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_regional_sg": 4.027346351999995,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_temporary_results": 0.6712954610001134,
"tests/onegov/election_day/formats/imports/election/test_wabsti_proporz.py::test_import_wabsti_proporz_utf16": 0.5890696599999501,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_intermediate": 0.7314571189999697,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.8167378550000421,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.813336933999949,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.6729589139999916,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.6693860249999943,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.8002652900001976,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.7400943509998115,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.0014991049999935058,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 3.405030786999987,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.9485345219999317,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.6870650459999297,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.6797866450001493,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 0.9265554540000949,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 2.9698048229998903,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.8315353460000097,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 0.9033552160001364,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.6961618160000853,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 1.8315368929999067,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 15.784674147999908,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 0.905015824999964,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal": 0.7186935429999721,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_domains": 0.7162244679998366,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.6860639949998131,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.6932137940000302,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 0.6842362329999787,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.6976098200000251,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.0022738760000038383,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.6750956769999448,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xls]": 0.6771590099999685,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xlsx]": 0.6838280469997926,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xls]": 0.6641387439999562,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xlsx]": 0.6818058570000858,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xls]": 0.6863573509999696,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xlsx]": 0.6943077799999173,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xls]": 1.274840250000011,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xlsx]": 1.038323934999994,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xls]": 1.0273593680000204,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xlsx]": 1.0449862970000368,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xls]": 0.9277276599998459,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xlsx]": 1.4510653549998551,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xls]": 0.6729719869998689,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xlsx]": 0.6833152099999324,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xls]": 0.6738464029999705,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xlsx]": 0.6681536420001066,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xls]": 1.5967159609999726,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xlsx]": 1.265253754000014,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xls]": 1.4443465799998876,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xlsx]": 1.0654201789999433,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote": 0.7563227740000684,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_expats": 0.6252180059999546,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_invalid_values": 0.6304913110000143,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_missing_headers": 0.5952316539998037,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_regional": 0.6316621229999555,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_temporary_results": 0.6139841760000309,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252.py::test_import_vote_ech_0252": 0.8403018010000096,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252.py::test_import_vote_ech_0252_complex": 1.0337026669999432,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252_vote.py::test_import_ech_vote_gr": 1.5075369159999354,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote": 0.9802785760000461,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_expats": 0.6577730159999646,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.6497673169999416,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.6757081679999146,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.650894512999912,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.6942078870000614,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.7429705509999849,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.6701704180001116,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote": 1.2990054719998625,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_expats": 0.6197680000001355,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_invalid_values": 0.6018311130000029,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_missing_headers": 0.6160730860000285,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_regional": 0.6104917989999876,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_temporary_results": 0.6085326750001059,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_utf16": 0.58553270099992,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote": 0.9764582990000008,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.8043210280000039,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.6772981309999295,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.6684756150000339,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.6690370170001643,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 0.7127939799999012,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote": 0.6462497869999879,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_expats": 1.825287325999966,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_invalid_values": 0.5968518159999121,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_missing_headers": 0.5944721679999247,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_utf16": 0.6045590929999207,
"tests/onegov/election_day/formats/test_common.py::test_load_csv": 0.006554592999918896,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_errors": 1.06741217900003,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xls]": 1.030014716000096,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xlsx]": 1.0538793959999566,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xls]": 1.0009232429999884,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xlsx]": 1.0683896820000882,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xls]": 2.7293045889999803,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xlsx]": 1.035144812999988,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xls]": 1.0127612349999708,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xlsx]": 1.0941996569999901,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xls]": 0.9928529529998968,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xlsx]": 0.9930357539999477,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote": 1.2283119640001132,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_expats": 1.1060629309997694,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_invalid_values": 0.9716190920000827,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_missing_headers": 1.0948873790002835,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_regional": 1.1980966809996971,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_temporary_results": 3.111192409000296,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote": 1.2975727870000355,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_expats": 1.0566060539999853,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_invalid_values": 1.1138228269999217,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_missing_headers": 1.1011465740002677,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_optional_columns": 1.1442550239999036,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_regional": 1.1099619359999906,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_temporary_results": 1.1757185140002093,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote": 2.443375398999933,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_expats": 1.104504401000213,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_invalid_values": 1.065523113000154,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_missing_headers": 1.0921629039999061,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_regional": 1.0229018230002112,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_temporary_results": 1.0637634130000606,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_utf16": 1.0908429499997965,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote": 1.9165550820002863,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_expats": 1.1931877350000377,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 1.0295071169998664,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 1.0986195020000196,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_regional": 1.008344715000021,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 1.078931822999948,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote": 1.12305162700045,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote_expats": 0.9320347109999148,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote_invalid_values": 0.9979424190000827,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote_missing_headers": 0.9985395140001856,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote_temporary_results": 0.6646070330000384,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote_utf16": 1.0117920150000828,
"tests/onegov/election_day/formats/vote/test_xml.py::test_import_xml_vote": 1.2964380550001806,
"tests/onegov/election_day/formats/vote/test_xml.py::test_import_xml_vote_complex": 1.6991441029999805,
"tests/onegov/election_day/forms/test_archive_search_form.py::test_apply_model_archive_search_form": 0.6660230200000115,
"tests/onegov/election_day/forms/test_common_forms.py::test_change_id_form": 0.6700659449999193,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_form": 0.005884483000045293,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form": 0.0014137059998802215,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form_populate": 0.6617790910000849,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_model": 1.1757975419998274,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_on_request": 0.7350670069998841,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_relations": 0.7383084660001487,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_validate": 0.8955806530000245,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_model": 0.8546877260001793,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_on_request": 0.7219473380000636,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_relations": 0.7560850949998894,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_validate": 0.8521674180000218,
"tests/onegov/election_day/forms/test_notification_form.py::test_notification_form": 0.0015172409999877345,
"tests/onegov/election_day/forms/test_notification_form.py::test_notifications_form": 0.7582909160000781,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_populate": 0.7021294219998708,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_update_apply": 1.9042202119999274,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_validate": 0.7126363989999618,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_email_subscription_form": 0.0022486990001198137,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_sms_subscription_form": 0.0036980710001444095,