-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.test_durations
2947 lines (2947 loc) · 292 KB
/
.test_durations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/onegov/activity/test_iso20022.py::test_extract_transactions": 0.06804977600000939,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.0022499199999970187,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 3.807941305000014,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.9171143169999993,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.01154234899996709,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9186775979999879,
"tests/onegov/activity/test_matching_db.py::test_alignment": 0.9440365220000331,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.913609206999979,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 0.948029694999974,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 0.9210706100000152,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 0.9226807359999896,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 0.9122369340000205,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.1725930179999864,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 1.265254275000018,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 0.962040160999976,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 0.940673314999998,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.1720734489999813,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.1748612789999981,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 0.9183980779999956,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 0.9189123140000106,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.001103537000005872,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.0013056029999916063,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.0026282360000209337,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.002507960999992065,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.001453106999974807,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0012628419999884954,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.001343161999983522,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.0010011139999903662,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.0018950699999891185,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.002172446000002992,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.0011352949999547945,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.0009117980000041825,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0009089130000177192,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.0009424149999972542,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.0009081320000063897,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.615414076999997,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.0020056769999996504,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0009968570000182808,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.0664784930000053,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.6935572680000064,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 0.9075770059999968,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.0011388910000107444,
"tests/onegov/activity/test_models.py::test_activity_order": 0.9080916070000171,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 0.9728771469999913,
"tests/onegov/activity/test_models.py::test_activity_states": 0.9174006460000044,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.9117196029999945,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 0.9016771089999907,
"tests/onegov/activity/test_models.py::test_add_activity": 0.8779226419999873,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6350509650000333,
"tests/onegov/activity/test_models.py::test_archive_period": 0.91881243200001,
"tests/onegov/activity/test_models.py::test_attendee_age": 1.0760183690000247,
"tests/onegov/activity/test_models.py::test_attendees_count": 1.369659141999989,
"tests/onegov/activity/test_models.py::test_booking_collection": 0.919437003000013,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 0.9376637820000155,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 0.9169998490000069,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.1130221040000094,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 0.9518776250000087,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.9144539610000209,
"tests/onegov/activity/test_models.py::test_confirm_period": 0.9381983410000032,
"tests/onegov/activity/test_models.py::test_date_changes": 0.8936409979999951,
"tests/onegov/activity/test_models.py::test_deadline": 0.9177115589999971,
"tests/onegov/activity/test_models.py::test_happiness": 0.956436540000027,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.9071404320000056,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.0009335299999975177,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0011103200000093238,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.0010153320000085841,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.9005633390000014,
"tests/onegov/activity/test_models.py::test_invoices": 0.9125310140000522,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.6542547020000313,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.9027128680000089,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 0.9269475269999816,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 0.9072739979999938,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 0.901507482000028,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9468830589999868,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 0.6473261189999846,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 0.6540934270000207,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 1.1098840390000078,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.6493594300000041,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.6621161009999526,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.6433647369999846,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.0052052959999855,
"tests/onegov/activity/test_models.py::test_occasion_duration": 0.9661624940000024,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 0.943021023,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.941972058999994,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.1939997430000062,
"tests/onegov/activity/test_models.py::test_occasions": 0.8844417110000222,
"tests/onegov/activity/test_models.py::test_period_phases": 0.8998804740000423,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.11093643699996392,
"tests/onegov/activity/test_models.py::test_profiles": 0.9264333739999984,
"tests/onegov/activity/test_models.py::test_publication_request": 0.8958047510000142,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 0.9703054230000134,
"tests/onegov/activity/test_models.py::test_timeline_filter": 0.974490062000001,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.8876709339999991,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.0010600749999980508,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.0012039930000184995,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.0012525140000150259,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.0012012390000109008,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.0012864960000058545,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.0011391109999863147,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.001101170999987744,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0014092039999979988,
"tests/onegov/agency/test_api.py::test_view_api": 8.94549449300004,
"tests/onegov/agency/test_app.py::test_app_custom": 0.6626767070000028,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 1.1213277050000272,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.6371705270000234,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6291484930000024,
"tests/onegov/agency/test_cli.py::test_create_pdf": 1.1839334000000008,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 1.5701254310000081,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 0.6536896759999706,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.6961677290000239,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.6974781010000299,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 0.7007781540000337,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.7136059490000264,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.6902583869999717,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 0.6586903170000369,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6537778579999838,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.644802314999879,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 1.2336799999999357,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.7154758469999933,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.6910565920000522,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.7064862439999615,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.6893038969999452,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.7028533829999901,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.7087590990000763,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.669457178000016,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.6643297769999776,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.7093800290000445,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.7135160859999701,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.7207013840001082,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.7317540150000355,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.6954867569999692,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 0.7010733730000993,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.7485519109999927,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 0.9604569119999837,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.6811321120000002,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.0032894390000706153,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.0014614739999956328,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.6952772309999773,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.0015546470000344925,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6499075530000482,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.6427332019999881,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.6953862039999876,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.0024730079999812915,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.4928620349999733,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.00121066700000938,
"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.001264436999974805,
"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.0015218549999644893,
"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.0012287099999639395,
"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.0012258730000098694,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.625350153999932,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.0014134850000573351,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.0014297029999852384,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.001205175999984931,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.0014093259999867769,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.0011907490000453436,
"tests/onegov/agency/test_models.py::test_agency_move": 0.6827036930000645,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6402142710000476,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.6700586190000308,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6271567229999846,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6336825879999992,
"tests/onegov/agency/test_models.py::test_extended_membership": 0.6458409420000066,
"tests/onegov/agency/test_models.py::test_extended_person": 0.6205904130000022,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.6555830399999536,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.7077626600000144,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6225121450000302,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.7725139580000473,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.837777788999972,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.6878534480000553,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 1.293456429999992,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.7650664080000524,
"tests/onegov/agency/test_pdf.py::test_pdf_page_break_on_level": 0.6113009030000285,
"tests/onegov/agency/test_security.py::test_security_get_current_role": 0.6284839709999801,
"tests/onegov/agency/test_security.py::test_security_permissions": 3.626769649000039,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.6714786299999673,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.6955445959999906,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.6799286530000472,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.0013195969999628687,
"tests/onegov/agency/test_views.py::test_agency_map": 0.8350556909999796,
"tests/onegov/agency/test_views.py::test_basic_search": 22.62276694899998,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 0.8917595350000624,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 1.5214919050000617,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.6912673380000456,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.7363796680000405,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 12.01122644100002,
"tests/onegov/agency/test_views.py::test_view_mutations": 3.037162402999911,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 0.9594898579999835,
"tests/onegov/agency/test_views.py::test_view_user_groups": 1.6309637870000415,
"tests/onegov/agency/test_views.py::test_views_general": 8.632806112000026,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 1.520402622000006,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.4092610600000626,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 0.8934420229999773,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.9248887369999466,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.918098418999989,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 0.914534523000043,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.0325625669999567,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.8819213049999917,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.9156867989999569,
"tests/onegov/api/test_integration.py::test_integration": 0.6424645740000301,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.6366884039999832,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6350106870000332,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6186227659999872,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.0015883109999776934,
"tests/onegov/api/test_views.py::test_view_api": 1.0686406829999555,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[invalid.url.com]": 0.004369031000010182,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[url1]": 0.0018607479999559473,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 0.36743900100003657,
"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.6281553410000242,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.6400617519999514,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.6541443319999871,
"tests/onegov/chat/test_model.py::test_message_edited": 0.6259969869999509,
"tests/onegov/chat/test_model.py::test_message_file": 0.9481927240000232,
"tests/onegov/chat/test_model.py::test_message_order": 0.634608457000013,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.6489754500000231,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.6544525580000595,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.6490998599999784,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.6549249540000801,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 1.4870452310000246,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6169666350000398,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6464623769999776,
"tests/onegov/core/test_adjacency_list.py::test_move": 0.6801703319999319,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6640773919999674,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.6271321400000147,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.001273103000073661,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.6519564159999618,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.6477415509999673,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.001836512000068069,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.0010689820000493455,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.011196241999982703,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.0012008500000320055,
"tests/onegov/core/test_cache.py::test_cache_flush": 1.066791598000009,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.00661344600001712,
"tests/onegov/core/test_cache.py::test_cache_key": 0.003618364000033125,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.011564793999980338,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 1.1354175980000605,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.0012963240000090082,
"tests/onegov/core/test_cache.py::test_redis": 0.0035116749999701824,
"tests/onegov/core/test_cache.py::test_store_slots_redis": 0.004228902000022572,
"tests/onegov/core/test_cli.py::test_create_command_default_selector[cli0]": 0.65955051800006,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.034738116999960766,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.03227950999996665,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.032722176999982366,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 0.6597005429999854,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.03259818499998346,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.02742824999995719,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.04554214399996681,
"tests/onegov/core/test_cli.py::test_sendmail": 0.011642620000031911,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.006492981000008058,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.00577199800005701,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.015215829999988273,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.027170247999947605,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.05053676099993254,
"tests/onegov/core/test_collection.py::test_pagination": 0.0013663360000464309,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.0011143560000164143,
"tests/onegov/core/test_converters.py::test_date_converter": 0.0016048229999796604,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.0010390169999823229,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0011005310000200552,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0009568029999513783,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.018213473999992402,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0009784429999513122,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.5703625500000271,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0011838759999136528,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.5985808300000599,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.8730480730000068,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.0010414010000090457,
"tests/onegov/core/test_crypto.py::test_random_password": 0.002081449000002067,
"tests/onegov/core/test_crypto.py::test_random_token": 0.0011616760000379145,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0013554759999578891,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0010158229999888135,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.001021855000033156,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.0010736700000393284,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.001008818999991945,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.008716045999960897,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.013167550999980904,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009279214000002867,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.04178321500000948,
"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.0013165929999559012,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0015829909999638403,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0013485229999901094,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.0018453399999884823,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.0010251209999978528,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.0010093810000171288,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.0010187590000327873,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.001101224000080947,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0010410520000050383,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.0010204620000422437,
"tests/onegov/core/test_csv.py::test_parse_header": 0.0023011979999978394,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.000984123000080217,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.0015657480000186297,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.0014459950000400568,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.0012830819999862797,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0014227100000425708,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.0009993010000357572,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0010080689999085735,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.0009657900000661357,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.001119796000068618,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.0010573499999395608,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.001013128000067809,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.0014035160000389624,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.0018454689999316543,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6178854020000131,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.6146321840000155,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.6020480240000552,
"tests/onegov/core/test_directive.py::test_form_directive": 0.02686510200004477,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.016735193999977582,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.7354997340000295,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.6647225770000205,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.6863587210000333,
"tests/onegov/core/test_elements.py::test_link": 0.7266259900000023,
"tests/onegov/core/test_elements.py::test_link_slots": 0.0011060920000431906,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.039840090999973654,
"tests/onegov/core/test_filestorage.py::test_independence": 0.0056180090000452765,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.16545118399994863,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.015246010000055321,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.026643347000003814,
"tests/onegov/core/test_framework.py::test_configure": 0.0023735030000011648,
"tests/onegov/core/test_framework.py::test_csrf": 0.04992014100008646,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.0017386599999440477,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0012056269999902725,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.003099356000006992,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.016362231000016436,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.01714581999993925,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.023631817000023148,
"tests/onegov/core/test_framework.py::test_get_form": 0.016001027000072554,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.016972047000081147,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.001165031000084582,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.011273016000018288,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.6431131709999818,
"tests/onegov/core/test_framework.py::test_request_messages": 0.018127078000020447,
"tests/onegov/core/test_framework.py::test_send_email": 0.0027534699999591794,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.0024732780000249477,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.020513564999987466,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.0023797850000164544,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.272004107999976,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.0037500989999443846,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0018892499999765278,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.3583680589999858,
"tests/onegov/core/test_framework.py::test_send_sms": 0.0021259420000205864,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.0031667810000044483,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.2655305849999081,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.6312979119999795,
"tests/onegov/core/test_framework.py::test_session_nonce_request": 0.023921926000014082,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.001973706999933711,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.0013241370000969255,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.017821276000006492,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0016224020000095152,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.00102741499995318,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.0011472379999872828,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.0011291540000115674,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.00405307199997651,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.0010024380000004385,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.001924486000007164,
"tests/onegov/core/test_layout.py::test_batched": 0.0013029969999820423,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.0013396969999917019,
"tests/onegov/core/test_layout.py::test_format_number": 0.001157206000016231,
"tests/onegov/core/test_layout.py::test_relative_date": 0.00143571600000314,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.0016800009999542453,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.002179321000028267,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.001125888999979452,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.0015415519999919525,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.0022853789999999208,
"tests/onegov/core/test_metadata.py::test_metadata": 0.017340082000032453,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.17947398500001555,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.2849620860000073,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.39714838199995484,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.5086919490000241,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.6317877799999678,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.7573577630000727,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.8639783479999323,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.9816383799999926,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.0930082049999328,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.08830954900003007,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.10627184499998066,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.09222751300001164,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.09038059100004148,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.05493454700001621,
"tests/onegov/core/test_orm.py::test_content_properties": 0.04937818499996638,
"tests/onegov/core/test_orm.py::test_create_schema": 0.055989110999973946,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.0503575609999416,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.05743253299999651,
"tests/onegov/core/test_orm.py::test_find_models": 0.0025238030000309664,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.004515023999942969,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.09569143900000654,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.07112449599998172,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.07352397500005736,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.06055372699995587,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.02868354999998246,
"tests/onegov/core/test_orm.py::test_json_type": 0.054579092000039964,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.05167247800000041,
"tests/onegov/core/test_orm.py::test_markup_text": 0.05462648200006015,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.07646227300006103,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.061831949999998415,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.0810997210000437,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.06399261600000727,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.04683963400003677,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.05737919399996372,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.05296800200000007,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.6021829830000343,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.04252599000000146,
"tests/onegov/core/test_orm.py::test_request_cache": 0.06065894399995386,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.06439617900002759,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.06388884200003986,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.057278946000053566,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.6297065709999856,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 1.4557953369999836,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 0.6307986940000205,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.16726427100002184,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.07087569199995869,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.05012786999998298,
"tests/onegov/core/test_orm.py::test_session_scope": 0.04551243799994609,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.059675593000008575,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.056837289000043256,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.05420252100009293,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.04771203800004287,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.04648081199997023,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.05041973200002303,
"tests/onegov/core/test_request.py::test_has_permission": 0.024361586000054558,
"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.0133062099999961,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.03563209100002496,
"tests/onegov/core/test_request.py::test_return_to": 0.015640249999933076,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.0014379610000219145,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03377886700002364,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.0010373629999662626,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.017430246000003535,
"tests/onegov/core/test_security.py::test_forget": 0.02145385700003999,
"tests/onegov/core/test_security.py::test_personal_access": 0.019166841999947337,
"tests/onegov/core/test_security.py::test_private_access": 0.022932170999979462,
"tests/onegov/core/test_security.py::test_secret_access": 0.022243006000053356,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.014751103000037347,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.7330829310000126,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.7542830539999272,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.7648905860000355,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.7583119239999405,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.7623955060000185,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 1.0005359440000348,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.7469939479999539,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.0018637539999986075,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.010489439999957995,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.0032416930000067623,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.0011988940000264847,
"tests/onegov/core/test_static.py::test_root_file_app": 0.017428011999982118,
"tests/onegov/core/test_static.py::test_static_file": 0.013257457999998223,
"tests/onegov/core/test_static.py::test_static_file_app": 0.024823638999976083,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.03435110399993846,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.16649700800002165,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.039193570000009004,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.04786077100004604,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.06927829100004601,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0015114470000412439,
"tests/onegov/core/test_theme.py::test_theme_application": 0.024610539000036624,
"tests/onegov/core/test_translation_string.py::test_escape": 0.000993511999979546,
"tests/onegov/core/test_translation_string.py::test_html": 0.001001617999975224,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.0010738419999825055,
"tests/onegov/core/test_translation_string.py::test_init": 0.0012422060000858437,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.0010097510000264265,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0010304310000606165,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.001009151000005204,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.000984643999970558,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0010438950000661862,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.0009925000000521322,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.0012470130000110657,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.0012392800000498028,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 1.813028696999993,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.424853631000019,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0010801820000096995,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.0010534329999245529,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.001308899999969526,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0010887779999961822,
"tests/onegov/core/test_utils.py::test_batched": 0.00102083099994843,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0010549470000000838,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.0021598150000272653,
"tests/onegov/core/test_utils.py::test_bunch": 0.0010216130000344492,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0011755520000633624,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.05764945399999988,
"tests/onegov/core/test_utils.py::test_increment_name": 0.0010370520000151373,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0010098129999391858,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.001037884999959715,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.0013199999999642387,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.0011119319999579602,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.0011311669999827245,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.4038976489999868,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.008607478999977047,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.0024799209999741834,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.002407566999977462,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.003120024999986981,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0018279869999560105,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.0016524399999866546,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.0015226969999844187,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.019720601000017268,
"tests/onegov/core/test_utils.py::test_local_lock": 0.0012202739999906953,
"tests/onegov/core/test_utils.py::test_module_path": 0.0013526399999932437,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.0012890319999883104,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.0010532229999284937,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.001147257999946305,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.0012494779999201455,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.0011196570000038264,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.0011560040000517802,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.0011771650000014233,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.0011587799999688286,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.0011308979999853364,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0011649619999616334,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.0011880839999776072,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0011571060000505895,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.0011830640000312087,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.0011786259999553295,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.0011619569999652413,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0011566660000426054,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.0012064269999996213,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.0011791169999924023,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.001203783000050862,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0011027150000586516,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.0011609530000100676,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0011376690000020062,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.0010836399999902824,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.001125076999983321,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0010922460000415413,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.0011213599999564394,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.00110860600000251,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0011042870000324,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0011541310000211524,
"tests/onegov/core/test_utils.py::test_post_thread": 0.6718133549999266,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.001156153999943399,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.001219521999985318,
"tests/onegov/core/test_utils.py::test_safe_format": 0.0011515570000142361,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.006309839000039119,
"tests/onegov/core/test_utils.py::test_touch": 0.0016659249999975145,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.0010249700000031225,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0010479640000085055,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.0011860299999284507,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.001348423999957049,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.0011584280000533909,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.0011503539999466739,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.0010658069999180952,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.001110760000017308,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.001345238000055815,
"tests/onegov/directory/test_archive.py::test_archive_create": 0.7998479830000065,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.7926205380000511,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 0.799484709000069,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.8150261520000299,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.7872334710000359,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 0.9916660829999842,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.7217589340000359,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.7337412690000065,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.722717270999965,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.7603959309999482,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.006391046999965511,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.004120434000071782,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.004841817999988507,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.004443826999931844,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.001990612999975383,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.009204573999909371,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.009894191000000774,
"tests/onegov/directory/test_migration.py::test_directory_migration": 0.9514706199999523,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.002693933999978526,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011325349999992795,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.7319286959999545,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.7156308199999444,
"tests/onegov/directory/test_orm.py::test_custom_order": 0.9292452709999566,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.701172774999975,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.010609910999960448,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 0.8508347390000495,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.6767251100000635,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.6991928730000154,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.6815184199999749,
"tests/onegov/directory/test_orm.py::test_files": 1.0376844909999363,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.7762678979999578,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 0.8515527260000795,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.718634753999936,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 0.937777699000037,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.9391984199999683,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 0.7630825059998756,
"tests/onegov/directory/test_orm.py::test_multi_files": 0.9424900999999863,
"tests/onegov/directory/test_orm.py::test_validation_error": 1.5513386939999805,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 0.9349983769999426,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.8658797580000623,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.8693011290000072,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.6614807180000639,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.6502290370000878,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.6549970240000107,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.735109480999995,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.6658243749999997,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.6611418459999072,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.7231842740000047,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.6664315440000337,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.6899438359999976,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.6648971770000571,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.6567632660000413,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.6449698860000126,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.655598436000048,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.6643106939999939,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.4266878369999745,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.6563033620000169,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.6806690129999993,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.6642098079998959,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.6887321129999577,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.6670045169999526,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.672286860999975,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.6764996029999679,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.7010024600000406,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.4165506989999699,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.6644969920000108,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.6770039240000187,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 0.684665060000043,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 1.8781249660000299,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.9050655780000056,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 0.6846201670000482,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 0.7889404059999379,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.6551207370000043,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.8298225300000013,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 0.9067182739999566,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.2022403930000678,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.681451447000029,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.6799661640000068,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.6693311690000314,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 0.808136845999968,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 1.438378015000012,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 1.361349005999955,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 0.8634238520000395,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.6812735149999867,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.679521923999971,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.6787482120000163,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.6986102239999923,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.6855635850000681,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.668582506000007,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.680111165000028,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.675771543000053,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 1.6634023500000126,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.7081677470000614,
"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.7710603280000328,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.680297850000045,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.7341576929999292,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.7193985010000574,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.6849926189999564,
"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.7166759149999962,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 0.8620605620000106,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 38.68456060099999,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.7497684800001707,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.7317454639999141,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.680955193999921,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.6635424070001363,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.7146931099999847,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7160461820000137,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.6913143750000472,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 0.78381896399992,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.7072915029998512,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.6964274510000905,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 25.213708722999968,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.1045267769999327,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.7732915359999879,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.6887687869999581,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.6594429280000895,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 0.954312261000041,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.8229450259999567,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 0.8046900949999554,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.7170794829997931,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.6991478940000206,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 2.5906910729999026,
"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.714452338000001,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.8220985699999801,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.8033738010000206,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.6869786270000304,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.6848351049999337,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.8064969000000701,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.7095442200001116,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.001385601999913888,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 3.3838164019999795,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.8642028880000225,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.6652295689999619,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.6736595769999667,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 0.9920073190000949,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 2.9334082770000123,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.858414678000031,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 0.8936072660000036,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.6792864849999205,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 0.7204294929998696,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 17.130753783000046,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 0.910180620999995,
"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.7233558919999723,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.6840927159998955,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.6765478889999486,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 0.6687719369999741,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.6750588649999827,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.0021468029999596183,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.7012609309999789,
"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.6783329689999391,
"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.6678343519997725,
"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.6824780839999676,
"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.6975599340001963,
"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.6793214000000489,
"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.6834024719998979,
"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.6944214839999177,
"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.6718095240001958,
"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.6664035249998506,
"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.6745226200000616,
"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.5056408210000427,
"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.6778224859999682,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.6861524959998633,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.6823018270000603,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.6613084580000077,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.6767356330000212,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.7454022829998621,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.669313132999946,
"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.9763954559999775,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.808137663000025,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.686418763000006,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.688513928000134,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.7064996230000133,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 0.7234948050000867,
"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.6558551140000191,
"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.004362904000004164,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form": 0.001443882999978996,
"tests/onegov/election_day/forms/test_data_source_forms.py::test_data_source_item_form_populate": 0.7073286490001465,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_model": 1.1888147280000112,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_on_request": 0.6978055430000722,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_relations": 0.7632083900000453,
"tests/onegov/election_day/forms/test_election_compound_form.py::test_election_compound_form_validate": 0.8944577149999304,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_model": 2.0203641299999617,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_on_request": 0.684336384000062,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_relations": 0.7396679639999775,
"tests/onegov/election_day/forms/test_election_form.py::test_election_form_validate": 0.885177063000242,
"tests/onegov/election_day/forms/test_notification_form.py::test_notification_form": 0.0017107390000319356,
"tests/onegov/election_day/forms/test_notification_form.py::test_notifications_form": 0.7260469369999782,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_populate": 0.7185142180001094,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_update_apply": 0.6994035170000643,
"tests/onegov/election_day/forms/test_screen_form.py::test_screen_form_validate": 0.6779401640001197,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_email_subscription_form": 0.0021505299999944327,
"tests/onegov/election_day/forms/test_subscriber_form.py::test_sms_subscription_form": 0.0036115530000415674,