-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.test_durations
More file actions
3320 lines (3320 loc) · 335 KB
/
.test_durations
File metadata and controls
3320 lines (3320 loc) · 335 KB
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.06657328500000403,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.0024825959999645875,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 4.200641969000003,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.9554751420000116,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.010685025999976006,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9930397809999931,
"tests/onegov/activity/test_matching_db.py::test_alignment": 1.030013318999977,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.9927175290000037,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 1.0052402900000743,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 0.9966301689999852,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 1.4884334889999309,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 0.9963205340000059,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.2453024870000036,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 0.9761240809999663,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 1.0270440279999775,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 1.0167492410000136,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.2663093159999619,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.2644407469999805,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 1.0005036389999873,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 1.0148874219999584,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.0012440950000041084,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.0015047740000113663,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.0025448869999991075,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.0027082629999881647,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.0016555280000716266,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0015297909999958392,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.0015370149999966998,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.001183321999974396,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.0019884220000108144,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.0017219220000015412,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.001221292000025187,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.0010756790000527872,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0010583370000176728,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.0010712310000258185,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.0010786049999751413,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.6455180430000382,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.0021697729999914372,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0011323759999868344,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.1691048460000388,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.743889380999974,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 1.0075451069999417,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.0016073059999257566,
"tests/onegov/activity/test_models.py::test_activity_order": 0.9625399269999662,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 1.079887842000005,
"tests/onegov/activity/test_models.py::test_activity_states": 0.9864379079999708,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.935396849999961,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 0.9856052760000011,
"tests/onegov/activity/test_models.py::test_add_activity": 0.9337746690000017,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6583570340000051,
"tests/onegov/activity/test_models.py::test_archive_period": 1.0170119220000515,
"tests/onegov/activity/test_models.py::test_attendee_age": 1.2067138780000164,
"tests/onegov/activity/test_models.py::test_attendees_count": 1.0567993219999607,
"tests/onegov/activity/test_models.py::test_booking_collection": 0.9817215520000104,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 1.0501341980000234,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 1.0010757539999418,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.8802448910000749,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 1.0004039940000666,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.9632874620000393,
"tests/onegov/activity/test_models.py::test_confirm_period": 1.0214326269999674,
"tests/onegov/activity/test_models.py::test_date_changes": 0.9518549679999637,
"tests/onegov/activity/test_models.py::test_deadline": 0.9503927859999521,
"tests/onegov/activity/test_models.py::test_happiness": 1.0388084629998957,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.985823900000014,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.001473704000034104,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0015522209999971892,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.001568140000074436,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.9800145810000345,
"tests/onegov/activity/test_models.py::test_invoices": 1.0105041539999888,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.7434216789999937,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.9710710109999923,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 1.0223405059999777,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 1.027613413000097,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 0.9748696980000204,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9702198520000138,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 0.7307345999999484,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 0.7605756489999749,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 0.7234001400000238,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.7141912059999527,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.731273965000014,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.7597452079999698,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.1060170729999754,
"tests/onegov/activity/test_models.py::test_occasion_duration": 1.0271927450000362,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 1.0405008919999545,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.9955174109999803,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.253989110999953,
"tests/onegov/activity/test_models.py::test_occasions": 0.9739882079999234,
"tests/onegov/activity/test_models.py::test_period_phases": 1.0930046749999747,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.1445554909999487,
"tests/onegov/activity/test_models.py::test_profiles": 1.0158280070000387,
"tests/onegov/activity/test_models.py::test_publication_request": 0.9574923349999835,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 1.0449936929999808,
"tests/onegov/activity/test_models.py::test_timeline_filter": 1.1598683429999141,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.9609946019999711,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.001301361999992423,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.0011432770000396886,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.0013484509999557304,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.0012619889999996303,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.0012327640000080464,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.0011641759999747592,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.0012567400000307316,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0015332590000411983,
"tests/onegov/agency/test_api.py::test_view_api": 11.237018633000048,
"tests/onegov/agency/test_app.py::test_app_custom": 0.7145204549999562,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 0.7278613990000622,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.7079571440000336,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6872189150000168,
"tests/onegov/agency/test_cli.py::test_create_pdf": 3.097210951999955,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 2.2408474719999845,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 0.681920600000069,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.7599070079999706,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.7450726199999167,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 0.7582041010001035,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.798520639000003,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.7713965280000252,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 0.7426777469999024,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6766646490000312,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.7104850410000267,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 0.6994476170000326,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.7575085179999519,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.7443373779999547,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.7786734109999998,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.7557884290000061,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.7548007499999585,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.7724416560000122,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.7159745100000237,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.7098569750000365,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.6890129490000163,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.8022543900000301,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.8070339270000204,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.804304884999965,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.7652996430000485,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 0.7837837600000057,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.9438525060000416,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 2.442687420000027,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.7329927429999543,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.0034534580000240567,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.0017319579999366397,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.7240494400000443,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.0019330950000266967,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6970265749999953,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.7020356570000104,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.7755176310000138,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.002911715000038839,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.6209990729998935,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.001408806000029017,
"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.0014790980000043419,
"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.001959693999992851,
"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.0014519650000579531,
"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.0014676350000399907,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Achermann-Bachmann Carmen Daria--result6]": 0.0016374320000522857,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Iten-Weber Debi--result3]": 0.0015388380000445068,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz Max--result1]": 0.0015346999999792388,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz--result0]": 0.0016997690000835064,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Omlin Christine--result2]": 0.0015147020000085831,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Owen Bradshaw Daniel-Daniel-result4]": 0.0014732850000882536,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Widmer Frank Cecile Ladina-Cecile Ladina-result5]": 0.001529771000036817,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.6971316140000567,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.0018927420000522943,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.6847658979999665,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.0014814080000178365,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.6916070480000371,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.0016940479999334457,
"tests/onegov/agency/test_models.py::test_agency_move": 0.7323132300000452,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6580386779999969,
"tests/onegov/agency/test_models.py::test_agency_mutation": 0.6884483549999914,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.7348607719999336,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6916712399999483,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6971942930000523,
"tests/onegov/agency/test_models.py::test_extended_membership": 0.6862646550000022,
"tests/onegov/agency/test_models.py::test_extended_person": 0.6796964850000222,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.7745163930000558,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.7622546150000176,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6827289909999763,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.8623153170000251,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.9477531079999721,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.8072657019999951,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 0.7950614049999558,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_lu": 0.8327105349999897,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.8560686760000067,
"tests/onegov/agency/test_pdf.py::test_pdf_page_break_on_level": 0.637811566000039,
"tests/onegov/agency/test_security.py::test_security_get_current_role": 0.6709974950000515,
"tests/onegov/agency/test_security.py::test_security_permissions": 2.9837291550000486,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.7395137230000159,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.7941159310000216,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.7967506449999746,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.0018372630000271784,
"tests/onegov/agency/test_views.py::test_agency_map": 0.970200444999989,
"tests/onegov/agency/test_views.py::test_basic_search": 1.388315847000058,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 0.9846449550000784,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 0.8757570570000439,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.7328751559999773,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.8355563780000921,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 1.5607849190000138,
"tests/onegov/agency/test_views.py::test_view_mutations": 3.6397841500000254,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 1.062114165999958,
"tests/onegov/agency/test_views.py::test_view_user_groups": 1.4846728249999614,
"tests/onegov/agency/test_views.py::test_views_general": 10.207363741000052,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 2.876115879999986,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.659727531000044,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 0.9566767570000252,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.980204305999905,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.9675802010000325,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 2.2995631960000082,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.0457247539999344,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.9625804109999194,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.9474421919999827,
"tests/onegov/api/test_integration.py::test_integration": 0.6762381800000412,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.6857970239999531,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6505253940000557,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6747238320000406,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.0020054490000802616,
"tests/onegov/api/test_views.py::test_view_api": 1.1926685150000367,
"tests/onegov/api/test_views.py::test_view_private_field": 1.0304875790000096,
"tests/onegov/api/test_views.py::test_view_private_field_unauthorized": 0.695289492000029,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid": 0.0023187940000184426,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[invalid.url.com]": 0.005256271000007473,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[url1]": 0.002322421000030772,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid_with_custom_handler": 0.0015738680000367822,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 1.219394985000008,
"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.7023399969999673,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.6991096859999857,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.7657436050000115,
"tests/onegov/chat/test_model.py::test_message_edited": 0.7010894470000153,
"tests/onegov/chat/test_model.py::test_message_file": 1.0756069810000213,
"tests/onegov/chat/test_model.py::test_message_order": 0.7163768420000451,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.7101081319999594,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.7210074739999754,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.705253411000001,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.6967259009999793,
"tests/onegov/core/test_adjacency_list.py::test_add_uses_binary_gap": 0.7174222340000256,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 0.6808404599999562,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6658245220000367,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6700224360000107,
"tests/onegov/core/test_adjacency_list.py::test_move": 0.6895177660000513,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6936672219999878,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.7049930850000123,
"tests/onegov/core/test_adjacency_list.py::test_move_uses_binary_gap": 0.7331911590000573,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.0023465170000349644,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.7016682450000076,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.6829912090000221,
"tests/onegov/core/test_adjacency_list_performance.py::test_add_performance_large_collection[1000]": 0.9695401100000254,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.002079977999926541,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.0013529649999668436,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.0109037130000047,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.0017452009999487927,
"tests/onegov/core/test_cache.py::test_cache_flush": 1.027288517000045,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.005626112000015837,
"tests/onegov/core/test_cache.py::test_cache_key": 0.004776470999956928,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.010859467999921435,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 1.9369656979999377,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.0012518149999891648,
"tests/onegov/core/test_cache.py::test_redis": 0.00492003900006921,
"tests/onegov/core/test_cache.py::test_store_slots_redis": 0.0035885849999885977,
"tests/onegov/core/test_cli.py::test_create_command_default_selector[cli0]": 0.7136537409999733,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.037098299000035695,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.037550028000055136,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.037793051999926774,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 1.2991239039999982,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.037722590999976546,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.031719411999972635,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.04868027200001279,
"tests/onegov/core/test_cli.py::test_sendmail": 0.012057393999953092,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.006991483000035714,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.006569339999998647,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.015530153000042901,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.024126453999997466,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.05558449099999052,
"tests/onegov/core/test_collection.py::test_pagination": 0.001708189999988008,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.0013187109999535096,
"tests/onegov/core/test_converters.py::test_date_converter": 0.002021718000094097,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.001341773999911311,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0013572929999554617,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0012531479999893236,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.019628081999996994,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0013195130000553945,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.697284658000001,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0013571220000017092,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.6072653909999417,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.8752365990000044,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.00126679400005969,
"tests/onegov/core/test_crypto.py::test_random_password": 0.0023675160000493634,
"tests/onegov/core/test_crypto.py::test_random_token": 0.0014120850000267637,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0015382019999492513,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0011308900000130961,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.0013568310000096062,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.0013384690000179944,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.001216809999959878,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.009460810000007314,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.014097277000018948,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009595791999970515,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.041774189999955524,
"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.0014820179999901484,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0017498600000180886,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0015632100000857463,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.0022443459999976767,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.001242105999949672,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.0012359649999780231,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.00137221199997839,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.001313221000032172,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0012597009999808506,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.0012193459998570688,
"tests/onegov/core/test_csv.py::test_parse_header": 0.002514602000076138,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.0012398839999718803,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.001917815000012979,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.0016344420000109494,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.0015087479999920106,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0015846199999600685,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.0012004690000253504,
"tests/onegov/core/test_custom_json.py::test_ensure_ascii": 0.0011434639999379215,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0012377679998962776,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.001174701999957506,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.0013052049999942028,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.0012217400000622547,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.0011200290000488167,
"tests/onegov/core/test_custom_msgpack.py::test_custom_msgpack": 0.001571034000050986,
"tests/onegov/core/test_custom_msgpack.py::test_dictionary_serializer": 0.0011479609999582863,
"tests/onegov/core/test_custom_msgpack.py::test_make_serializable": 0.0012254770000481585,
"tests/onegov/core/test_custom_msgpack.py::test_not_serializable": 0.0014427540000383487,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[<b>safe</b>]": 0.0013191410000104042,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello ${name}]": 0.0013006170000267048,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello <b>${name}</b>]": 0.0013304430000289358,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data0]": 0.0013387989999387173,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data1]": 0.0013574139999832369,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data2]": 0.0013369260000217764,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data3]": 0.0012978210000369472,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data4]": 0.0013199039999562956,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data8]": 0.0012878729999670213,
"tests/onegov/core/test_custom_msgpack.py::test_serializable": 0.003116568999928404,
"tests/onegov/core/test_custom_msgpack.py::test_serializers": 0.0012022820000083811,
"tests/onegov/core/test_custom_msgpack.py::test_sqlalchemy_row_roundtrip": 0.05428105500004676,
"tests/onegov/core/test_custom_msgpack.py::test_string_serializer": 0.0011861940000130744,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.0016157879999241231,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.002268630999992638,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6970160939999914,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.6762157760000491,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.707119146000025,
"tests/onegov/core/test_directive.py::test_form_directive": 0.027830392999987907,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.01822935799998504,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.8064906650000694,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.7346847489999959,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.7424976319999246,
"tests/onegov/core/test_elements.py::test_link": 0.7909559489999083,
"tests/onegov/core/test_elements.py::test_link_slots": 0.0012947760000088238,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.04215140700000575,
"tests/onegov/core/test_filestorage.py::test_independence": 0.005803848999960337,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.1700215830000502,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.01729599199995846,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.025737305999939508,
"tests/onegov/core/test_framework.py::test_configure": 0.0027798500000812965,
"tests/onegov/core/test_framework.py::test_csrf": 0.05816189500001201,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.0020394130000340738,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0014531840000131524,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.0032297139999855062,
"tests/onegov/core/test_framework.py::test_encrypt_decrypt": 0.002498654000021361,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.018979647999969984,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.018731173000048784,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.024002793000022393,
"tests/onegov/core/test_framework.py::test_get_form": 0.01794558999995388,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.01827889500003721,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.0014043119999200826,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.011330568999994739,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.6649271630000726,
"tests/onegov/core/test_framework.py::test_request_messages": 0.019838299000014104,
"tests/onegov/core/test_framework.py::test_send_email": 0.002854821000028096,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.002725058999999419,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.020313757999929294,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.0025204240000107347,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.27321749499998305,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.0040020119999439885,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0020907490000467988,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.3199100019999719,
"tests/onegov/core/test_framework.py::test_send_sms": 0.002412681999999222,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.004387205000000449,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.2689519280000354,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.6925798290000671,
"tests/onegov/core/test_framework.py::test_session_nonce_request": 0.0267776459999709,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.0019244970000613648,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.0016694599999595994,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.018793426999991425,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0018379369999479422,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.0013161979999836149,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.0013784939999368362,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.001489873000082298,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.0042924070000367465,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.001264129000048797,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.0021813299999848823,
"tests/onegov/core/test_layout.py::test_batched": 0.0014584340000283191,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.0015038290000006782,
"tests/onegov/core/test_layout.py::test_format_number": 0.0013055069999836633,
"tests/onegov/core/test_layout.py::test_relative_date": 0.001590761999921142,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.0018170449999956872,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.0023707629999307755,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.001356854000050589,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.0017097250000119857,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.002482152999959908,
"tests/onegov/core/test_metadata.py::test_metadata": 0.017080637999981718,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.18750140999992482,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.29777054600003794,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.41363857900000767,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.521832862999986,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.6341958879999652,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.7552797870000632,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.8733987319999983,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.9755195359999789,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.1004178349999734,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.09835870299997396,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.12849793800006637,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.1053092349999929,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.11123727300002884,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.06041354700005286,
"tests/onegov/core/test_orm.py::test_content_properties": 0.05380915500001038,
"tests/onegov/core/test_orm.py::test_create_schema": 0.06110494399996469,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.05993180500007611,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.0674790909999956,
"tests/onegov/core/test_orm.py::test_find_models": 0.0038063110000621236,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.005489000000068245,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.1026276659999894,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.08331604599993625,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.0796692490000055,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.06552472700002454,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.0326656330000219,
"tests/onegov/core/test_orm.py::test_json_type": 0.06593006800005696,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.053865973000029044,
"tests/onegov/core/test_orm.py::test_markup_text": 0.05798846199996888,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.08534400900003902,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.07099854199992706,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.08911502799998061,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.07077623799995081,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.05185909200008609,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.06593325099993308,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.06154512500000919,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.6355027249999807,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.04318310000002157,
"tests/onegov/core/test_orm.py::test_request_cache": 0.07257339999995338,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.07073928699992393,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.06951966700000867,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.06332041799998933,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.7149557879999406,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 0.682257403000051,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 0.7027932759999658,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.17356905000002598,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.08030022600001985,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.05576969300005885,
"tests/onegov/core/test_orm.py::test_session_scope": 0.04854867799997464,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.06910758899999792,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.05883629099992049,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.055266145000018696,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.05364039000005505,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.05302828099996759,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.054376011000044855,
"tests/onegov/core/test_request.py::test_has_permission": 0.027020715000048767,
"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.013921948999950473,
"tests/onegov/core/test_request.py::test_link_with_query_parameters_and_fragment[False]": 0.015754624000066997,
"tests/onegov/core/test_request.py::test_link_with_query_parameters_and_fragment[True]": 0.014981985000076747,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.039937359999953514,
"tests/onegov/core/test_request.py::test_return_to": 0.017278478000037012,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.001726295000025857,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03871928699993532,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.0012863110000012057,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.019642497999996067,
"tests/onegov/core/test_security.py::test_forget": 0.02503688800004511,
"tests/onegov/core/test_security.py::test_personal_access": 0.022702983999977278,
"tests/onegov/core/test_security.py::test_private_access": 0.027189901000042482,
"tests/onegov/core/test_security.py::test_secret_access": 0.025774808999983634,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.01815656499996976,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.8224373970000443,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.8150556059999303,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.8263712369999894,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.8160321990000057,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.8109509240000534,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 1.1181760629999076,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.816607949999991,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.0020930340000404613,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.012185955000006743,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.0040153269999905206,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.001580394000029628,
"tests/onegov/core/test_static.py::test_root_file_app": 0.01995359600005031,
"tests/onegov/core/test_static.py::test_static_file": 0.013175389000025461,
"tests/onegov/core/test_static.py::test_static_file_app": 0.02635262800009741,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.03734755200002837,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.18622969699998748,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.042865956999946775,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.054041944999994485,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.08325878700003386,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0017383590000576987,
"tests/onegov/core/test_theme.py::test_theme_application": 0.02679935100007924,
"tests/onegov/core/test_translation_string.py::test_escape": 0.0012440019999644392,
"tests/onegov/core/test_translation_string.py::test_html": 0.0011442750000014712,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.0012781159999804004,
"tests/onegov/core/test_translation_string.py::test_init": 0.001572398999996949,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.001314573999991353,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0013503709999440616,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.001312451000103465,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.0011760539999841058,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0012532009999404181,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.0012121130000082303,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.001851246999990508,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.0012785570000346524,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 1.9911176590000537,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.751929053999902,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0013101150000238704,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.001280570000062653,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.0014704780000442952,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0013328779999710605,
"tests/onegov/core/test_utils.py::test_batched": 0.0013618770000221048,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0013071120000063274,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.002828017000069849,
"tests/onegov/core/test_utils.py::test_bunch": 0.0012630379999905017,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0013620240000022932,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.0644017469999767,
"tests/onegov/core/test_utils.py::test_increment_name": 0.0013729849999322141,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0012131139999951301,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.0012628989999825535,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.001556580999988455,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.0012627169999746002,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.0013731959999745413,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.20414780400000154,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.007291002000044955,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.003045185000019046,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.0029690709999385945,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.003605118999928436,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0019659010000054877,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.0019114180000201486,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.004095433999964371,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.020767019999993863,
"tests/onegov/core/test_utils.py::test_local_lock": 0.001525101000027007,
"tests/onegov/core/test_utils.py::test_module_path": 0.0016423829999894224,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[ -empty_default-empty_default]": 0.0015343790000201807,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[ filename -None-filename]": 0.0015483060000178739,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[-None-_default_filename_]": 0.001716842999940127,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[-custom_default-custom_default]": 0.0015692049999529445,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[.-dot_default-dot_default]": 0.001572140000064337,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[.filename.-None-filename]": 0.0017006730000161951,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[<>:|?*-None-______]": 0.0016152810000562567,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[<>:|?*-fallback-______]": 0.001585797000018374,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-None-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]": 0.0016217040000015004,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[invalid<>:\"/\\\\|?*chars.txt-None-invalid_________chars.txt]": 0.0016163930000061555,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[valid_name-ignored_default-valid_name]": 0.0016891610000016044,
"tests/onegov/core/test_utils.py::test_normalize_for_path[ my path name is great! -None-my path name is great!]": 0.0015686749999872518,
"tests/onegov/core/test_utils.py::test_normalize_for_path[-None-_default_path_]": 0.0017885190000015427,
"tests/onegov/core/test_utils.py::test_normalize_for_path[-x-x]": 0.0022828599999797916,
"tests/onegov/core/test_utils.py::test_normalize_for_path[.-test.-None-.-test.]": 0.0015767699999855722,
"tests/onegov/core/test_utils.py::test_normalize_for_path[<:>-None-___]": 0.001604652000025908,
"tests/onegov/core/test_utils.py::test_normalize_for_path[<ll-x-_ll]": 0.001632803999996213,
"tests/onegov/core/test_utils.py::test_normalize_for_path[>-None-_]": 0.0015776509999341215,
"tests/onegov/core/test_utils.py::test_normalize_for_path[\\\\/n-None-__n]": 0.001631593000013254,
"tests/onegov/core/test_utils.py::test_normalize_for_path[\\\\[hello]|-None-_[hello]_]": 0.0015804349999939404,
"tests/onegov/core/test_utils.py::test_normalize_for_path[a/b/c-None-a_b_c]": 0.0016058539999903587,
"tests/onegov/core/test_utils.py::test_normalize_for_path[a/b/c-x-a_b_c]": 0.0016188589999615033,
"tests/onegov/core/test_utils.py::test_normalize_for_path[abc:*?-None-abc___]": 0.0016101819999789768,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.0016248999999675107,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.0013210390000040206,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.001368979000062609,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.001364259000013135,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.0013775940000186893,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.00133921199994802,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.0013489119999690047,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.001411037000025317,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.0013584589999595664,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0014465230000837437,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.0014542190000383926,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0014929210000218518,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.001446925000095689,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.001420033999977477,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.001385387999903287,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0013824829999862231,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.001428510999971877,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.0014225399999077126,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.001400989000046593,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0013813209999966602,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.0013556729999777417,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0013380190000020775,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.0013563139999632767,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.0013870220000171685,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0013586990000362675,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.0013510739999560428,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.0013595809999742414,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0014267959999756386,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0013978230000475378,
"tests/onegov/core/test_utils.py::test_post_thread": 0.7259945939999852,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.0014591179999570159,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.00138176299992665,
"tests/onegov/core/test_utils.py::test_safe_format": 0.0014294820000486652,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.005403937999972186,
"tests/onegov/core/test_utils.py::test_touch": 0.0019861709999418053,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.001274871000020994,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0012235049999844705,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.0012269410000271819,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.0015986909999696763,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.001362745999983872,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.00142279000004919,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.0013764220000211935,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.001402198999983284,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.001885850999997274,
"tests/onegov/directory/test_archive.py::test_archive_create": 1.0644962189999774,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.908591059999992,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 2.531122016999973,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.9526475619999246,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.9168412329999569,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 1.3399081459999707,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.850218051000013,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.8947570270000256,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.8637417169999821,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.8745385629999873,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.006958714000006694,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.004549524999958976,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.004400254000017867,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.005034314999988965,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.002375796000023911,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.011111946000028183,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.009075334000044677,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Date = YYYY.MM.DD\\n -\\n Date = ___\\n -date-]": 0.8834162670000296,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Date/Time = YYYY.MM.DD HH:MM\\n -\\n Date/Time = ___\\n -date_time-]": 0.9094355099999802,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Landscapes =\\n ( ) Tundra\\n ( ) Arctic\\n ( ) Desert\\n -\\n Landscapes =\\n [ ] Tundra\\n [ ] Arctic\\n [ ] Desert\\n -landscapes-expected_value4]": 0.9372117669999511,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Time = HH:MM\\n -\\n Time = ___\\n -time-]": 0.8772210210000821,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ...[5]\\n -\\n description = <markdown>\\n -description-]": 0.9586422729999526,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ...[5]\\n -\\n description = ___\\n -description-]": 0.9154541680000534,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ___\\n -\\n description = <markdown>\\n -description-]": 0.8946483409999928,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = http://\\n -\\n description = ...[5]\\n -description-]": 0.9130453419999753,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n my text = ___\\n -\\n my text = http://\\n -my_text-]": 0.8846370769999226,
"tests/onegov/directory/test_migration.py::test_directory_migration": 1.1242290109999544,
"tests/onegov/directory/test_migration.py::test_directory_migration_for_select": 1.5552228189999369,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.0031858960000477055,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011971928000036769,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.8159972460000517,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.8531680019998475,
"tests/onegov/directory/test_orm.py::test_custom_order": 1.2820880720000787,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.7499097429999324,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.008323295999957736,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 1.03493644699995,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.7253371070000298,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.7180506459999947,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.7288584720000131,
"tests/onegov/directory/test_orm.py::test_files": 1.593499472000019,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.9825754390001293,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 1.1157894350000106,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.8145962380000356,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 1.0082342619999736,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.8970264460000408,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 0.9439765609999995,
"tests/onegov/directory/test_orm.py::test_multi_files": 1.2784545499999922,
"tests/onegov/directory/test_orm.py::test_validation_error": 0.7029288549999251,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 1.0962231090001069,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.9324576700000762,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.9863899640000682,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.7349827230001438,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.7148729010000352,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.740581779000081,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.7993803900000103,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.6982095290001098,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.7282897420000154,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.801364139000043,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.7407862709999335,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.7394817090000743,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.7133959709998408,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.7462685750000446,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.7226760679998279,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.7302330149999534,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.7365689240000393,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.3687839269999813,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.7074586700000509,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.7483264379998218,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.7325850899999296,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.717500546999986,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.7476779239999587,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.7397183430000496,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.7323796419999553,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.735039241000095,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.4693332819999796,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.7834366499999987,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.7594910719998325,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 0.7728845990000082,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 1.01077062700017,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.9806134160000965,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 0.7250444749998906,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 0.8309799830000202,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.7225582650000888,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.9106047199999239,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 0.9598103900000297,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.3893058229999724,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.7494308340000089,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.7822046360000741,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.7404407950000405,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 0.8720925070000476,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 2.8633198280000443,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 0.7844098640000539,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 0.9205792610000572,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.753117897999914,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.7217381969999224,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.7801846650000925,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.7619534640000438,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.7751609160000044,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.7415186649999441,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.7424555759999976,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.7754371899999342,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 1.8328000839999277,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.7287343800001054,
"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.8248770300000388,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.7641072979998853,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.7632043050000448,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.7524478990000034,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.7328423430000157,
"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.7853855780000458,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 1.044808175999833,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 25.890862530999925,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.7923232140001346,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.7728153080000766,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.7527712319999864,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.762526785000091,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.7990456110001105,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7886571750001394,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.8204648439999573,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 1.0319676989998925,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.8069896319999543,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.8621762119998948,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 21.495203744000037,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.084521066999855,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.7859172940000008,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.7568983869999784,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.7126198959999783,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 0.9707514050001009,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.9142564610000363,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 0.8652090870000393,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.7673178009999901,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.7688196250001056,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 1.7659959960001288,
"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.7814939280000317,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.7958580510000957,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.8194444209999574,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.6969388480000589,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.7408565980000503,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.8523989949999304,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.7646176570000307,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.0017142589999821212,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 1.6517929609999555,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.8668439440000384,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.7310569769999802,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.73095550000005,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 0.8971327949999477,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 2.1049427269999796,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.7814575329999798,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 0.9914329360000238,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.7725251160001108,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 0.7955207079999127,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 16.111512085999948,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 1.0157784410000659,
"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.8022350449998612,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.7462209389999543,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.7750891320000619,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 0.7474138500000436,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.7690220870001667,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.002534603999947649,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.7664790009999933,
"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.7841469489999326,
"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.7571264720000954,
"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.7484567029997606,
"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]": 2.9935932450000564,
"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.7580048660000784,
"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.7934961849999809,
"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.7641199030000507,
"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.7541529829999263,
"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.7387182839999014,
"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.7572895129999324,
"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": 2.287874773999988,
"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.7375376200000119,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.7436931000000868,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.7399500229998921,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.7264840719999484,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.7206606889999421,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.7920972980001579,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.7297961620000706,
"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": 1.0528720599999133,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.843739785999901,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.7323392629999717,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.7335497110000233,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.7535074119999763,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 0.7610246139998935,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote": 0.6462497869999879,