-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.test_durations
More file actions
3338 lines (3338 loc) · 337 KB
/
.test_durations
File metadata and controls
3338 lines (3338 loc) · 337 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.06496642200002611,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.0021465480000415482,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 3.45932363,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.9439606760000174,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.009589148999992858,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9835575379999852,
"tests/onegov/activity/test_matching_db.py::test_alignment": 0.9931902710000031,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.9822609490000218,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 1.001237319000012,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 1.0115780749999885,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 1.0321477899999536,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 1.0057710119999967,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.273583809999991,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 0.9833670099999665,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 1.0072940510000308,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 1.0304044009999984,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.2685909679999554,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.2476819480000074,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 1.0072193720000087,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 0.9960451160000048,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.0012136400000031244,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.0013628009999706592,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.0025556340000036926,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.0021102850000147555,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.001580720999982077,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0013423319999787964,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.0013249299999813502,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.0010858210000037616,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.0018998500000009244,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.0016974689999926795,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.0011509120000141593,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.001045645999994349,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0009455670000022565,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.0009604549999835399,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.0010042469999973491,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.6868643620000228,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.0016959670000176175,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0010707810000383233,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.1468495870000197,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.7534037540000043,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 0.9768938599999899,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.0013870380000184923,
"tests/onegov/activity/test_models.py::test_activity_order": 1.168092066000014,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 1.0812815899999748,
"tests/onegov/activity/test_models.py::test_activity_states": 0.98182233,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.96025905099998,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 1.013929807000011,
"tests/onegov/activity/test_models.py::test_add_activity": 0.945071089999999,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6905709119999983,
"tests/onegov/activity/test_models.py::test_archive_period": 0.9922933449999789,
"tests/onegov/activity/test_models.py::test_attendee_age": 0.9535030609999922,
"tests/onegov/activity/test_models.py::test_attendees_count": 1.0343920249999883,
"tests/onegov/activity/test_models.py::test_booking_collection": 0.9775355300000115,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 1.030481476999995,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 0.9631767709999792,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.279185362000021,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 1.0140866060000064,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.978936721999986,
"tests/onegov/activity/test_models.py::test_confirm_period": 1.0192011060000254,
"tests/onegov/activity/test_models.py::test_date_changes": 0.967908164999983,
"tests/onegov/activity/test_models.py::test_deadline": 0.9833277010000074,
"tests/onegov/activity/test_models.py::test_happiness": 1.0343885950000242,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.9654530889999933,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.0010620430000187753,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0012898420000055921,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.00100587800002927,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.9560860629999866,
"tests/onegov/activity/test_models.py::test_invoices": 0.9744625550000023,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.750038939000035,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.9712074999999913,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 0.9521640949999721,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 0.9918250890000024,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 0.9610495000000014,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9753279929999792,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 0.6980558719999976,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 0.743232163999977,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 0.7139541980000104,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.7015439110000159,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.7008469010000056,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.7098502329999974,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.0064592769999763,
"tests/onegov/activity/test_models.py::test_occasion_duration": 1.0162659609999878,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 1.0029278229999932,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.98244871899999,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.2466040160000205,
"tests/onegov/activity/test_models.py::test_occasions": 0.9477213549999703,
"tests/onegov/activity/test_models.py::test_period_phases": 1.4809812549999606,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.13506058299995516,
"tests/onegov/activity/test_models.py::test_profiles": 0.9646570329999804,
"tests/onegov/activity/test_models.py::test_publication_request": 0.9435683270000084,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 1.059820101000014,
"tests/onegov/activity/test_models.py::test_timeline_filter": 1.099068434999964,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.9505450389999908,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.0011690970000017842,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.0010459909999838146,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.0012845409999897583,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.0011253320000434996,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.0011045919999617126,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.0011080490000097143,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.001193630000017265,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0013516770000023826,
"tests/onegov/agency/test_api.py::test_view_api": 16.615196235000013,
"tests/onegov/agency/test_app.py::test_app_custom": 0.7150413530000321,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 0.6893828760000247,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.6888065090000168,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6636697659999982,
"tests/onegov/agency/test_cli.py::test_create_pdf": 2.4628999190000513,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 2.525067406000005,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 1.0143780269999922,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.75912329800002,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.7563262499999723,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 0.7497056410000198,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.7653972689999478,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.7538333019999754,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 0.6967273459999888,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6673639699999967,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.7029261369999915,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 0.7225145650000115,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.7637473380000017,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.7504488300000105,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.7483408960000304,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.7753532819999691,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.7345791959999985,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.7432043019999526,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.7119507970000143,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.7130641719999744,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.6986773609999943,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.777131915999945,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.7912770179999882,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.7850112800000204,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.8050841010000624,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 0.7734041349999643,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.9351471770000046,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 1.4766217819999952,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.697597103999982,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.002839029000000437,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.001447286999990638,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.7547137429999964,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.001756037000006927,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6650440429999946,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.7099308480000275,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.7389723300000242,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.002648140999980342,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.6143307799999889,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.0012882379999723526,
"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.001251057999979821,
"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.0016377629999624332,
"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.001236902000016471,
"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.0012161529999161758,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Achermann-Bachmann Carmen Daria--result6]": 0.0013508949999732067,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Iten-Weber Debi--result3]": 0.0013144470000270303,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz Max--result1]": 0.0013158699999848977,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz--result0]": 0.0014829039999995075,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Omlin Christine--result2]": 0.0013086370000223724,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Owen Bradshaw Daniel-Daniel-result4]": 0.0013303670000937018,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Widmer Frank Cecile Ladina-Cecile Ladina-result5]": 0.001334665000001678,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.6693591409999726,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.001598272000023826,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.7070935109999823,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.0012791120000770206,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.6809445830000413,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.0016060060000882004,
"tests/onegov/agency/test_models.py::test_agency_move": 0.7176381259999971,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6580386779999969,
"tests/onegov/agency/test_models.py::test_agency_mutation": 0.666150301000016,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.7318479020000268,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6711634499999946,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6963385509999398,
"tests/onegov/agency/test_models.py::test_extended_membership": 0.6944518000000812,
"tests/onegov/agency/test_models.py::test_extended_person": 0.681399320999958,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.7531249200000047,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.7216206699999361,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6798700480000548,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.871371522000004,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.9064617730000464,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.8061475569999743,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 0.8015940230000069,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_lu": 0.8038593969999965,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.8338242200000536,
"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.67233670600001,
"tests/onegov/agency/test_security.py::test_security_permissions": 3.080409446000033,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.7402897079999775,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.7943494200000032,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.7208124059999363,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.0013304740000421589,
"tests/onegov/agency/test_views.py::test_agency_map": 1.017340688000047,
"tests/onegov/agency/test_views.py::test_basic_search": 1.4745767079999723,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 1.0432599149999646,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 0.8836877580000078,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.7580195289999665,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.8649982750000618,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 1.6621039959999848,
"tests/onegov/agency/test_views.py::test_view_mutations": 4.706241465000062,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 1.13479308400008,
"tests/onegov/agency/test_views.py::test_view_user_groups": 1.5956842549999237,
"tests/onegov/agency/test_views.py::test_views_general": 14.565037029999985,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 1.9189482720000228,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.808340241000053,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 0.9602532540000084,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.979592580999963,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.9766638029999513,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 0.9964883639999584,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.0961276010000347,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.9713436530000195,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.9975286559999859,
"tests/onegov/api/test_integration.py::test_integration": 0.7187653479999767,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.7007832770000846,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6505253940000557,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6917470600000684,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.0021408870000527713,
"tests/onegov/api/test_views.py::test_view_api": 1.2227172880000126,
"tests/onegov/api/test_views.py::test_view_private_field": 1.0135322869999186,
"tests/onegov/api/test_views.py::test_view_private_field_unauthorized": 0.7111926299999709,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid": 0.0022451639999871986,
"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.0014157080000245514,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 0.9643880879999642,
"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.6948645549999242,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.7074345189999462,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.7257476070000166,
"tests/onegov/chat/test_model.py::test_message_edited": 0.7059112519999644,
"tests/onegov/chat/test_model.py::test_message_file": 1.0206428009999513,
"tests/onegov/chat/test_model.py::test_message_order": 0.7039922470000306,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.7228492720000759,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.7081416660000741,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.70579339599999,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.7234992940000211,
"tests/onegov/core/test_adjacency_list.py::test_add_uses_binary_gap": 0.7013059370000292,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 0.7045050090000018,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6865857130000563,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6901500700000724,
"tests/onegov/core/test_adjacency_list.py::test_move": 1.9464595260000124,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6785285980000708,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.6965308589999495,
"tests/onegov/core/test_adjacency_list.py::test_move_uses_binary_gap": 0.7078330680000136,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.0013188369999852512,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.683357725999997,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.7351152379999917,
"tests/onegov/core/test_adjacency_list_performance.py::test_add_performance_large_collection[1000]": 0.9287683369999513,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.002002828000001955,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.001095571000007567,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.011346505000005891,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.001473100000055183,
"tests/onegov/core/test_cache.py::test_cache_flush": 1.1959163369999715,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.004354601999978058,
"tests/onegov/core/test_cache.py::test_cache_key": 0.004358912000043347,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.010859467999921435,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 2.1285166139999774,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.0012518149999891648,
"tests/onegov/core/test_cache.py::test_redis": 0.004208951999942201,
"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.7374139599999125,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.031765054999993936,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.033121869000012794,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.4750644819999934,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 1.349772393999956,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.031392546000006405,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.026252847000023394,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.043530832999977065,
"tests/onegov/core/test_cli.py::test_sendmail": 0.011033002999965902,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.005610633000003418,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.005516135999982907,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.013596887000005609,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.01951714200004062,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.053285390999974425,
"tests/onegov/core/test_collection.py::test_pagination": 0.0014942249999876367,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.001142223999977432,
"tests/onegov/core/test_converters.py::test_date_converter": 0.0016877490000410944,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.0011858869999059607,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0011994930000582826,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0011385479999717063,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.021691775999954643,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0010613530000114224,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.6573125140000116,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0011058469999625231,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.601249034000034,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.874848572000019,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.0011434510000185583,
"tests/onegov/core/test_crypto.py::test_random_password": 0.0021857699999827673,
"tests/onegov/core/test_crypto.py::test_random_token": 0.001342945000033069,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0013636330000394992,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0010794800000439864,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.0011971609999932298,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.0011557920000200284,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.0010740709999481624,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.008272085000044171,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.0126197210000214,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009516505999954461,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.03771384100002706,
"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.0013909869999793045,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0016704210000284547,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0011338309999473495,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.0019207020000067132,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.0010586610000018482,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.001101471000026777,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.0010981249999986176,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.0011740369999415634,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0010985049999021612,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.001087304000009226,
"tests/onegov/core/test_csv.py::test_parse_header": 0.002497067000035713,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.0010733189999996284,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.0016234130000043479,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.0015014229999792406,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.0013183379999759381,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0014994090000186588,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.001097904000005201,
"tests/onegov/core/test_custom_json.py::test_ensure_ascii": 0.0010742609999283559,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0010845410000115407,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.0010598329999993439,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.0011047870000311377,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.001080853000019033,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.0010623089999626245,
"tests/onegov/core/test_custom_msgpack.py::test_custom_msgpack": 0.0014076670000235936,
"tests/onegov/core/test_custom_msgpack.py::test_dictionary_serializer": 0.0010758729999338357,
"tests/onegov/core/test_custom_msgpack.py::test_make_serializable": 0.0011009509999553302,
"tests/onegov/core/test_custom_msgpack.py::test_not_serializable": 0.0013047829999095484,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[<b>safe</b>]": 0.0011640490000104364,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello ${name}]": 0.0011736669999891092,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello <b>${name}</b>]": 0.0011764019999986886,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data0]": 0.001205466999977034,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data1]": 0.0012180289999150773,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data2]": 0.0011890039999116198,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data3]": 0.001165160000027754,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data4]": 0.0011597299999834831,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data8]": 0.0011688189999858878,
"tests/onegov/core/test_custom_msgpack.py::test_serializable": 0.001141315999973358,
"tests/onegov/core/test_custom_msgpack.py::test_serializers": 0.0010700039999278488,
"tests/onegov/core/test_custom_msgpack.py::test_sqlalchemy_row_roundtrip": 0.04830626300008589,
"tests/onegov/core/test_custom_msgpack.py::test_string_serializer": 0.0011322189999987131,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.0014574709999806146,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.001965185999949881,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6805531399999722,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.7093157090000091,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.7043753850000485,
"tests/onegov/core/test_directive.py::test_extended_json_directive": 0.017322553999974843,
"tests/onegov/core/test_directive.py::test_form_directive": 0.027678901999991012,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.014588163999974313,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.8343505880000635,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.7258985169999619,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.737184883999987,
"tests/onegov/core/test_elements.py::test_link": 0.8111366359999579,
"tests/onegov/core/test_elements.py::test_link_slots": 0.001275274999954945,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.0431470859999763,
"tests/onegov/core/test_filestorage.py::test_independence": 0.0057065670000611135,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.1679883410000116,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.016199314999937542,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.025609010000039234,
"tests/onegov/core/test_framework.py::test_configure": 0.0030533039999909306,
"tests/onegov/core/test_framework.py::test_csrf": 0.05774138399999629,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.0018724070000075699,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0013326729999789677,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.0031141000000047825,
"tests/onegov/core/test_framework.py::test_encrypt_decrypt": 0.002597288999936609,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.01721329100001867,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.0159134409999524,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.022783531999948536,
"tests/onegov/core/test_framework.py::test_get_form": 0.0166902299999947,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.017111291000048823,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.0012446579999618734,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.010665232999997443,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.7181558190000601,
"tests/onegov/core/test_framework.py::test_request_messages": 0.01928726699998151,
"tests/onegov/core/test_framework.py::test_send_email": 0.0025619929999720625,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.002370674000019335,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.018399470999952428,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.0023064430000090397,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.2513183309999931,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.004969323000011627,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0024133530000085557,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.34281964999996717,
"tests/onegov/core/test_framework.py::test_send_sms": 0.002623489000029622,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.0044947119999960705,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.2470433230000708,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.6790685240000016,
"tests/onegov/core/test_framework.py::test_session_nonce_request": 0.02579552100002047,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.0019608110000035595,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.0015104670000596343,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.018907400000045982,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0017781299999910516,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.001160209000033774,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.0012610389999849758,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.0012508289999573208,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.004000061999988702,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.0011040649999927155,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.002012230000048021,
"tests/onegov/core/test_layout.py::test_batched": 0.0012751640000487896,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.001399617999993552,
"tests/onegov/core/test_layout.py::test_format_number": 0.00123432700002013,
"tests/onegov/core/test_layout.py::test_relative_date": 0.0013692919999925834,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.001743353999984265,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.002149517000020751,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.0012267839999822172,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.002270054000007349,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.003200080000056005,
"tests/onegov/core/test_metadata.py::test_metadata": 0.015300950000039393,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.1784978989999786,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.2892245240000193,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.40432374100004154,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.5195379300000127,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.6380616330000635,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.7691233850000003,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.8734275969999885,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.9859510790000172,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.0879798519999895,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.09441715500003056,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.11830189099993049,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.09754753199996458,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.09669405199991843,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.05576263800008974,
"tests/onegov/core/test_orm.py::test_content_properties": 0.049155327000050875,
"tests/onegov/core/test_orm.py::test_create_schema": 0.05699728400003323,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.05496692500003064,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.05939244000001054,
"tests/onegov/core/test_orm.py::test_find_models": 0.00327235899999323,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.005050369999992199,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.09962061500004893,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.07653488599999037,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.07399823699995522,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.062205941000001985,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.030059095999945384,
"tests/onegov/core/test_orm.py::test_json_type": 0.05965319000000591,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.05092109700007086,
"tests/onegov/core/test_orm.py::test_markup_text": 0.05358502799998632,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.08229919000001473,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.06201980200006574,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.08467427600004385,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.06782383299997718,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.049168910999924265,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.05705740999997033,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.05479961999998295,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.6768901570000025,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.037371109999980945,
"tests/onegov/core/test_orm.py::test_request_cache": 0.06310529500001394,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.05887428699998054,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.06333161500003825,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.05557676299991954,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.7105114720000074,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 0.7231825360000244,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 0.6781759480001028,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.1689309250000406,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.07647301900004777,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.05037841599994408,
"tests/onegov/core/test_orm.py::test_session_scope": 0.044435364000037225,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.06229701899997053,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.05720905600003334,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.04920587099996965,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.05221440199994731,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.049118910000004234,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.04720381099991755,
"tests/onegov/core/test_request.py::test_has_permission": 0.024075178000032338,
"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.013965150999979414,
"tests/onegov/core/test_request.py::test_link_with_query_parameters_and_fragment[True]": 0.016577779999977338,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.03513668299996198,
"tests/onegov/core/test_request.py::test_return_to": 0.016502912999953878,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.0015779940000584247,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03837881500004414,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.001194483999881868,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.016599941999970724,
"tests/onegov/core/test_security.py::test_forget": 0.022824920000005022,
"tests/onegov/core/test_security.py::test_personal_access": 0.019803552999974272,
"tests/onegov/core/test_security.py::test_private_access": 0.023274178999940887,
"tests/onegov/core/test_security.py::test_secret_access": 0.02356822900003408,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.014339371000005485,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.8650486119999528,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.8437336049999544,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.8608782040000165,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.8252119099999504,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.8404084409999655,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 1.1795310100000052,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.8259543599999688,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.0018348969999806286,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.010719354999991992,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.0032836280000196894,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.001247735000049488,
"tests/onegov/core/test_static.py::test_root_file_app": 0.01773353999999472,
"tests/onegov/core/test_static.py::test_static_file": 0.011776179999969827,
"tests/onegov/core/test_static.py::test_static_file_app": 0.022954584999979488,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.03407046699999228,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.18409782499998073,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.045103831000062655,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.055213369999989936,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.08101311099994746,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0017020870000123978,
"tests/onegov/core/test_theme.py::test_theme_application": 0.02369866400005094,
"tests/onegov/core/test_translation_string.py::test_escape": 0.0011200049999615658,
"tests/onegov/core/test_translation_string.py::test_html": 0.0010711930000297798,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.001146753999989869,
"tests/onegov/core/test_translation_string.py::test_init": 0.001276327000027777,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.001123118999998951,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0011549189999868759,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.0011256049999701645,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.0010718119999637565,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0010769740000000638,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.001060453000036432,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.0015328270000622979,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.001235942000050727,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 2.143737692000002,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.7867779919999975,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0011605189999954746,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.001155260000018643,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.001336952000031033,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0012027389999502702,
"tests/onegov/core/test_utils.py::test_batched": 0.0010920619999978953,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0011602500000549298,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.002398935000030633,
"tests/onegov/core/test_utils.py::test_bunch": 0.001161932000059096,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0012942700000166951,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.07309589800001959,
"tests/onegov/core/test_utils.py::test_increment_name": 0.0011720619999096016,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0011459020000188502,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.0011601579999478417,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.001467434999995021,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.001192188999937116,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.0011989719999974113,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.4037841410000169,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.006680515999903491,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.002579754999942452,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.0025978489999261,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.0031115639999370615,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0017945619999863993,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.00175306199997749,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.001667050999969888,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.01992421900001773,
"tests/onegov/core/test_utils.py::test_local_lock": 0.0013469000000441156,
"tests/onegov/core/test_utils.py::test_module_path": 0.00143868299994665,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[ -empty_default-empty_default]": 0.0013842800000247735,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[ filename -None-filename]": 0.001412382999944839,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[-None-_default_filename_]": 0.0014662940000107483,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[-custom_default-custom_default]": 0.0013524210000355197,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[.-dot_default-dot_default]": 0.0014204569999947125,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[.filename.-None-filename]": 0.0014207090000013523,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[<>:|?*-None-______]": 0.0014403849999666818,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[<>:|?*-fallback-______]": 0.0013699830000177826,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-None-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]": 0.001394427999969139,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[invalid<>:\"/\\\\|?*chars.txt-None-invalid_________chars.txt]": 0.0013850109999111737,
"tests/onegov/core/test_utils.py::test_normalize_for_filename[valid_name-ignored_default-valid_name]": 0.0013761749999048334,
"tests/onegov/core/test_utils.py::test_normalize_for_path[ my path name is great! -None-my path name is great!]": 0.0014616049999744973,
"tests/onegov/core/test_utils.py::test_normalize_for_path[-None-_default_path_]": 0.0015444089999050448,
"tests/onegov/core/test_utils.py::test_normalize_for_path[-x-x]": 0.0013472699999965698,
"tests/onegov/core/test_utils.py::test_normalize_for_path[.-test.-None-.-test.]": 0.001383108999959859,
"tests/onegov/core/test_utils.py::test_normalize_for_path[<:>-None-___]": 0.001347742000064045,
"tests/onegov/core/test_utils.py::test_normalize_for_path[<ll-x-_ll]": 0.0014007110000306966,
"tests/onegov/core/test_utils.py::test_normalize_for_path[>-None-_]": 0.0014607740000087688,
"tests/onegov/core/test_utils.py::test_normalize_for_path[\\\\/n-None-__n]": 0.0014096470000026784,
"tests/onegov/core/test_utils.py::test_normalize_for_path[\\\\[hello]|-None-_[hello]_]": 0.001350115000036567,
"tests/onegov/core/test_utils.py::test_normalize_for_path[a/b/c-None-a_b_c]": 0.0013951700000234268,
"tests/onegov/core/test_utils.py::test_normalize_for_path[a/b/c-x-a_b_c]": 0.0013550250000662345,
"tests/onegov/core/test_utils.py::test_normalize_for_path[abc:*?-None-abc___]": 0.001379401000008329,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.001626313000031132,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.0011637860000064393,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.0012959249999653366,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.0012280460000511084,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.0012235490000307436,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.0012054839999677824,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.001201637999997729,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.001213729000028252,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.001211864999959289,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0013168629999995574,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.0012756269999840697,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0012711170001011851,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.0012915849999899365,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.0012942799999109411,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.0012786910000386342,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0012172869999744762,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.0012278170000286082,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.0012725009999599024,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.001243264999970961,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0012113050000266412,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.0012260319999768399,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0012260729999979958,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.0012094109999907232,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.0012126880000096207,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0011862889999747495,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.001222114999961832,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.0012110140000345382,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0012300000000209366,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0012122359999580112,
"tests/onegov/core/test_utils.py::test_post_thread": 0.7603391399999282,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.0013461699999197663,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.0018255379999345678,
"tests/onegov/core/test_utils.py::test_safe_format": 0.0012454000000161614,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.004128192999928615,
"tests/onegov/core/test_utils.py::test_touch": 0.0017962530000090737,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.001068255999939538,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0010827739999399455,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.0011286200000881763,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.0014467479999780153,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.0012637749999839798,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.0012705749999213367,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.0012267650000126196,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.0012185570000156076,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.0014279220000616988,
"tests/onegov/directory/test_archive.py::test_archive_create": 0.9171865539999544,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.9006868679999798,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 0.9290700619999939,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.9227760960000637,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.9077165429999923,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 1.3025316800000155,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.8236986379999394,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.7989603589999774,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.7935153010000136,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.8409590109999385,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.006403286999955071,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.004025410999986434,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.00332745899999054,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.0044673310000007405,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.0019068409999363212,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.00879321600007188,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.00806554899997991,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Date = YYYY.MM.DD\\n -\\n Date = ___\\n -date-]": 0.9262715739999976,
"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.9221680729999662,
"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.9381764510000039,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n Time = HH:MM\\n -\\n Time = ___\\n -time-]": 0.9053011240000046,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ...[5]\\n -\\n description = <markdown>\\n -description-]": 0.9065450750000537,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ...[5]\\n -\\n description = ___\\n -description-]": 0.9099917249999976,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = ___\\n -\\n description = <markdown>\\n -description-]": 0.9447674340000276,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n description = http://\\n -\\n description = ...[5]\\n -description-]": 0.9451384200000916,
"tests/onegov/directory/test_migration.py::test_directory_field_type_migrations[\\n my text = ___\\n -\\n my text = http://\\n -my_text-]": 0.9146185779999882,
"tests/onegov/directory/test_migration.py::test_directory_migration": 1.0564272189999429,
"tests/onegov/directory/test_migration.py::test_directory_migration_for_select": 1.5460974380000607,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.002662590999989334,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011023672000021634,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.8289021380000463,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.8128829230000179,
"tests/onegov/directory/test_orm.py::test_custom_order": 1.325671418000013,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.7377068140000347,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.006550499000013588,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 1.0539880729999709,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.7147618059999559,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.718466039999953,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.7212263979999989,
"tests/onegov/directory/test_orm.py::test_files": 1.5905698830000006,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.9250608980000266,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 1.1048625620000507,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.794677214000103,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 1.011689878000027,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.8922310289999587,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 0.923313912000026,
"tests/onegov/directory/test_orm.py::test_multi_files": 1.3301801480000108,
"tests/onegov/directory/test_orm.py::test_validation_error": 0.726875634999999,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 1.072070161000056,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.9315502410000818,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.9611114059999295,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.7372122689999401,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.7523246619999213,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.7381798419999086,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.8462588189999565,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.7403878490000011,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.7580830329999912,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.8826069710000297,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.7703148850000048,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.8402194690000329,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.8376521389999994,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.7931132360000674,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.8067147820000287,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.8138820379999743,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.821631783999976,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.478953811999986,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.7543434189999516,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.7941299260000392,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.7626050499999906,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.7653471209999907,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.7638019959999269,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.73835638099996,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.821867602999987,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.7915786030000049,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.411987795000016,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.7203970979999781,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.7717688399999929,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 2.3215822439999556,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 1.0448002640000027,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.9764864239999724,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 0.7471818330000133,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 0.867265400000008,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.7808831590000977,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.959946145999993,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 1.0595322679999413,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.4481599290000418,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.8884732139999869,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.8560204370000406,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.8281060279999792,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 1.0512874530000431,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 1.0133635810000214,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 0.859033170000032,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 1.1110499720000462,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.869420295999987,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.8472903670000278,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.8313859209999919,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.8193308649999267,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.8505176529999972,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.81984203199994,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.8339472460000366,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.842911780999998,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 2.0335344660000487,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.8644170770000414,
"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.8735425350000128,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.8083495550000066,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.8017181670000468,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.7500755380000328,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.7558554649999678,
"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.7409760510000183,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 0.984838131999993,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 21.422333724999987,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.940456711999957,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.781914850000021,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.7328852599999891,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.7425105799999869,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.9159485540000105,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7944866990000037,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.7821957130000214,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 0.8910919060000424,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.9465971609999428,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.7757338529999629,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 22.94815918500018,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.0863862149999477,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.8976167609999948,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.7590831670000853,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.7996234539998568,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 1.111528271000111,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.9835188649999509,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 0.9301418079999166,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.8673705749999954,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.8355089449999014,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 1.9229674310000746,
"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.8927748930000234,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.8861622810001109,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.9589956590000384,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.8058133690000204,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.8359175780001351,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.9095226429999457,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.8731307269999888,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.001570048999951723,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 1.6622570669999277,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.9364233849998982,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.7615741129999378,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.763908549000007,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 0.9318110050000996,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 2.124358872000016,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.7912535660000231,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 0.9930053920001001,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.7696505669999851,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 0.7640693669999337,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 16.029327685999988,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 0.9967581649999602,
"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.7826131020000275,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.7668564769999193,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.7562142709999762,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 0.7666289270000561,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.7600676419999672,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.00232356100002562,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.7075274490000538,
"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.7595369550001578,
"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.7584440919999906,
"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.7454244320000498,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel[/__w/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xlsx]": 0.7637578410000287,
"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.7457214760000852,
"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.7553406329998325,
"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.756904284999905,
"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.7491766959998358,
"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.7172371350000049,
"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.7463628889998972,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xls]": 1.5967159609999726,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xlsx]": 1.265253754000014,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xls]": 1.4443465799998876,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xlsx]": 1.0654201789999433,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote": 0.7563227740000684,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_expats": 0.6252180059999546,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_invalid_values": 0.6304913110000143,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_missing_headers": 0.5952316539998037,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_regional": 0.6316621229999555,
"tests/onegov/election_day/formats/imports/vote/test_default.py::test_import_default_vote_temporary_results": 0.6139841760000309,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252.py::test_import_vote_ech_0252": 0.8403018010000096,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252.py::test_import_vote_ech_0252_complex": 1.0337026669999432,
"tests/onegov/election_day/formats/imports/vote/test_ech_0252_vote.py::test_import_ech_vote_gr": 1.7640967240000691,
"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.7476543440000114,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.7426107290001482,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.7491366040000003,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.7424889269998403,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.7497879390000435,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.798365485999966,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.7433645419999948,
"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.0222361130000763,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.820503533999954,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.735657159000084,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.730077187999882,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_received": 0.7901696420000235,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.7359674169998698,