-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.test_durations
2935 lines (2935 loc) · 291 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.0684030530000257,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.002185542999967538,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 3.8892670840000108,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.8911191919999624,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.011529367000008506,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9097678359999861,
"tests/onegov/activity/test_matching_db.py::test_alignment": 0.9294622170000082,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.9129683740000019,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 0.9502695770000003,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 0.9296279619999837,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 0.9504756009999937,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 0.9173501359999818,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.1657547969999769,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 0.9482514809999998,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 0.9634162990000164,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 0.9448029309999981,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.1771188669999901,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.1883420759999979,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 0.9235323629999925,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 0.955007251000012,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.0011094399999933557,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.0012742060000050515,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.0026439350000089235,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.002514623000024585,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.0013685740000255464,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0012393020000445176,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.0013418039999635312,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.0009867619999965882,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.0017965119999701074,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.0020876259999909053,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.0010817490000079033,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.0009251369999674353,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0009203479999939645,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.000881224000011116,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.000901842999951441,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.6114538999999866,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.001961160000007567,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0009931030000132068,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.0867092439999908,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.6863947189999919,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 0.9451277599999912,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.001109130000031655,
"tests/onegov/activity/test_models.py::test_activity_order": 0.9194329000000039,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 0.9671162010000103,
"tests/onegov/activity/test_models.py::test_activity_states": 0.9105303939999772,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.9047753799999896,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 1.319677903000013,
"tests/onegov/activity/test_models.py::test_add_activity": 0.8974376800000243,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6504083779999803,
"tests/onegov/activity/test_models.py::test_archive_period": 0.9103394610000066,
"tests/onegov/activity/test_models.py::test_attendee_age": 1.0718296400000042,
"tests/onegov/activity/test_models.py::test_attendees_count": 0.964419190999962,
"tests/onegov/activity/test_models.py::test_booking_collection": 0.9154583869999726,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 0.9660620029999905,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 0.9181163519999984,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.1398602470000014,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 0.9342866769999887,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.9150805849999983,
"tests/onegov/activity/test_models.py::test_confirm_period": 0.9288816990000157,
"tests/onegov/activity/test_models.py::test_date_changes": 0.9176112930000215,
"tests/onegov/activity/test_models.py::test_deadline": 0.9023150179999959,
"tests/onegov/activity/test_models.py::test_happiness": 0.9465442519999954,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.9061139070000195,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.0009712620000073002,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0011753229999840187,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.0009278010000173254,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.8988344230000109,
"tests/onegov/activity/test_models.py::test_invoices": 0.9076912929999992,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.6710674599999606,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.9414515720000054,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 0.9207801720000077,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 0.9360904420000224,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 1.3463565989999893,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9688614469999663,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 0.6819138410000392,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 0.6482562869999811,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 0.6523661170000139,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.6320782210000004,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.6808794720000151,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.6732280880000019,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.0026854350000178,
"tests/onegov/activity/test_models.py::test_occasion_duration": 0.9804894000000104,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 0.9441337560000136,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.9549523840000234,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.1973204809999913,
"tests/onegov/activity/test_models.py::test_occasions": 0.9002544690000036,
"tests/onegov/activity/test_models.py::test_period_phases": 0.9109023899999613,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.11008899000000838,
"tests/onegov/activity/test_models.py::test_profiles": 0.9558533980000163,
"tests/onegov/activity/test_models.py::test_publication_request": 0.9268788320000283,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 0.9436949740000102,
"tests/onegov/activity/test_models.py::test_timeline_filter": 1.0049486979999926,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.9066087650000156,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.001068304000000353,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.000965932000013936,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.0012004499999989093,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.001431871000022511,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.001026606000010588,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.001334108999998307,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.0012112800000068091,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0013165270000001783,
"tests/onegov/agency/test_api.py::test_view_api": 9.458163447000004,
"tests/onegov/agency/test_app.py::test_app_custom": 0.6425345660000232,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 0.6416100090000327,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.6314695829999835,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6276494060000175,
"tests/onegov/agency/test_cli.py::test_create_pdf": 1.1648623590000113,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 2.087258107999986,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 0.6290172509999934,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.682595249999963,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.7079593349999982,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 0.6950066040000138,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.7067567419999818,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.6899090000000001,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 0.6498815100000002,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6342720689999908,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.6677460580000059,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 0.6546448770000097,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.6971803919999786,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.7047904119999941,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.6909246880000239,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.7094151789999898,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.6854339440000103,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.68839078299996,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.6855631940000251,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.669888745999998,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.6761811419999901,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.7274340260000258,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.7145148879999965,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.72631098399998,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.7238232610000068,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 1.3546527909999782,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.7706180790000019,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 0.9864062990000093,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.6746321350000244,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.0033632390000093437,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.001453503999982786,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.711367983999935,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.0015064809999785211,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6290617000000225,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.669010113000013,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.6845102960000418,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.0024155700000392244,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.473535886000036,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.0012189150000381233,
"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.0012569170000347185,
"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.0016105670000001737,
"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.0011963850000142884,
"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.0011874569999577034,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.661857436000048,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.0013831729999651543,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.001460976999965169,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.0011218950000966288,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.001397098999973423,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.0011991679999709959,
"tests/onegov/agency/test_models.py::test_agency_move": 0.6789612140000258,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6429419940000116,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.6802738579999641,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6512169499999914,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6322827459999871,
"tests/onegov/agency/test_models.py::test_extended_membership": 0.6724608379999495,
"tests/onegov/agency/test_models.py::test_extended_person": 0.6484882470000457,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.6538755400000014,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.6456161709999719,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6648697949999587,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.7614151220000736,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.847372058000019,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.7171285260000673,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 0.6838574180000023,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.7948935410000217,
"tests/onegov/agency/test_pdf.py::test_pdf_page_break_on_level": 0.6412804439999604,
"tests/onegov/agency/test_security.py::test_security_get_current_role": 0.6359722179999494,
"tests/onegov/agency/test_security.py::test_security_permissions": 3.712543511999968,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.6811190910000278,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.7281866229999423,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.6804963700000144,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.001286699999980101,
"tests/onegov/agency/test_views.py::test_agency_map": 0.8561383440000441,
"tests/onegov/agency/test_views.py::test_basic_search": 36.21515175300004,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 0.9075559899999917,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 0.8192347190000078,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.7010350109999877,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.7556312100000468,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 12.028520807000007,
"tests/onegov/agency/test_views.py::test_view_mutations": 3.0635176399999864,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 0.9560924970000997,
"tests/onegov/agency/test_views.py::test_view_user_groups": 2.080558430999986,
"tests/onegov/agency/test_views.py::test_views_general": 9.59552240499994,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 1.582178841999962,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.4275024809999763,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 0.9343985620000694,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.9210133600000177,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.9590349270000047,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 0.9091566819999457,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.0171498309999834,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.9034484110000562,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.9162341600000445,
"tests/onegov/api/test_integration.py::test_integration": 0.6562012169999889,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.6203447539999729,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6351205810000238,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6363434020000227,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.0016590560000508958,
"tests/onegov/api/test_views.py::test_view_api": 1.0957703450000622,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[invalid.url.com]": 0.0043429360000004635,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[url1]": 0.0019744759999298367,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 0.5102100479999763,
"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.6500710519999302,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.6440561519999619,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.6293296939999777,
"tests/onegov/chat/test_model.py::test_message_edited": 0.6289967860000161,
"tests/onegov/chat/test_model.py::test_message_file": 0.9618366490000199,
"tests/onegov/chat/test_model.py::test_message_order": 0.6361242129999027,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.6391484100000184,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.6533698499999332,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.6674668810000526,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.6548455920001288,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 0.6482244320000063,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6459986649999792,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6375039600000605,
"tests/onegov/core/test_adjacency_list.py::test_move": 0.6436369959999411,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6510072200000536,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.664973386999975,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.0012449840000385848,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.6582694809999907,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.649545331000013,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.0019387990000154787,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.0010466840000162847,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.012272808999910012,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.0011783999999579464,
"tests/onegov/core/test_cache.py::test_cache_flush": 1.087110495999923,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.004254767000020365,
"tests/onegov/core/test_cache.py::test_cache_key": 0.0037768480000295312,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.011823547999995299,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 1.1961824289999754,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.001386447000015778,
"tests/onegov/core/test_cache.py::test_redis": 0.004152101999977731,
"tests/onegov/core/test_cache.py::test_store_slots_redis": 0.003790996000020641,
"tests/onegov/core/test_cli.py::test_create_command_default_selector[cli0]": 0.6637618019999536,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.029145206000009694,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.02971169799997142,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.029816094999944198,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 0.639286114000015,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.02888685099998156,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.024734313000067232,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.04293566799998416,
"tests/onegov/core/test_cli.py::test_sendmail": 0.0114800780000337,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.006060370999989573,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.005679179999958706,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.013848570000050131,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.02024112100008324,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.049238977999948474,
"tests/onegov/core/test_collection.py::test_pagination": 0.0012310989999946287,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.0010288800000353149,
"tests/onegov/core/test_converters.py::test_date_converter": 0.0015697980000481948,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.0011134289999858993,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0011389959999519306,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0010312839999642165,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.018791516000021602,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0011576819999845611,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.5467710150000471,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0012708809999821824,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.6004178700000011,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.8722799290000012,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.001020578000009209,
"tests/onegov/core/test_crypto.py::test_random_password": 0.002035858999931861,
"tests/onegov/core/test_crypto.py::test_random_token": 0.0012186280000037186,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0012967350000394617,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0009335360000477522,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.001037381000003279,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.001083837000010135,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.0010251280000375118,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.008510600999954931,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.013437217000046076,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009249593000049572,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.04061715500000673,
"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.0012854340000103548,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0015680420000308004,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0013534709999589722,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.0017754510000145274,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.0010071540000922141,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.0010117920000425329,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.000998025999933816,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.0011222299999644747,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0010218220000410838,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.0010385340000311771,
"tests/onegov/core/test_csv.py::test_parse_header": 0.0023853740000276957,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.0009831899999994675,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.0015039130000218393,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.00143510499998456,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.0012018280000347659,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0013661559999604833,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.001024926999946274,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0009741419999613754,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.000975896000056764,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.001039483000056407,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.001039384999955928,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.0009830100000272068,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.0013797409999369847,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.001772193000022071,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6140517569999702,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.6251834760000179,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.6559382290000713,
"tests/onegov/core/test_directive.py::test_form_directive": 0.028246941000020342,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.0174126549999869,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.7354266470000539,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.6691603800000507,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.674986279000052,
"tests/onegov/core/test_elements.py::test_link": 0.7284586050000144,
"tests/onegov/core/test_elements.py::test_link_slots": 0.0011638530000368519,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.039650384000026406,
"tests/onegov/core/test_filestorage.py::test_independence": 0.00575231100003748,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.16842447200002653,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.01662261199993509,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.027843114000006608,
"tests/onegov/core/test_framework.py::test_configure": 0.0024238569999965875,
"tests/onegov/core/test_framework.py::test_csrf": 0.049269377000086934,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.001767310000047928,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0012069149999547335,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.003087225000001581,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.016606190000004517,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.017479463000029227,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.02581019199999446,
"tests/onegov/core/test_framework.py::test_get_form": 0.016657095999960347,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.0168105039999773,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.0011969049999720482,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.010596618000022318,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.6492833410000003,
"tests/onegov/core/test_framework.py::test_request_messages": 0.019762104999927033,
"tests/onegov/core/test_framework.py::test_send_email": 0.0026755369999591494,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.002425689999995484,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.0188595290000535,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.002394350000031409,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.27111792899995635,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.0038199200000690325,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0018427240000278289,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.3689737210000317,
"tests/onegov/core/test_framework.py::test_send_sms": 0.0021074889999681545,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.0031933790000380213,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.2649804720000475,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.63618215799994,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.0020045229999823277,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.00132160800001202,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.017677205000040885,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0015068459999838524,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.0010681459999659637,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.001172381999992922,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.0011888519999843083,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.004048347000036756,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.001043279999976221,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.001911742000004324,
"tests/onegov/core/test_layout.py::test_batched": 0.001164206000055401,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.0013823320000483363,
"tests/onegov/core/test_layout.py::test_format_number": 0.0012542740000185404,
"tests/onegov/core/test_layout.py::test_relative_date": 0.0014155350000351063,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.0016406169999640952,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.002228285999990476,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.0011316749999537024,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.0015134490000150436,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.00211923099999467,
"tests/onegov/core/test_metadata.py::test_metadata": 0.014643200000023171,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.17856292300001542,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.2897561519999954,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.4042901900000402,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.5151544120000153,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.632126405000065,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.7380141269999854,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.861128423000082,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.9677194510000504,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.0970127300000172,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.0931297830000517,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.10713349799993921,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.09593537799992191,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.0909151900000893,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.05115044099994748,
"tests/onegov/core/test_orm.py::test_content_properties": 0.0496927169999708,
"tests/onegov/core/test_orm.py::test_create_schema": 0.049364431000014974,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.056513212999959705,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.057375682000042616,
"tests/onegov/core/test_orm.py::test_find_models": 0.003972218000001249,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.0036061250000898326,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.9413443550000125,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.07644485299999815,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.07277177299994264,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.06161369400007288,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.028957155999989936,
"tests/onegov/core/test_orm.py::test_json_type": 0.05672083899992231,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.047723479999945084,
"tests/onegov/core/test_orm.py::test_markup_text": 0.050658182000063334,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.0862196420000032,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.06222272300004761,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.08003980500006946,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.06298357899999019,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.051511077999975896,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.06592958900000667,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.05899896099998614,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.6230901360000303,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.04028268200005414,
"tests/onegov/core/test_orm.py::test_request_cache": 0.06516941000000998,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.06563271399994619,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.05923337500001935,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.05828393699999879,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.6543496170000367,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 0.6644085720000135,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 0.6493889260000287,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.16967429999999695,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.07129832400005398,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.04853456700004699,
"tests/onegov/core/test_orm.py::test_session_scope": 0.04554753099995423,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.063566934999983,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.05573121400004766,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.047757024999953046,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.053367841000010685,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.048038019000046006,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.04981528600001184,
"tests/onegov/core/test_request.py::test_has_permission": 0.02500095999999985,
"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.014254311000001962,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.0358587950000242,
"tests/onegov/core/test_request.py::test_return_to": 0.01633159099998238,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.00149089400002822,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03460626899999397,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.0010558719999949062,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.016772540000033587,
"tests/onegov/core/test_security.py::test_forget": 0.060119444999997995,
"tests/onegov/core/test_security.py::test_personal_access": 0.020784004999995886,
"tests/onegov/core/test_security.py::test_private_access": 0.023648656999966988,
"tests/onegov/core/test_security.py::test_secret_access": 0.025491005999981553,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.014965407000033792,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.7608999830000016,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.766599307999968,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.7432325920000835,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.7655109539999785,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.7588916259999792,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 1.0073223560000315,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.7430981419999512,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.001867649000075744,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.010508153999978731,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.003195738000044912,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.0012297769999918273,
"tests/onegov/core/test_static.py::test_root_file_app": 0.01861141800003452,
"tests/onegov/core/test_static.py::test_static_file": 0.01633438499999329,
"tests/onegov/core/test_static.py::test_static_file_app": 0.0251171250000084,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.03489295399998582,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.1654769270000429,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.03894911099996534,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.04904505299998618,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.06974951799998053,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0014213549999908537,
"tests/onegov/core/test_theme.py::test_theme_application": 0.023623378999957367,
"tests/onegov/core/test_translation_string.py::test_escape": 0.000984897999956047,
"tests/onegov/core/test_translation_string.py::test_html": 0.0009866220000276371,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.0010791049999738789,
"tests/onegov/core/test_translation_string.py::test_init": 0.0012335630000848141,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.001000117999979011,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0010424470000884867,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.0010491699999306547,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.0010222300000464202,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0010276199999452729,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.0010333109999578483,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.0012300470000354835,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.001077040999973633,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 1.7847401600000126,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.384895365000034,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0011451580000425565,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.0010906270000532459,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.001224075999971319,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0012847199999441727,
"tests/onegov/core/test_utils.py::test_batched": 0.001000687000043854,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0010569940000095812,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.002188877000037337,
"tests/onegov/core/test_utils.py::test_bunch": 0.0010587580000560592,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0011391369999955714,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.058393410999997286,
"tests/onegov/core/test_utils.py::test_increment_name": 0.0010158670000350867,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0010084339999707481,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.0010017910000215124,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.0012799690000520059,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.0010377180000205044,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.001112387000034687,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.30428569200000766,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.006742241999916132,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.0026460209999754625,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.0023293109999258377,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.0029464909999887823,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0017208950000053846,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.0018239359999370208,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.0015705630000297788,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.02038176399992153,
"tests/onegov/core/test_utils.py::test_local_lock": 0.001243193000050269,
"tests/onegov/core/test_utils.py::test_module_path": 0.0014323759999683716,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.0012776969999208632,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.001088653000067552,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.0011229980000280193,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.0011784309999711695,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.00119264700003896,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.0011536949999140234,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.001128657000037947,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.001140961000032803,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.0011395880000577563,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0012248480000494055,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.0012806309999859877,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0012152700000456207,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.0011890819999962332,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.0012268109999808985,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.0011856639999905383,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0011570609999580483,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.0012021650000519912,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.0012082879999866236,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.0011724889999982224,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.001142944000037005,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.0011695840000243152,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.001174493999940296,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.001159484999959659,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.0011767079999458474,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0011671290000094814,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.00115768100005198,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.0011725300000193783,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0011642549999919538,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0029841440000382136,
"tests/onegov/core/test_utils.py::test_post_thread": 0.6941236580000236,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.0011228379999579374,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.0011874270000475917,
"tests/onegov/core/test_utils.py::test_safe_format": 0.0010996739999882266,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.0064673050000010335,
"tests/onegov/core/test_utils.py::test_touch": 0.0017047450000404751,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.0010199860000170702,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0010908080000149312,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.002979253000034987,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.0012599629999954232,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.0011514590000274438,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.0011724190000563794,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.0010968779999416256,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.0011313310000105048,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.0014000929999724576,
"tests/onegov/directory/test_archive.py::test_archive_create": 0.7891822329999627,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.8023774829999866,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 0.7948754470000381,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.8257067359999724,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.7886549509999554,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 0.9968670270000644,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.7315065569999888,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.7542313010000044,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.7409569310000279,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.7424603890000299,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.006614179999985481,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.003917806999993445,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.004617140999982894,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.004408753000006982,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.0020190000000184227,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.009198504999972101,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.010063410999975986,
"tests/onegov/directory/test_migration.py::test_directory_migration": 0.9387262719999399,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.0027672880000864097,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011468536000052154,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.7353133109999703,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.7419841060000181,
"tests/onegov/directory/test_orm.py::test_custom_order": 0.9633780999999431,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.7016693420000593,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.01085841399998344,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 0.8525414490000571,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.6878741650000393,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.6760739869999952,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.6884790240000029,
"tests/onegov/directory/test_orm.py::test_files": 1.0501827659999776,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.7755379370000242,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 0.8536971529999846,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.7388892060000103,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 0.8017236160000607,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.845027425000012,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 1.7687844679999785,
"tests/onegov/directory/test_orm.py::test_multi_files": 0.9458653599999707,
"tests/onegov/directory/test_orm.py::test_validation_error": 0.684768073999976,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 0.9618127149999509,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.8833774359999893,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.9057922019999864,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.6931955410000796,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.6874665550000714,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.6933788539999455,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.749335187999975,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.6820327060000295,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.70241804799997,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.7615397819999998,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.667744085000038,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.6899996849999752,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.6842972139999688,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.703606834000027,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.6944250280000119,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.6765690930000119,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.6945632910000086,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.3981489239999974,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.6780945510000151,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.6711392780000551,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.6920880670000997,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.6888573420000625,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.676404864999995,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.6662522270000295,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.6972599979999927,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.6902346710000415,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.4402628769999524,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.6607970269998873,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.6775995840000064,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 0.6696565840000517,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 0.9021673360000477,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.9028154440000549,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 0.683221604000039,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 1.7537658749999991,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.6901751890000583,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.8685183419999021,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 0.9238900689999809,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.2147033090000718,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.691203435000034,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.7109969919999344,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.6716786149999621,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 0.802590701999975,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 1.4747712490000708,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 1.3123668910000674,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 0.8892038529999695,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.6920603229999074,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.6902050549999785,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.6841115549999586,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.6823146599999745,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.698659422999981,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.7173711170000274,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.6984287259999746,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.6944375520000108,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 1.7223276579999833,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.6831078790000333,
"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.7350782509999476,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.7130884080000328,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.7514764279999895,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.7204744740000137,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.7127871760000062,
"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.6947021020000079,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 0.8600990120000347,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 38.9541997610001,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.7737398440000334,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.7563649960000021,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.713288896999984,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.7030593480000107,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.7306319759999269,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7525391010000249,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.7342772939999804,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 0.8327897750000375,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.7439416220000794,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.7435680369999318,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 25.51582853299999,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.2031977880002387,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.801794952999785,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.6764000059998807,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.6898647909999909,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 0.978986159999863,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.8249509960000978,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 0.8483864820001372,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.7005492210000739,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.7043257610000637,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 2.6531979270000647,
"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.7234595509999053,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.8699884499999371,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.8173611139999366,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.6947592450001139,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.7039583050001283,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.8088733779998165,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.7198091840000416,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.0014174350001212588,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 3.4856279019999192,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.9043636820000529,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.7100608839999722,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.7158638069998915,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 1.0405170669998824,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 3.1329762689999825,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.8754391649998752,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 2.097323232000008,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.7176135430000841,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 0.6882936980000522,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 16.144318679000094,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 0.9032510569999204,
"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.7440794740000456,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.6847278639999104,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.7081099509999831,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 0.6711434860001191,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.6982140229998777,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.0021820539999453104,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.6807838880000645,
"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.6904625999999325,
"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.7032985960000815,
"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.692124751999927,
"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.6953520900000285,
"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.6904516349999312,
"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.6817116640000904,
"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.6726575000000139,
"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.7199292749999131,
"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.695754308000005,
"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.6951037039999619,
"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.490965355999947,
"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.6820827149999786,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.6813692550001633,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.6802145369999835,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.682431074999954,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.6737461349999876,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.7382815740000979,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.672389138000085,
"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.9824695689999317,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.8359167739999975,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.6889766620000728,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.6913091310000254,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.6940255660000503,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 0.72301314799995,
"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.6754871340000363,
"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.006756894999966789,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form": 0.0015830649999770685,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form_populate": 0.7018611999998257,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_model": 1.234219449999955,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_on_request": 0.7243661209998891,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_relations": 0.7538978679999673,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_validate": 0.9066346959999692,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_model": 0.8730722330000162,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_on_request": 0.746733823999989,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_relations": 0.7886454400000957,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_validate": 0.9336494789998824,
"tests/onegov/election_day/forms/test_notification_form.py::test_notification_form": 0.0016101959998877646,
"tests/onegov/election_day/forms/test_notification_form.py::test_notifications_form": 0.7386343490001082,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_populate": 0.77676477600005,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_update_apply": 0.7422950609999361,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_validate": 0.7325752979999152,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_email_subscription_form": 0.002351117999978669,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_sms_subscription_form": 0.0037987920001114617,
"tests/onegov/election_day/forms/test_upload_form.py::test_upload_election_compound_form": 0.7050456220000569,