-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.test_durations
3010 lines (3010 loc) · 298 KB
/
.test_durations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/onegov/activity/test_iso20022.py::test_extract_transactions": 0.06637636700003213,
"tests/onegov/activity/test_iso20022.py::test_extract_transactions_qr": 0.0021953059999759716,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching": 3.7052182049999374,
"tests/onegov/activity/test_iso20022.py::test_invoice_matching_multischema": 0.9177049290000241,
"tests/onegov/activity/test_iso20022.py::test_unique_transaction_ids": 0.011493599000004906,
"tests/onegov/activity/test_matching_db.py::test_activity_one_occasion": 0.9205497090000563,
"tests/onegov/activity/test_matching_db.py::test_alignment": 0.9344989820000364,
"tests/onegov/activity/test_matching_db.py::test_changing_priorities": 0.9095088970000234,
"tests/onegov/activity/test_matching_db.py::test_favorite_occasion": 0.929307495000046,
"tests/onegov/activity/test_matching_db.py::test_interleaved_dates": 1.28637501999998,
"tests/onegov/activity/test_matching_db.py::test_keep_groups_together": 0.9176931530000729,
"tests/onegov/activity/test_matching_db.py::test_overlapping_dates": 0.9349811860000159,
"tests/onegov/activity/test_matching_db.py::test_prefer_admin_children": 1.1837981859999331,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups": 0.9360213499999759,
"tests/onegov/activity/test_matching_db.py::test_prefer_groups_equal": 0.9494136039999717,
"tests/onegov/activity/test_matching_db.py::test_prefer_in_age_bracket": 0.9228405220000013,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_of_period": 1.1854161979999844,
"tests/onegov/activity/test_matching_db.py::test_prefer_organisers_over_members": 1.1771487720000664,
"tests/onegov/activity/test_matching_db.py::test_prefer_small_groups": 0.9200984730000528,
"tests/onegov/activity/test_matching_db.py::test_simple_match": 0.9307326000000558,
"tests/onegov/activity/test_matching_memory.py::test_accept_highest_priority": 0.0011434240000767204,
"tests/onegov/activity/test_matching_memory.py::test_anti_affinity_groups": 0.001325203999954283,
"tests/onegov/activity/test_matching_memory.py::test_booking_limit": 0.00261309699993717,
"tests/onegov/activity/test_matching_memory.py::test_day_alignment": 0.0025630630000250676,
"tests/onegov/activity/test_matching_memory.py::test_is_stable": 0.0014309210000647,
"tests/onegov/activity/test_matching_memory.py::test_limited_bookings_regression": 0.0013460509999845272,
"tests/onegov/activity/test_matching_memory.py::test_multi_day_alignment": 0.0014019860001326379,
"tests/onegov/activity/test_matching_memory.py::test_overlap_exclusion": 0.001038578999953188,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings": 0.001814404999947783,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_minutes_between": 0.002107862000059413,
"tests/onegov/activity/test_matching_memory.py::test_overlapping_bookings_with_multiple_dates": 0.0010707779999847844,
"tests/onegov/activity/test_matching_memory.py::test_prefer_association_children": 0.0009190359999706743,
"tests/onegov/activity/test_matching_memory.py::test_prefer_in_age_bracket": 0.0009682480000492433,
"tests/onegov/activity/test_matching_memory.py::test_prefer_motivated": 0.0009600500000033207,
"tests/onegov/activity/test_matching_memory.py::test_prefer_organiser_children": 0.0009061810000048354,
"tests/onegov/activity/test_matching_memory.py::test_serialize_scoring": 0.6178730650000261,
"tests/onegov/activity/test_matching_memory.py::test_split_day_alignment": 0.001954107000017302,
"tests/onegov/activity/test_matching_memory.py::test_unblockable_regression": 0.0010114770000200224,
"tests/onegov/activity/test_models.py::test_accept_booking": 1.0854642600000375,
"tests/onegov/activity/test_models.py::test_activity_cost_filter": 0.7034991999999534,
"tests/onegov/activity/test_models.py::test_activity_date_ranges": 0.9030242499999304,
"tests/onegov/activity/test_models.py::test_activity_filter_toggle": 0.0011713559999293466,
"tests/onegov/activity/test_models.py::test_activity_order": 0.8968636039999751,
"tests/onegov/activity/test_models.py::test_activity_period_filter": 0.9767290130000106,
"tests/onegov/activity/test_models.py::test_activity_states": 0.9069614869999896,
"tests/onegov/activity/test_models.py::test_activity_used_tags": 0.8979826120000212,
"tests/onegov/activity/test_models.py::test_activity_weekdays": 0.895386096999971,
"tests/onegov/activity/test_models.py::test_add_activity": 0.8730382629999554,
"tests/onegov/activity/test_models.py::test_age_barriers": 0.6277030589999981,
"tests/onegov/activity/test_models.py::test_archive_period": 0.9123031709999623,
"tests/onegov/activity/test_models.py::test_attendee_age": 1.0821751889999405,
"tests/onegov/activity/test_models.py::test_attendees_count": 0.9919348480000281,
"tests/onegov/activity/test_models.py::test_booking_collection": 0.910995669999977,
"tests/onegov/activity/test_models.py::test_booking_limit_exemption": 0.9327022609999744,
"tests/onegov/activity/test_models.py::test_booking_period_id_reference": 0.908403743000008,
"tests/onegov/activity/test_models.py::test_cancel_booking": 1.111268736999989,
"tests/onegov/activity/test_models.py::test_cancel_occasion": 0.9117892520000055,
"tests/onegov/activity/test_models.py::test_cancellation_deadline": 0.8887647970000216,
"tests/onegov/activity/test_models.py::test_confirm_period": 0.9186035980000042,
"tests/onegov/activity/test_models.py::test_date_changes": 0.8973639959999673,
"tests/onegov/activity/test_models.py::test_deadline": 0.9064586259999601,
"tests/onegov/activity/test_models.py::test_happiness": 0.9647784679999631,
"tests/onegov/activity/test_models.py::test_invoice_reference": 0.9183474600000068,
"tests/onegov/activity/test_models.py::test_invoice_reference_extract_feriennet_schema": 0.0009774140000899934,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_esr": 0.0011626790000036635,
"tests/onegov/activity/test_models.py::test_invoice_reference_format_feriennet": 0.0010350919999950747,
"tests/onegov/activity/test_models.py::test_invoice_reference_uniqueness": 0.894497728000033,
"tests/onegov/activity/test_models.py::test_invoices": 0.9123602480000272,
"tests/onegov/activity/test_models.py::test_no_occasion_in_period_filter": 0.6816367739999691,
"tests/onegov/activity/test_models.py::test_no_occasion_orphans": 0.9173118439999257,
"tests/onegov/activity/test_models.py::test_no_orphan_bookings": 0.9096703860000162,
"tests/onegov/activity/test_models.py::test_no_orphan_occasions": 0.910271559000023,
"tests/onegov/activity/test_models.py::test_no_overlapping_dates": 0.8973214799999596,
"tests/onegov/activity/test_models.py::test_occasion_ages": 0.9375959759999546,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_free": 0.6638889010000071,
"tests/onegov/activity/test_models.py::test_occasion_costs_all_inclusive_paid": 1.129664501000093,
"tests/onegov/activity/test_models.py::test_occasion_costs_custom": 0.6958274530000494,
"tests/onegov/activity/test_models.py::test_occasion_costs_free": 0.6697721570000112,
"tests/onegov/activity/test_models.py::test_occasion_costs_full": 0.6520816539999714,
"tests/onegov/activity/test_models.py::test_occasion_costs_partial": 0.6648942760000409,
"tests/onegov/activity/test_models.py::test_occasion_daterange_constraint": 1.0037768479999158,
"tests/onegov/activity/test_models.py::test_occasion_duration": 0.931376322999995,
"tests/onegov/activity/test_models.py::test_occasion_duration_with_multiple_dates": 0.9409796949999532,
"tests/onegov/activity/test_models.py::test_occasion_durations_query": 0.9196956300000352,
"tests/onegov/activity/test_models.py::test_occasion_owners": 1.1782305419999943,
"tests/onegov/activity/test_models.py::test_occasions": 0.8956475439999281,
"tests/onegov/activity/test_models.py::test_period_phases": 0.9142269449999958,
"tests/onegov/activity/test_models.py::test_prebooking_phases": 0.11203807399999732,
"tests/onegov/activity/test_models.py::test_profiles": 0.9300163749999797,
"tests/onegov/activity/test_models.py::test_publication_request": 0.9071197350000375,
"tests/onegov/activity/test_models.py::test_star_nobble_booking": 1.346962321000035,
"tests/onegov/activity/test_models.py::test_timeline_filter": 1.017080056999987,
"tests/onegov/activity/test_models.py::test_unique_activity": 0.8964523189999909,
"tests/onegov/activity/test_models.py::test_year_age_barrier": 0.001240155000004961,
"tests/onegov/activity/test_utils.py::test_extract_municipality": 0.0017523590000791955,
"tests/onegov/activity/test_utils.py::test_get_esr": 0.00202559999991081,
"tests/onegov/activity/test_utils.py::test_get_esr_no_spaces": 0.0017507169999930738,
"tests/onegov/activity/test_utils.py::test_get_esr_with_different_prefix": 0.0014333660000147574,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_newlines": 0.0015652810000119644,
"tests/onegov/activity/test_utils.py::test_get_esr_with_extra_spaces": 0.0018085050000422598,
"tests/onegov/activity/test_utils.py::test_merge_ranges": 0.0023303089999444637,
"tests/onegov/agency/test_api.py::test_view_api": 9.437388998000017,
"tests/onegov/agency/test_app.py::test_app_custom": 0.6765314600000352,
"tests/onegov/agency/test_app.py::test_app_enable_yubikey": 0.6459026109999968,
"tests/onegov/agency/test_app.py::test_app_pdf_class": 0.6503495119999911,
"tests/onegov/agency/test_app.py::test_app_root_pdf": 0.6316434439999625,
"tests/onegov/agency/test_cli.py::test_create_pdf": 1.12980328499998,
"tests/onegov/agency/test_cli.py::test_enable_yubikey": 1.4977382490000082,
"tests/onegov/agency/test_collections.py::test_extended_agencies": 0.6148782760000131,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_eq": 0.6814853180000568,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_ge": 0.7186801240000023,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_gt": 0.6916452369999888,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_le": 0.6947594979999394,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_lt": 0.7126230150000197,
"tests/onegov/agency/test_collections.py::test_extended_agencies_filter_title": 1.2637406750000082,
"tests/onegov/agency/test_collections.py::test_extended_people": 0.6530259300000125,
"tests/onegov/agency/test_collections.py::test_extended_people_exclude_hidden": 0.6490873549999492,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_first_last_name": 0.6499993030000724,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_eq": 0.695542299000067,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_ge": 0.681564399000024,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_gt": 0.6977899809999712,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_le": 0.6905097670000373,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_lt": 0.6874957750000021,
"tests/onegov/agency/test_collections.py::test_extended_people_filter_updated_multiple": 0.6847178819999726,
"tests/onegov/agency/test_collections.py::test_extended_people_pagination": 0.6556074729999182,
"tests/onegov/agency/test_collections.py::test_extended_people_used_agencies": 0.6763172899999859,
"tests/onegov/agency/test_collections.py::test_extended_people_used_letters": 0.6263821109999981,
"tests/onegov/agency/test_collections.py::test_membership_filters_eq": 0.7152646490000052,
"tests/onegov/agency/test_collections.py::test_membership_filters_ge": 0.7144948029999796,
"tests/onegov/agency/test_collections.py::test_membership_filters_gt": 0.7222505799999794,
"tests/onegov/agency/test_collections.py::test_membership_filters_le": 0.6931490430000053,
"tests/onegov/agency/test_collections.py::test_membership_filters_lt": 0.7189001339999663,
"tests/onegov/agency/test_collections.py::test_paginated_agencies": 0.7256253170000377,
"tests/onegov/agency/test_collections.py::test_paginated_memberships": 0.9697672070000181,
"tests/onegov/agency/test_excel_export.py::test_excel_export": 0.6556025689999956,
"tests/onegov/agency/test_forms.py::test_agency_mutation_form": 0.0033183229999735886,
"tests/onegov/agency/test_forms.py::test_apply_muation_form": 0.0015289229999666532,
"tests/onegov/agency/test_forms.py::test_extended_agency_form": 0.7113280629999963,
"tests/onegov/agency/test_forms.py::test_extended_agency_form_choices": 0.0015782050000439085,
"tests/onegov/agency/test_forms.py::test_membership_form": 0.6184686980000151,
"tests/onegov/agency/test_forms.py::test_membership_form_choices": 0.6298629570000003,
"tests/onegov/agency/test_forms.py::test_move_agency_form": 0.7027698850000093,
"tests/onegov/agency/test_forms.py::test_person_mutation_form": 0.00245723599999792,
"tests/onegov/agency/test_forms.py::test_user_group_form": 1.4980520949999914,
"tests/onegov/agency/test_import.py::test_parse_address_bs[H W-S 40, 4059 Basel-H W-S 40<br>4059 Basel]": 0.0012656110000079934,
"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.0012297939999825758,
"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.0016290089999984048,
"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.0012656420000212165,
"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.0012393319999546293,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Achermann-Bachmann Carmen Daria--result6]": 0.0013204550000409654,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Iten-Weber Debi--result3]": 0.0012975010000104703,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz Max--result1]": 0.0012926410000204669,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[M\\xfcller Moritz--result0]": 0.0014631090000420954,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Omlin Christine--result2]": 0.001288725000051727,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Owen Bradshaw Daniel-Daniel-result4]": 0.001293934999978319,
"tests/onegov/agency/test_import.py::test_parse_alliance_name[Widmer Frank Cecile Ladina-Cecile Ladina-result5]": 0.001286100999948303,
"tests/onegov/agency/test_initial_content.py::test_initial_content": 0.6570957179999937,
"tests/onegov/agency/test_layouts.py::test_agency_collection_layout": 0.0014928250000707521,
"tests/onegov/agency/test_layouts.py::test_agency_layout": 0.0015629569999759951,
"tests/onegov/agency/test_layouts.py::test_extended_person_collection_layout": 0.0012638770000421573,
"tests/onegov/agency/test_layouts.py::test_extended_person_layout": 0.0014577200000189805,
"tests/onegov/agency/test_layouts.py::test_membership_layout": 0.001267042999984369,
"tests/onegov/agency/test_models.py::test_agency_move": 0.6826642629999924,
"tests/onegov/agency/test_models.py::test_agency_muation": 0.6222467900000197,
"tests/onegov/agency/test_models.py::test_extended_agency": 0.6705174520000128,
"tests/onegov/agency/test_models.py::test_extended_agency_add_person": 0.6493503699999792,
"tests/onegov/agency/test_models.py::test_extended_agency_role_mappings": 0.6493238790000078,
"tests/onegov/agency/test_models.py::test_extended_membership": 0.6247215689999734,
"tests/onegov/agency/test_models.py::test_extended_person": 1.2733911779999971,
"tests/onegov/agency/test_models.py::test_membership_move_within_agency": 0.6745734419999962,
"tests/onegov/agency/test_models.py::test_membership_move_within_person": 0.6525972529999535,
"tests/onegov/agency/test_models.py::test_person_mutation": 0.6472300499999619,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_ar": 0.771574027999975,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default": 0.8294763380000063,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_access": 0.7017617189999896,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_default_hidden_by_publication": 0.6921733480000398,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_lu": 0.7480265489999738,
"tests/onegov/agency/test_pdf.py::test_agency_pdf_zg": 0.7289638299999979,
"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.6220998539999414,
"tests/onegov/agency/test_security.py::test_security_permissions": 3.2968369949999783,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_AGN": 0.6945341770000368,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_PER": 0.7220845260000033,
"tests/onegov/agency/test_utils.py::test_emails_for_new_ticket_parent_agency": 0.6683608659999436,
"tests/onegov/agency/test_utils.py::test_get_html_paragraph_with_line_breaks": 0.0013341289999857509,
"tests/onegov/agency/test_views.py::test_agency_map": 0.8679670690000307,
"tests/onegov/agency/test_views.py::test_basic_search": 22.737016996000023,
"tests/onegov/agency/test_views.py::test_disable_report_changes": 0.9105566429999499,
"tests/onegov/agency/test_views.py::test_excel_export_for_editor": 0.7954314669999576,
"tests/onegov/agency/test_views.py::test_excel_export_not_logged_in": 0.7143630899999494,
"tests/onegov/agency/test_views.py::test_footer_settings_custom_links": 0.8218720440000311,
"tests/onegov/agency/test_views.py::test_search_recently_published_object": 12.003878277000013,
"tests/onegov/agency/test_views.py::test_view_mutations": 3.2995788459999744,
"tests/onegov/agency/test_views.py::test_view_pdf_settings": 1.7155904400000281,
"tests/onegov/agency/test_views.py::test_view_user_groups": 1.312628042999961,
"tests/onegov/agency/test_views.py::test_views_general": 8.733985468000071,
"tests/onegov/agency/test_views.py::test_views_hidden_by_access": 1.4985152249999487,
"tests/onegov/agency/test_views.py::test_views_hidden_by_publication": 1.4123854089999668,
"tests/onegov/api/test_auth.py::test_get_token": 1.1954579089999697,
"tests/onegov/api/test_auth.py::test_get_token_basic": 1.152242020000017,
"tests/onegov/api/test_auth.py::test_get_token_bearer": 0.9105318299999112,
"tests/onegov/api/test_auth.py::test_jwt_auth": 1.3492243250001366,
"tests/onegov/api/test_auth.py::test_jwt_auth_basic": 0.9213635929999668,
"tests/onegov/api/test_auth.py::test_jwt_auth_bearer": 0.906811719000018,
"tests/onegov/api/test_auth.py::test_jwt_expired": 1.0071194110000192,
"tests/onegov/api/test_auth.py::test_token_generation": 1.557210456000007,
"tests/onegov/api/test_auth.py::test_token_generation_basic": 0.9161225899999295,
"tests/onegov/api/test_auth.py::test_token_generation_bearer": 0.8962742370000569,
"tests/onegov/api/test_integration.py::test_integration": 0.6494457599999919,
"tests/onegov/api/test_models.py::test_api_endpoint": 0.6530721159999757,
"tests/onegov/api/test_models.py::test_api_endpoint_collection": 0.6505253940000557,
"tests/onegov/api/test_models.py::test_api_endpoint_item": 0.6271616139999878,
"tests/onegov/api/test_models.py::test_api_exceptions": 0.0016140999999834094,
"tests/onegov/api/test_views.py::test_view_api": 1.8954572339999913,
"tests/onegov/api/test_views.py::test_view_private_field": 0.9346509260000175,
"tests/onegov/api/test_views.py::test_view_private_field_unauthorized": 0.6472242729999493,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[invalid.url.com]": 0.0043913149999639245,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_invalid[url1]": 0.0020426519999432458,
"tests/onegov/async_http/test_async_fetch.py::test_fetch_all_valid": 0.4658934429999704,
"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.6342180799999824,
"tests/onegov/chat/test_collection.py::test_latest_message": 0.6347138770000242,
"tests/onegov/chat/test_model.py::test_bound_messages": 0.6548728599999549,
"tests/onegov/chat/test_model.py::test_message_edited": 0.6370752239999433,
"tests/onegov/chat/test_model.py::test_message_file": 0.9572402670000315,
"tests/onegov/chat/test_model.py::test_message_order": 0.6473208229999727,
"tests/onegov/core/test_adjacency_list.py::test_add": 0.6446259009999835,
"tests/onegov/core/test_adjacency_list.py::test_add_or_get_page": 0.6349877719999881,
"tests/onegov/core/test_adjacency_list.py::test_add_sorted": 0.6552771940000071,
"tests/onegov/core/test_adjacency_list.py::test_add_unique_page": 0.6490362730000356,
"tests/onegov/core/test_adjacency_list.py::test_change_title": 0.6434311759999787,
"tests/onegov/core/test_adjacency_list.py::test_change_title_unordered": 0.6377251170000022,
"tests/onegov/core/test_adjacency_list.py::test_delete": 0.6395826160000411,
"tests/onegov/core/test_adjacency_list.py::test_move": 0.664675160999991,
"tests/onegov/core/test_adjacency_list.py::test_move_keep_hierarchy": 0.6655439330000377,
"tests/onegov/core/test_adjacency_list.py::test_move_root": 0.6315126199999668,
"tests/onegov/core/test_adjacency_list.py::test_numeric_priority": 0.0013085220000448317,
"tests/onegov/core/test_adjacency_list.py::test_page_by_path": 0.6476410839999858,
"tests/onegov/core/test_adjacency_list.py::test_polymorphic": 0.6539088630000265,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache": 0.0018833249999374857,
"tests/onegov/core/test_browser_session.py::test_browser_session_cache_prefix": 0.0010980190000964285,
"tests/onegov/core/test_browser_session.py::test_browser_session_count": 0.01115406299999222,
"tests/onegov/core/test_browser_session.py::test_browser_session_mangle": 0.0012510249999877487,
"tests/onegov/core/test_cache.py::test_cache_flush": 0.8592600139999718,
"tests/onegov/core/test_cache.py::test_cache_independence": 0.003955149999967489,
"tests/onegov/core/test_cache.py::test_cache_key": 0.0037740330000133326,
"tests/onegov/core/test_cache.py::test_cache_page_template": 0.010859467999921435,
"tests/onegov/core/test_cache.py::test_instance_lru_cache": 1.1642651050000268,
"tests/onegov/core/test_cache.py::test_lru_cache": 0.0012518149999891648,
"tests/onegov/core/test_cache.py::test_redis": 0.004195490000029167,
"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.6474378060000276,
"tests/onegov/core/test_cli.py::test_create_command_full_path[cli0]": 0.02858384999996133,
"tests/onegov/core/test_cli.py::test_create_command_group_existing_path[cli0]": 0.029619493999973656,
"tests/onegov/core/test_cli.py::test_create_command_group_single_path[cli0]": 0.030209688999946138,
"tests/onegov/core/test_cli.py::test_create_command_request_called[cli0]": 0.6490319050000153,
"tests/onegov/core/test_cli.py::test_create_command_wildcard[cli0]": 0.028920688999960475,
"tests/onegov/core/test_cli.py::test_group_context_with_schemas": 0.023733929000002263,
"tests/onegov/core/test_cli.py::test_group_context_without_schemas": 0.04296711099999584,
"tests/onegov/core/test_cli.py::test_sendmail": 0.01033465500006514,
"tests/onegov/core/test_cli.py::test_sendmail_exception": 0.006004394999990836,
"tests/onegov/core/test_cli.py::test_sendmail_invalid_queue": 0.0056181040000069515,
"tests/onegov/core/test_cli.py::test_sendmail_limit": 0.013661423000030481,
"tests/onegov/core/test_cli.py::test_sendmail_smtp": 0.020617665999964174,
"tests/onegov/core/test_collection.py::test_generic_collection": 0.04725133000005144,
"tests/onegov/core/test_collection.py::test_pagination": 0.0013062069999705272,
"tests/onegov/core/test_collection.py::test_pagination_negative_page_index": 0.001042104999953608,
"tests/onegov/core/test_converters.py::test_date_converter": 0.0015558539999460663,
"tests/onegov/core/test_converters.py::test_datetime_converter": 0.0011252489999833415,
"tests/onegov/core/test_converters.py::test_literal_converter": 0.0011852599999997437,
"tests/onegov/core/test_converters.py::test_uuid_converter": 0.0011011449999500655,
"tests/onegov/core/test_cronjobs.py::test_disable_cronjobs": 0.017725314999950115,
"tests/onegov/core/test_cronjobs.py::test_job_offset": 0.0010771690000410672,
"tests/onegov/core/test_cronjobs.py::test_next_runtime": 0.5262872499999958,
"tests/onegov/core/test_cronjobs.py::test_parse_cron": 0.0011058140000272942,
"tests/onegov/core/test_cronjobs.py::test_run_cronjob": 0.5960381340000254,
"tests/onegov/core/test_crypto.py::test_hash_password": 1.8721955990000083,
"tests/onegov/core/test_crypto.py::test_no_null_bytes": 0.001053755999976147,
"tests/onegov/core/test_crypto.py::test_random_password": 0.002255289000004268,
"tests/onegov/core/test_crypto.py::test_random_token": 0.001177767000001495,
"tests/onegov/core/test_csv.py::test_avoid_duplicates": 0.0013238409999871692,
"tests/onegov/core/test_csv.py::test_check_duplicates": 0.0010011789999566645,
"tests/onegov/core/test_csv.py::test_convert_irregular_list_of_dicts_to_csv": 0.0010898539999857348,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv": 0.0011066150000260677,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_csv_escaping": 0.001038027000049624,
"tests/onegov/core/test_csv.py::test_convert_list_of_dicts_to_xlsx": 0.008504911999978049,
"tests/onegov/core/test_csv.py::test_convert_multiple_list_of_dicts_to_xlsx": 0.012774178000029224,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xls]": 0.009374772999933612,
"tests/onegov/core/test_csv.py::test_convert_to_csv[/__w/onegov-cloud/onegov-cloud/tests/onegov/core/fixtures/excel.xlsx]": 0.040790548000018134,
"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.00133530100004009,
"tests/onegov/core/test_csv.py::test_convert_xlsx_to_csv_wrong_format": 0.0016348010000228896,
"tests/onegov/core/test_csv.py::test_detect_encoding": 0.0014185060000500016,
"tests/onegov/core/test_csv.py::test_empty_line_csv_file": 0.0017894989999831523,
"tests/onegov/core/test_csv.py::test_match_headers_ambiguous": 0.0010488279999663064,
"tests/onegov/core/test_csv.py::test_match_headers_case": 0.0010668900000609938,
"tests/onegov/core/test_csv.py::test_match_headers_duplicate": 0.0010420140000633182,
"tests/onegov/core/test_csv.py::test_match_headers_missing": 0.0011022560000242265,
"tests/onegov/core/test_csv.py::test_match_headers_order": 0.0010725209999691288,
"tests/onegov/core/test_csv.py::test_normalize_header": 0.001043738000078065,
"tests/onegov/core/test_csv.py::test_parse_header": 0.0022798050000005787,
"tests/onegov/core/test_csv.py::test_remove_first_word": 0.001018029999954706,
"tests/onegov/core/test_csv.py::test_simple_csv_file": 0.0015661029999591847,
"tests/onegov/core/test_csv.py::test_wacky_csv_file": 0.0014573290000043926,
"tests/onegov/core/test_csv.py::test_xlsx_title_validation": 0.001247948000013821,
"tests/onegov/core/test_custom_json.py::test_custom_json": 0.0014017160000321383,
"tests/onegov/core/test_custom_json.py::test_dictionary_serializer": 0.0010235700000293946,
"tests/onegov/core/test_custom_json.py::test_ensure_ascii": 0.0010298910000301476,
"tests/onegov/core/test_custom_json.py::test_not_serializable": 0.0010361639999700856,
"tests/onegov/core/test_custom_json.py::test_prefix_serializer": 0.0010499100000060935,
"tests/onegov/core/test_custom_json.py::test_serializable": 0.0011404069999798594,
"tests/onegov/core/test_custom_json.py::test_serializers": 0.001090655999973933,
"tests/onegov/core/test_custom_json.py::test_sort_keys": 0.0010408020000340912,
"tests/onegov/core/test_custom_msgpack.py::test_custom_msgpack": 0.0013051450000034492,
"tests/onegov/core/test_custom_msgpack.py::test_dictionary_serializer": 0.0010381669999901533,
"tests/onegov/core/test_custom_msgpack.py::test_make_serializable": 0.0010354519999964396,
"tests/onegov/core/test_custom_msgpack.py::test_not_serializable": 0.0010226990000319347,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[<b>safe</b>]": 0.001213444999962121,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello ${name}]": 0.001133245000005445,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[Hello <b>${name}</b>]": 0.0011369519999675504,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data0]": 0.0011984669999947073,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data1]": 0.001197954000019763,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data2]": 0.0011822860000165747,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data3]": 0.0011750319999350722,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data4]": 0.0011621589999890602,
"tests/onegov/core/test_custom_msgpack.py::test_roundtrip[data8]": 0.0011355590000334814,
"tests/onegov/core/test_custom_msgpack.py::test_serializable": 0.0011183080000023438,
"tests/onegov/core/test_custom_msgpack.py::test_serializers": 0.0010063269999704971,
"tests/onegov/core/test_custom_msgpack.py::test_string_serializer": 0.001041212999950858,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_abort": 0.0014378619999888542,
"tests/onegov/core/test_datamanager.py::test_file_data_manager_commit": 0.001892761000021892,
"tests/onegov/core/test_debug.py::test_analyze_all_queries": 0.6264440909999962,
"tests/onegov/core/test_debug.py::test_analyze_redundant_sql_query": 0.6214950360001126,
"tests/onegov/core/test_debug.py::test_analyze_simple_sql_query": 0.6307002809999176,
"tests/onegov/core/test_directive.py::test_form_directive": 0.029786097999988215,
"tests/onegov/core/test_directive.py::test_query_form_class": 0.01582635899995921,
"tests/onegov/core/test_elements.py::test_class_attributes": 0.7321138089999408,
"tests/onegov/core/test_elements.py::test_confirm_link": 0.6661511180000161,
"tests/onegov/core/test_elements.py::test_intercooler_link": 0.6743472389999852,
"tests/onegov/core/test_elements.py::test_link": 0.7133571369999459,
"tests/onegov/core/test_elements.py::test_link_slots": 0.0012457249999897613,
"tests/onegov/core/test_filestorage.py::test_filestorage": 0.04117665500007206,
"tests/onegov/core/test_filestorage.py::test_independence": 0.00575778999996146,
"tests/onegov/core/test_filters.py::test_jsx_filter": 0.16753900200001226,
"tests/onegov/core/test_framework.py::test_browser_session_dirty": 0.015119384999934482,
"tests/onegov/core/test_framework.py::test_browser_session_request": 0.026518102000011368,
"tests/onegov/core/test_framework.py::test_configure": 0.0024472950000244964,
"tests/onegov/core/test_framework.py::test_csrf": 0.04967844200007221,
"tests/onegov/core/test_framework.py::test_csrf_secret_key": 0.0018156759999214955,
"tests/onegov/core/test_framework.py::test_custom_signer": 0.0012278399999559042,
"tests/onegov/core/test_framework.py::test_email_attachments": 0.0030473740000047655,
"tests/onegov/core/test_framework.py::test_fix_webassets_url": 0.01738023300003988,
"tests/onegov/core/test_framework.py::test_fixed_translation_chain_length": 0.015058883000051537,
"tests/onegov/core/test_framework.py::test_generic_redirect": 0.02565946200002145,
"tests/onegov/core/test_framework.py::test_get_form": 0.01516868699997076,
"tests/onegov/core/test_framework.py::test_get_localized_form": 0.016437254000038592,
"tests/onegov/core/test_framework.py::test_html_to_text": 0.0011999789999777022,
"tests/onegov/core/test_framework.py::test_object_by_path": 0.011021701999993638,
"tests/onegov/core/test_framework.py::test_registered_upgrade_tasks": 0.6381240499999876,
"tests/onegov/core/test_framework.py::test_request_messages": 0.017618016999961128,
"tests/onegov/core/test_framework.py::test_send_email": 0.0026166319999560983,
"tests/onegov/core/test_framework.py::test_send_email_plaintext_alternative": 0.0024495200000274053,
"tests/onegov/core/test_framework.py::test_send_email_transaction": 0.017700138999941828,
"tests/onegov/core/test_framework.py::test_send_email_with_name": 0.002360033000002204,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch": 0.27412804299996196,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_illegal_category": 0.003925365999975838,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_missing_unsubscribe": 0.0019235510000612521,
"tests/onegov/core/test_framework.py::test_send_marketing_email_batch_size_limit": 0.34392537700006187,
"tests/onegov/core/test_framework.py::test_send_sms": 0.0022120579999977963,
"tests/onegov/core/test_framework.py::test_send_sms_batch": 0.003989964999902895,
"tests/onegov/core/test_framework.py::test_send_transactional_email_batch": 0.25805948799995804,
"tests/onegov/core/test_framework.py::test_send_zulip": 0.6405205430000365,
"tests/onegov/core/test_framework.py::test_session_nonce_request": 0.023882303999982923,
"tests/onegov/core/test_framework.py::test_set_application_id": 0.002005129999986366,
"tests/onegov/core/test_framework.py::test_sign_unsign": 0.001338969000016732,
"tests/onegov/core/test_framework.py::test_virtual_host_request": 0.01849610599992957,
"tests/onegov/core/test_html.py::test_sanitize_html": 0.0015940029999796934,
"tests/onegov/core/test_html.py::test_sanitize_svg": 0.001129617000003691,
"tests/onegov/core/test_i18n.py::test_default_locale_negotiator": 0.0011819759999980306,
"tests/onegov/core/test_i18n.py::test_get_translation_bound_form": 0.0013183290000142733,
"tests/onegov/core/test_i18n.py::test_get_translations": 0.005848082999989401,
"tests/onegov/core/test_i18n.py::test_merge_translations": 0.0010804450000136967,
"tests/onegov/core/test_i18n.py::test_pofiles": 0.0020072260001029463,
"tests/onegov/core/test_layout.py::test_batched": 0.001227660000040487,
"tests/onegov/core/test_layout.py::test_chunks": 0.0016789130000915975,
"tests/onegov/core/test_layout.py::test_format_date": 0.001404670000056285,
"tests/onegov/core/test_layout.py::test_format_number": 0.0011625000000208274,
"tests/onegov/core/test_layout.py::test_relative_date": 0.0013932889999637155,
"tests/onegov/core/test_mail.py::test_format_single_address": 0.0016098840000040582,
"tests/onegov/core/test_mail.py::test_format_single_address_coerced": 0.002118814000027669,
"tests/onegov/core/test_mail.py::test_needs_qp_encode": 0.0012207580000449525,
"tests/onegov/core/test_markdown.py::test_markdown_line_endings": 0.0015657300000384566,
"tests/onegov/core/test_markdown.py::test_render_untrusted_markdown": 0.002207027999929778,
"tests/onegov/core/test_metadata.py::test_metadata": 0.013636226000016904,
"tests/onegov/core/test_orm.py::test_application_retries[1]": 0.178921699,
"tests/onegov/core/test_orm.py::test_application_retries[2]": 0.2828057670000703,
"tests/onegov/core/test_orm.py::test_application_retries[3]": 0.3962258299999917,
"tests/onegov/core/test_orm.py::test_application_retries[4]": 0.5093493609999769,
"tests/onegov/core/test_orm.py::test_application_retries[5]": 0.619883236000021,
"tests/onegov/core/test_orm.py::test_application_retries[6]": 0.73932088600003,
"tests/onegov/core/test_orm.py::test_application_retries[7]": 0.8557335479999892,
"tests/onegov/core/test_orm.py::test_application_retries[8]": 0.980888847000017,
"tests/onegov/core/test_orm.py::test_application_retries[9]": 1.0822259679999888,
"tests/onegov/core/test_orm.py::test_associable_many_to_many": 0.08634761900003696,
"tests/onegov/core/test_orm.py::test_associable_multiple": 0.11079220499999565,
"tests/onegov/core/test_orm.py::test_associable_one_to_many": 0.08677259499995671,
"tests/onegov/core/test_orm.py::test_associable_one_to_one": 0.09269353399997726,
"tests/onegov/core/test_orm.py::test_content_mixin": 0.04975131800000554,
"tests/onegov/core/test_orm.py::test_content_properties": 0.049132905000021765,
"tests/onegov/core/test_orm.py::test_create_schema": 0.04878350500001716,
"tests/onegov/core/test_orm.py::test_dict_properties": 0.053738489000011214,
"tests/onegov/core/test_orm.py::test_extensions_schema": 0.055902543999991394,
"tests/onegov/core/test_orm.py::test_find_models": 0.002503251000007367,
"tests/onegov/core/test_orm.py::test_get_polymorphic_class": 0.00449612100004515,
"tests/onegov/core/test_orm.py::test_i18n_translation_hybrid_independence": 0.0985258070000441,
"tests/onegov/core/test_orm.py::test_i18n_with_request": 0.06894394400001147,
"tests/onegov/core/test_orm.py::test_independent_managers": 0.07397976500004688,
"tests/onegov/core/test_orm.py::test_independent_sessions": 0.05838661199993567,
"tests/onegov/core/test_orm.py::test_is_valid_schema": 0.02677597000001697,
"tests/onegov/core/test_orm.py::test_json_type": 0.05377000800001497,
"tests/onegov/core/test_orm.py::test_lowercase_text": 0.04893142500003478,
"tests/onegov/core/test_orm.py::test_markup_text": 0.04762872199995627,
"tests/onegov/core/test_orm.py::test_orm_cache": 0.07765936700002385,
"tests/onegov/core/test_orm.py::test_orm_cache_flush": 0.059966428000052474,
"tests/onegov/core/test_orm.py::test_orm_scenario": 0.07926167500005477,
"tests/onegov/core/test_orm.py::test_orm_signals": 0.05969762499995568,
"tests/onegov/core/test_orm.py::test_orm_signals_data_flushed": 0.04512216799997759,
"tests/onegov/core/test_orm.py::test_orm_signals_independence": 0.06442667400000346,
"tests/onegov/core/test_orm.py::test_orm_signals_schema": 0.05668850399996472,
"tests/onegov/core/test_orm.py::test_pickle_model": 0.6212522669999885,
"tests/onegov/core/test_orm.py::test_postgres_timezone": 0.037403930999971635,
"tests/onegov/core/test_orm.py::test_request_cache": 0.05905938200004357,
"tests/onegov/core/test_orm.py::test_request_cache_flush": 0.057617364000009275,
"tests/onegov/core/test_orm.py::test_schema_bound_session": 0.06262265799995248,
"tests/onegov/core/test_orm.py::test_scoped_signals": 0.05491805799994154,
"tests/onegov/core/test_orm.py::test_selectable_sql_query": 0.6588365060000001,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_array": 0.6582886260000009,
"tests/onegov/core/test_orm.py::test_selectable_sql_query_with_dots": 1.49905046300006,
"tests/onegov/core/test_orm.py::test_serialization_failure": 0.1649593880000566,
"tests/onegov/core/test_orm.py::test_session_manager_i18n": 0.07043528500003049,
"tests/onegov/core/test_orm.py::test_session_manager_sharing": 0.04518925800005036,
"tests/onegov/core/test_orm.py::test_session_scope": 0.045381757000029666,
"tests/onegov/core/test_orm.py::test_sqlalchemy_aggregate": 0.05753838399994038,
"tests/onegov/core/test_orm.py::test_timestamp_mixin": 0.05381855799993218,
"tests/onegov/core/test_orm.py::test_unaccent_expression": 0.048472597999989375,
"tests/onegov/core/test_orm.py::test_utc_datetime_aware": 0.046708461999969586,
"tests/onegov/core/test_orm.py::test_utc_datetime_naive": 0.046289236000006895,
"tests/onegov/core/test_orm.py::test_uuid_type": 0.04679513199999974,
"tests/onegov/core/test_request.py::test_has_permission": 0.022906094000063604,
"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.014138403999993443,
"tests/onegov/core/test_request.py::test_permission_by_view": 0.03252606699993521,
"tests/onegov/core/test_request.py::test_return_to": 0.01592050799996514,
"tests/onegov/core/test_request.py::test_return_to_mixin": 0.0014631800000870498,
"tests/onegov/core/test_request.py::test_url_safe_token": 0.03517166299997143,
"tests/onegov/core/test_request.py::test_vhm_root_application_url": 0.002005318999977135,
"tests/onegov/core/test_request.py::test_vhm_root_urls": 0.0011417709999932413,
"tests/onegov/core/test_security.py::test_anonymous_access": 0.016285587999959716,
"tests/onegov/core/test_security.py::test_forget": 0.02206672800002707,
"tests/onegov/core/test_security.py::test_personal_access": 0.020274979999953757,
"tests/onegov/core/test_security.py::test_private_access": 0.021721282999976665,
"tests/onegov/core/test_security.py::test_secret_access": 0.022398839999993925,
"tests/onegov/core/test_security.py::test_secure_cookie": 0.014568552000014279,
"tests/onegov/core/test_sentry.py::test_has_context[with ppi]": 0.7559318720000192,
"tests/onegov/core/test_sentry.py::test_has_context[without ppi]": 0.7804921039999613,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[with ppi]": 0.7417139490000295,
"tests/onegov/core/test_sentry.py::test_has_context_logged_in[without ppi]": 0.7370755489999397,
"tests/onegov/core/test_sentry.py::test_view_db_connection_exception": 0.7543746449999276,
"tests/onegov/core/test_sentry.py::test_view_exceptions": 1.0137453810000352,
"tests/onegov/core/test_sentry.py::test_view_http_exception": 0.7573921370000676,
"tests/onegov/core/test_sms_processor.py::test_get_sms_queue_processor": 0.0018917990000204554,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor": 0.010723870999981955,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_failed": 0.003282905999981267,
"tests/onegov/core/test_sms_processor.py::test_sms_queue_processor_send": 0.0012933040000007168,
"tests/onegov/core/test_static.py::test_root_file_app": 0.018537452000032317,
"tests/onegov/core/test_static.py::test_static_file": 0.015231653000057577,
"tests/onegov/core/test_static.py::test_static_file_app": 0.023204401000043617,
"tests/onegov/core/test_static.py::test_static_files_directive": 0.033425323000017215,
"tests/onegov/core/test_templates.py::test_boolean_attributes": 0.16441740199996957,
"tests/onegov/core/test_templates.py::test_chameleon_with_translation": 0.038503891999994266,
"tests/onegov/core/test_templates.py::test_inject_default_vars": 0.04945270199999641,
"tests/onegov/core/test_templates.py::test_macro_lookup": 0.06856097999997246,
"tests/onegov/core/test_theme.py::test_get_filename": 0.0014400270000010096,
"tests/onegov/core/test_theme.py::test_theme_application": 0.022833840999965105,
"tests/onegov/core/test_translation_string.py::test_escape": 0.001050709999958599,
"tests/onegov/core/test_translation_string.py::test_html": 0.001013500999988537,
"tests/onegov/core/test_translation_string.py::test_html_format": 0.0011246389999541861,
"tests/onegov/core/test_translation_string.py::test_init": 0.0012358950000361801,
"tests/onegov/core/test_translation_string.py::test_init_mapping_markup": 0.001090513999997711,
"tests/onegov/core/test_translation_string.py::test_init_mapping_plain": 0.0010888229999750365,
"tests/onegov/core/test_translation_string.py::test_init_translation_string": 0.0011035189999688555,
"tests/onegov/core/test_translation_string.py::test_interpolate": 0.0010597570000072665,
"tests/onegov/core/test_translation_string.py::test_mod_markup": 0.0010836319999611987,
"tests/onegov/core/test_translation_string.py::test_mod_plain": 0.001057672999991155,
"tests/onegov/core/test_upgrade.py::test_get_module_order_key": 0.0013933190000443574,
"tests/onegov/core/test_upgrade.py::test_raw_task_requirement": 0.0012374380000323981,
"tests/onegov/core/test_upgrade.py::test_raw_upgrade_cli": 1.7777503960000445,
"tests/onegov/core/test_upgrade.py::test_upgrade_cli": 2.3901741859999674,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_function_names": 0.0011165429999095977,
"tests/onegov/core/test_upgrade.py::test_upgrade_duplicate_tasks": 0.0010699270000031902,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_registration": 0.0012320499999987078,
"tests/onegov/core/test_upgrade.py::test_upgrade_task_requirements": 0.0011386039998910746,
"tests/onegov/core/test_utils.py::test_batched": 0.0010944329999347246,
"tests/onegov/core/test_utils.py::test_batched_list_container": 0.0011108539999895584,
"tests/onegov/core/test_utils.py::test_binary_dictionary": 0.002262401999814756,
"tests/onegov/core/test_utils.py::test_bunch": 0.0011000230000490774,
"tests/onegov/core/test_utils.py::test_ensure_scheme": 0.0012253870000904499,
"tests/onegov/core/test_utils.py::test_get_unique_hstore_keys": 0.056452098999898226,
"tests/onegov/core/test_utils.py::test_increment_name": 0.0010425350000105027,
"tests/onegov/core/test_utils.py::test_is_non_string_iterable": 0.0010906250000743967,
"tests/onegov/core/test_utils.py::test_is_sorted": 0.0010551990000067235,
"tests/onegov/core/test_utils.py::test_is_subpath": 0.0013314750000290587,
"tests/onegov/core/test_utils.py::test_is_uuid": 0.0011161620000166295,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_format": 0.001134396999987075,
"tests/onegov/core/test_utils.py::test_is_valid_yubikey_otp": 0.3037862570000698,
"tests/onegov/core/test_utils.py::test_lchop": 0.0017127140001775842,
"tests/onegov/core/test_utils.py::test_linkify": 0.006805829999962043,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_with_email_and_links": 0.00272404300017115,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domain_and_without_email": 0.002446045000056074,
"tests/onegov/core/test_utils.py::test_linkify_with_custom_domains": 0.0030212979999078016,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel0]": 0.0017575699999952121,
"tests/onegov/core/test_utils.py::test_linkify_with_phone[tel1]": 0.0018189249999522872,
"tests/onegov/core/test_utils.py::test_linkify_with_phone_newline": 0.001547678000065389,
"tests/onegov/core/test_utils.py::test_load_tlds": 0.019540583999969385,
"tests/onegov/core/test_utils.py::test_local_lock": 0.0013155950001646488,
"tests/onegov/core/test_utils.py::test_module_path": 0.0014586829998961548,
"tests/onegov/core/test_utils.py::test_normalize_for_url": 0.0013192410000328891,
"tests/onegov/core/test_utils.py::test_paragraphify": 0.0011881380000886566,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[\">+41 44 453 45 45]": 0.0011684089998880154,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+0041 543 44 44]": 0.001166807000117842,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[+31 654 32 54]": 0.0011595839999927193,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0041-24400321]": 0.0011916139999357256,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[0043 555 32 43]": 0.0011777280000160317,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[<a href=\"tel:061 444 44 44\">061 444 44 44</a>]": 0.001140037999903143,
"tests/onegov/core/test_utils.py::test_phone_linkify_invalid[some text]": 0.001169071000049371,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0035630300001230353,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 44 453 45 45]": 0.001229985999998462,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+41 79434 3254]": 0.0012125130000413264,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[+4179434 3254]": 0.0012302249998583648,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[004179434 3254]": 0.0012350449999303237,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[041 324 4321]": 0.0011931049999702736,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0413025643]": 0.0012021920000506725,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[044 302 35 87]": 0.0011969939999971757,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[079 720 55 03]": 0.001211150000131056,
"tests/onegov/core/test_utils.py::test_phone_linkify_valid[0797205503]": 0.0012197959999866725,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0011917839999568969,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 44 453 45 45]": 0.001208596000083162,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+41 79434 3254]": 0.0012269100001276456,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[+4179434 3254]": 0.0011745609999707085,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[004179434 3254]": 0.0011390660000643038,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[041 324 4321]": 0.0011699840000574113,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0413025643]": 0.0011859329999879265,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[044 302 35 87]": 0.0011455979999936972,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[079 720 55 03]": 0.0011775469998838162,
"tests/onegov/core/test_utils.py::test_phone_regex_groups_valid[0797205503]": 0.0011687310000070283,
"tests/onegov/core/test_utils.py::test_post_thread": 0.6829898329999651,
"tests/onegov/core/test_utils.py::test_rchop": 0.0017415139998320228,
"tests/onegov/core/test_utils.py::test_relative_url": 0.001188758000012058,
"tests/onegov/core/test_utils.py::test_remove_duplicate_whitespace": 0.0017035149999173882,
"tests/onegov/core/test_utils.py::test_remove_repeated_spaces": 0.0012573870000096576,
"tests/onegov/core/test_utils.py::test_safe_format": 0.0011963930001002154,
"tests/onegov/core/test_utils.py::test_to_html_ul": 0.0065029840000079275,
"tests/onegov/core/test_utils.py::test_touch": 0.001749515000028623,
"tests/onegov/core/test_utils.py::test_yubikey_otp_to_serial": 0.0010786530000359562,
"tests/onegov/core/test_utils.py::test_yubikey_public_id": 0.0010791040000412977,
"tests/onegov/core/test_widgets.py::test_inject_variables": 0.001124326000081055,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[ <panel><?python assert False></panel>]": 0.0013634839999667747,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<div>html</div>]": 0.001245251999989705,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel tal:content='request.password'></panel>]": 0.0014121860000386732,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${request.password}</panel>]": 0.0011645540000699839,
"tests/onegov/core/test_widgets.py::test_parse_invalid_structure[<panel>${{request.password}}</panel>]": 0.0011997299999393363,
"tests/onegov/core/test_widgets.py::test_transform_structure": 0.0014241370000718234,
"tests/onegov/directory/test_archive.py::test_archive_create": 0.7837656310000511,
"tests/onegov/directory/test_archive.py::test_archive_import[csv]": 0.8090417639999714,
"tests/onegov/directory/test_archive.py::test_archive_import[json]": 0.8080551069999728,
"tests/onegov/directory/test_archive.py::test_archive_import[xlsx]": 0.8140525649999972,
"tests/onegov/directory/test_archive.py::test_corodinates": 0.8026761870000882,
"tests/onegov/directory/test_archive.py::test_import_duplicates": 1.0038066929998877,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer": 0.7297150770001508,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[csv]": 0.7491162189999159,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[json]": 0.7438694569999598,
"tests/onegov/directory/test_archive.py::test_zip_archive_from_buffer_with_folder_in_zip[xlsx]": 0.7583847419999756,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_bottom": 0.006327627000018765,
"tests/onegov/directory/test_migration.py::test_add_fieldset_at_top": 0.00395615199988697,
"tests/onegov/directory/test_migration.py::test_detect_added_fields": 0.004853517000128704,
"tests/onegov/directory/test_migration.py::test_detect_changed_fields": 0.0044127849999995306,
"tests/onegov/directory/test_migration.py::test_detect_removed_fields": 0.0020175050000261763,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields": 0.009191951999923731,
"tests/onegov/directory/test_migration.py::test_detect_renamed_fields_changing_fieldsets": 0.009899532999838812,
"tests/onegov/directory/test_migration.py::test_directory_migration": 0.9358350140000766,
"tests/onegov/directory/test_migration.py::test_duplicate_label_error": 0.002724252999996679,
"tests/onegov/directory/test_migration.py::test_remove_fieldset_in_between": 0.011259592000101293,
"tests/onegov/directory/test_orm.py::test_add_duplicate_entry": 0.7096347780000087,
"tests/onegov/directory/test_orm.py::test_change_number_range_fail": 0.728282365000041,
"tests/onegov/directory/test_orm.py::test_custom_order": 0.9551307739998265,
"tests/onegov/directory/test_orm.py::test_directory_configuration": 0.7155050339999889,
"tests/onegov/directory/test_orm.py::test_directory_configuration_missing_fields": 0.010671351999917533,
"tests/onegov/directory/test_orm.py::test_directory_entry_collection": 0.8680118299998867,
"tests/onegov/directory/test_orm.py::test_directory_fields": 0.6965923959999145,
"tests/onegov/directory/test_orm.py::test_directory_form": 0.6810696430000007,
"tests/onegov/directory/test_orm.py::test_directory_title_and_order": 0.7069451480000453,
"tests/onegov/directory/test_orm.py::test_files": 1.2255708099999083,
"tests/onegov/directory/test_orm.py::test_introduce_image_field": 0.745401043999891,
"tests/onegov/directory/test_orm.py::test_introduce_required_field": 0.8710355140000274,
"tests/onegov/directory/test_orm.py::test_introduce_required_field_fail": 0.709160345999976,
"tests/onegov/directory/test_orm.py::test_migrate_introduce_radio_field": 0.806791930999907,
"tests/onegov/directory/test_orm.py::test_migrate_rename_field": 0.769051124000157,
"tests/onegov/directory/test_orm.py::test_migrate_text_field": 0.7589978719998953,
"tests/onegov/directory/test_orm.py::test_multi_files": 1.9167149559999643,
"tests/onegov/directory/test_orm.py::test_validation_error": 0.759248748999994,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection": 0.9367482470000823,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_grouping": 0.853692912999918,
"tests/onegov/election_day/collections/test_archived_result_collection.py::test_archived_result_collection_updates": 0.886478114999818,
"tests/onegov/election_day/collections/test_ballots.py::test_ballots": 0.6794360020001022,
"tests/onegov/election_day/collections/test_candidates.py::test_candidates": 0.6621162189999268,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection": 0.6620820599999888,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_collection_pagination": 0.7320111220001309,
"tests/onegov/election_day/collections/test_data_source_collection.py::test_data_source_pagination_negative_page_index": 0.6375376049999204,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection": 0.6660827680000239,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_collection_pagination": 0.709002246999944,
"tests/onegov/election_day/collections/test_data_source_item_collection.py::test_data_source_item_pagination_negative_page_index": 0.6525383010000496,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_date": 0.6698634510000829,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_id": 0.6597703639998826,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_by_years": 0.6747766220000813,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_for_years": 0.6449144529999558,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_latest": 0.6785026640000069,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_get_years": 0.6644219820001354,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination": 1.394085681999968,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_pagination_negative_page_index": 0.6386210299999675,
"tests/onegov/election_day/collections/test_election_compounds.py::test_elections_shortcode_order": 0.6633674859998564,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_date": 0.6949549390000129,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_id": 0.6574037049999788,
"tests/onegov/election_day/collections/test_elections.py::test_elections_by_years": 0.673309263999954,
"tests/onegov/election_day/collections/test_elections.py::test_elections_for_years": 0.652882297999895,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_latest": 0.6837037779999946,
"tests/onegov/election_day/collections/test_elections.py::test_elections_get_years": 0.6698271969999041,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination": 1.407873919000167,
"tests/onegov/election_day/collections/test_elections.py::test_elections_pagination_negative_page_index": 0.7028448070000195,
"tests/onegov/election_day/collections/test_elections.py::test_elections_shortcode_order": 0.6609791429998495,
"tests/onegov/election_day/collections/test_lists.py::test_lists": 0.6685296979999293,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger": 0.9269359869999789,
"tests/onegov/election_day/collections/test_notification_collection.py::test_notification_collection_trigger_summarized": 0.8886143380000249,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection": 0.6847994149998158,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_collection_pagination": 1.7349909909999042,
"tests/onegov/election_day/collections/test_screen_collection.py::test_screen_pagination_negative_page_index": 0.6768938080000453,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive": 0.8379428699998925,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_exclude_elections": 0.9494661960001167,
"tests/onegov/election_day/collections/test_searchable_archived_result_collection.py::test_searchable_archive_query_term_only_on_locale": 1.1892209789999697,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection": 0.7007067830001006,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_cleanup": 0.7220846669999901,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_export": 0.6575626320000083,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_pagination": 0.8019565909999073,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_email": 1.456743271999926,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_subscribe_sms": 1.3172828799999934,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_collection_term": 0.8824171750001142,
"tests/onegov/election_day/collections/test_subscriber_collection.py::test_subscriber_pagination_negative_page_index": 0.6768918459999895,
"tests/onegov/election_day/collections/test_upload_token_collection.py::test_upload_token_collection": 0.6919654350001565,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_date": 0.7240169250000008,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_id": 0.6856494860001021,
"tests/onegov/election_day/collections/test_votes.py::test_votes_by_years": 0.7130026250000583,
"tests/onegov/election_day/collections/test_votes.py::test_votes_for_years": 0.67242340100006,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_latest": 0.715456869000036,
"tests/onegov/election_day/collections/test_votes.py::test_votes_get_years": 0.6662932630000569,
"tests/onegov/election_day/collections/test_votes.py::test_votes_pagination": 1.6723968049999485,
"tests/onegov/election_day/collections/test_votes.py::test_votes_shortcode_order": 0.6864991200000077,
"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.7545984030000454,
"tests/onegov/election_day/formats/exports/test_export_election_internal_majorz.py::test_export_election_internal_majorz": 0.7024382590000187,
"tests/onegov/election_day/formats/exports/test_export_election_internal_proporz.py::test_export_election_internal_proporz": 0.7286987280000403,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_election_compound_export_parties": 0.6965730630000735,
"tests/onegov/election_day/formats/exports/test_export_party_results_internal.py::test_proporz_election_export_parties": 0.6984100550000676,
"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.7185547079999424,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_compound.py::test_import_ech_compound": 0.8744569730000649,
"tests/onegov/election_day/formats/imports/election/test_ech_0252_election.py::test_import_ech_election_gr": 38.843773380000016,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_cantonal_zg": 0.7439618920000157,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_expats": 0.7455431040000349,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_invalid_values": 0.6852628210000375,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_missing_headers": 0.7010276019999537,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_bern": 0.7071334079998906,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_municipality_kriens": 0.7346661140001061,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_optional_columns": 0.6882684179998932,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional": 0.7781088050001017,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_regional_zg": 0.7142627440000524,
"tests/onegov/election_day/formats/imports/election/test_internal_majorz.py::test_import_internal_majorz_temporary_results": 0.6919518560000597,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_bl": 23.51457125999991,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_cantonal_zg": 1.086713656000029,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_expats": 0.7425011319999157,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_invalid_values": 0.6804940740001939,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_missing_headers": 0.6752061619998813,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_panachage": 0.9709242099999074,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional": 0.8096349719999125,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_regional_zg": 1.8837519620000194,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proporz_temporary_results": 0.6973219779999908,
"tests/onegov/election_day/formats/imports/election/test_internal_proporz.py::test_import_internal_proproz_optional_columns": 0.6966449069999499,
"tests/onegov/election_day/formats/imports/election/test_roundtrips.py::test_roundtrip_wabstic_internal_alphanum": 2.6003862970001137,
"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.7241500730001462,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz": 0.8670706459997746,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_expats": 0.7961831860000075,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_invalid_values": 0.701565240999912,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_missing_headers": 0.6727004880001459,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_regional": 0.8222281399999929,
"tests/onegov/election_day/formats/imports/election/test_wabstic_majorz.py::test_import_wabstic_majorz_temporary_results": 0.7060748499998226,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_get_list_id_from_knr": 0.0015291340000658238,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_cantonal": 3.3711445650000087,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_expats": 0.8298931989999119,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_invalid_values": 0.7047896519999313,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_missing_headers": 0.665750128000127,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional": 0.8161361129999705,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_regional_sg": 3.106130606999841,
"tests/onegov/election_day/formats/imports/election/test_wabstic_proporz.py::test_import_wabstic_proporz_temporary_results": 0.7223184450000417,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_expats": 0.8823992150000777,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_invalid_values": 0.6819582569999056,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_missing_headers": 0.7025592190000225,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_regional_gr": 15.549850020999997,
"tests/onegov/election_day/formats/imports/election_compound/test_import_election_compound_internal.py::test_import_internal_compound_temporary_results": 0.8922884009999734,
"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.725345134000122,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_fixtures": 0.6894871279999961,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_invalid_values": 0.6833021519998965,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_missing_headers": 1.8054925619999267,
"tests/onegov/election_day/formats/imports/party_results/test_import_party_results_internal.py::test_import_party_results_internal_ok": 0.6849752040000112,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv": 0.0023738510000157476,
"tests/onegov/election_day/formats/imports/test_common.py::test_load_csv_errors": 0.6765522089999649,
"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.6892658290000782,
"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.7033575560000145,
"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.686168729999963,
"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.6837278550000292,
"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.6953214169999455,
"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.7029788669998425,
"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.6855429209999784,
"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.6831375130000197,
"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.6795319600000767,
"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.6702626239999745,
"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.4770078029999922,
"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.665592265999976,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_invalid_values": 0.6903690780000034,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_missing_headers": 0.6584553739999137,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_optional_columns": 0.6846896970001808,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_regional": 0.6800777670000571,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_success": 0.7583430319999707,
"tests/onegov/election_day/formats/imports/vote/test_internal.py::test_import_internal_vote_temporary_results": 0.6656443860000536,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote": 1.2990054719998625,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_expats": 0.6197680000001355,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_invalid_values": 0.6018311130000029,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_missing_headers": 0.6160730860000285,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_regional": 0.6104917989999876,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_temporary_results": 0.6085326750001059,
"tests/onegov/election_day/formats/imports/vote/test_wabsti.py::test_import_wabsti_vote_utf16": 0.58553270099992,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote": 0.9479756499999894,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_expats": 0.7883962380000185,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 0.6756163079998032,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 0.6577693089999457,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_regional": 0.6713938180001833,
"tests/onegov/election_day/formats/imports/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 0.7122839899999462,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote": 0.6462497869999879,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_expats": 1.825287325999966,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_invalid_values": 0.5968518159999121,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_missing_headers": 0.5944721679999247,
"tests/onegov/election_day/formats/imports/vote/test_wabstim.py::test_import_wabstim_vote_utf16": 0.6045590929999207,
"tests/onegov/election_day/formats/test_common.py::test_load_csv": 0.006554592999918896,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_errors": 1.06741217900003,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xls]": 1.030014716000096,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v1.xlsx]": 1.0538793959999566,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xls]": 1.0009232429999884,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v2.xlsx]": 1.0683896820000882,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xls]": 2.7293045889999803,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_v3.xlsx]": 1.035144812999988,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xls]": 1.0127612349999708,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v1.xlsx]": 1.0941996569999901,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xls]": 0.9928529529998968,
"tests/onegov/election_day/formats/test_common.py::test_load_csv_excel_invalid[/home/runner/work/onegov-cloud/onegov-cloud/tests/onegov/election_day/fixtures/wb_error_v2.xlsx]": 0.9930357539999477,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote": 1.2283119640001132,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_expats": 1.1060629309997694,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_invalid_values": 0.9716190920000827,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_missing_headers": 1.0948873790002835,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_regional": 1.1980966809996971,
"tests/onegov/election_day/formats/vote/test_default.py::test_import_default_vote_temporary_results": 3.111192409000296,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote": 1.2975727870000355,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_expats": 1.0566060539999853,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_invalid_values": 1.1138228269999217,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_missing_headers": 1.1011465740002677,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_optional_columns": 1.1442550239999036,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_regional": 1.1099619359999906,
"tests/onegov/election_day/formats/vote/test_internal.py::test_import_internal_vote_temporary_results": 1.1757185140002093,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote": 2.443375398999933,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_expats": 1.104504401000213,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_invalid_values": 1.065523113000154,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_missing_headers": 1.0921629039999061,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_regional": 1.0229018230002112,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_temporary_results": 1.0637634130000606,
"tests/onegov/election_day/formats/vote/test_wabsti.py::test_import_wabsti_vote_utf16": 1.0908429499997965,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote": 1.9165550820002863,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_expats": 1.1931877350000377,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_invalid_values": 1.0295071169998664,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_missing_headers": 1.0986195020000196,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_regional": 1.008344715000021,
"tests/onegov/election_day/formats/vote/test_wabstic.py::test_import_wabstic_vote_temporary_results": 1.078931822999948,
"tests/onegov/election_day/formats/vote/test_wabstim.py::test_import_wabstim_vote": 1.12305162700045,