-
Notifications
You must be signed in to change notification settings - Fork 51
/
.test_durations
6842 lines (6842 loc) · 940 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
{
"posthog/api/test/batch_exports/test_delete.py::test_delete_batch_export_cancels_backfills": 3.1267490800000814,
"posthog/api/test/batch_exports/test_delete.py::test_delete_batch_export_even_without_underlying_schedule": 1.235724482999899,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_decide_uses_read_replica": 0.00027879300000677176,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_decide_uses_read_replica_for_cohorts_based_flags": 0.00021706700010781788,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_feature_flags_v2_with_groups": 0.00021698700004435523,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_feature_flags_v3_consistent_flags": 0.0002190599999494225,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_feature_flags_v3_consistent_flags_with_write_on_hash_key_overrides": 0.0002078400000300462,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_healthcheck_uses_read_replica": 0.00020701699997971446,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_local_evaluation": 0.00021361000005981623,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_local_evaluation_for_arbitrary_cohorts": 0.00020852099999046914,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_local_evaluation_for_cohorts": 0.00022137599989946466,
"posthog/api/test/test_decide.py::TestDecideUsesReadReplica::test_site_apps_in_decide_use_replica": 0.0002102349999404396,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_a_working_slow_db": 1.201264755000011,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_experience_continuity_and_incident_mode": 1.4339170599999989,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_experience_continuity_working_slow_db": 2.8997018680000792,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_group_properties": 1.2913796130000037,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_group_properties_and_slow_db": 2.7902551849998645,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_person_properties": 1.3156844420000198,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_skip_database_setting": 1.3266847910000479,
"posthog/api/test/test_feature_flag.py::TestResiliency::test_feature_flags_v3_with_slow_db_doesnt_try_to_compute_conditions_again": 1.8774255739997443,
"posthog/api/test/test_geoip.py::test_geoip_results[13.106.122.3-Australia]": 0.002057411000009779,
"posthog/api/test/test_geoip.py::test_geoip_results[2600:6c52:7a00:11c:1b6:b7b0:ea19:6365-United States]": 0.001661005999835652,
"posthog/api/test/test_geoip.py::test_geoip_results[31.28.64.3-United Kingdom]": 0.0015944710000894702,
"posthog/api/test/test_sharing.py::test_shared_image_alternative_0_http_localhost_8000_something": 0.0011598359998288288,
"posthog/api/test/test_sharing.py::test_shared_image_alternative_1_http_localhost_8000_something_query_string": 0.001084765000086918,
"posthog/api/test/test_sharing.py::test_shared_image_alternative_2_http_localhost_8000_something_query_string_another_one": 0.001024021000034736,
"posthog/api/test/test_sharing.py::test_shared_image_alternative_3_http_localhost_8000_something_query_string_another_one_withhash": 0.00105328500012547,
"posthog/api/test/test_sharing.py::test_shared_image_alternative_4_http_localhost_8000_something_withhash": 0.001062423000007584,
"posthog/api/test/test_survey.py::test_nh3_clean_configuration[ - ]": 0.0013131050000083633,
"posthog/api/test/test_survey.py::test_nh3_clean_configuration[\\n <div style=\"display: flex; justify-content: center;\">\\n <div style=\"flex: 1;\">\\n <img src=\"https://www.gardenhealth.com/wp-content/uploads/2019/09/hedgehog_octobergardeningjobs-768x768.webp\" alt=\"Your Image\" style=\"max-width: 100%; height: auto; opacity: 1;\">\\n </div>\\n <div style=\"flex: 3; padding:10px;\">\\n <p>Help us stay sharp.</p>\\n </div>\\n -\\n <div style=\"display: flex; justify-content: center;\">\\n <div style=\"flex: 1;\">\\n <img src=\"https://www.gardenhealth.com/wp-content/uploads/2019/09/hedgehog_octobergardeningjobs-768x768.webp\" alt=\"Your Image\" style=\"max-width: 100%; height: auto; opacity: 1;\">\\n </div>\\n <div style=\"flex: 3; padding:10px;\">\\n <p>Help us stay sharp.</p>\\n </div>\\n </div>]": 0.0014902350001193554,
"posthog/clickhouse/client/test/test_connection.py::test_connection_pool_creation_with_offline_cluster": 0.0017704420000654864,
"posthog/clickhouse/client/test/test_connection.py::test_connection_pool_creation_with_team_id": 0.0018498499999850537,
"posthog/clickhouse/client/test/test_connection.py::test_connection_pool_creation_without_offline_cluster": 0.002179810000029647,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_events_with_disabled_protobuf": 0.002177485000061097,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_app_metrics]": 0.002121580000107315,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_events_dead_letter_queue]": 0.0022059679999983928,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_events_json]": 0.00209934899999098,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_groups]": 0.0028798629998618708,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_ingestion_warnings]": 0.002317978999940351,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_log_entries]": 0.0021055099999784943,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_performance_events]": 0.002251133000072514,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_person]": 0.0020828569998911917,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_person_distinct_id2]": 0.002630485999929988,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_person_distinct_id]": 0.0022759999998243075,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_person_distinct_id_overrides]": 0.0021839180000142733,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_person_overrides]": 0.0022728850000248713,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_plugin_log_entries]": 0.0022805790000575143,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_session_recording_events]": 0.002098877000094035,
"posthog/clickhouse/test/test_schema.py::test_create_kafka_table_with_different_kafka_host[kafka_session_replay_events]": 0.0021355079999239024,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[app_metrics]": 0.0019689939998670525,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[app_metrics_mv]": 0.0020011539999131855,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[channel_definition]": 0.0021031350000839666,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[cohortpeople]": 0.002016173000015442,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[events]": 0.0019920670000601604,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[events_dead_letter_queue]": 0.0019585640000059357,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[events_dead_letter_queue_mv]": 0.0019817080000166243,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[events_json_mv]": 0.002189258000157679,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[groups]": 0.0019566610001220397,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[groups_mv]": 0.0019394790000433204,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[ingestion_warnings]": 0.0022276199999851087,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[ingestion_warnings_mv]": 0.00192491199993583,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_app_metrics]": 0.00201087200002803,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_events_dead_letter_queue]": 0.0020137479999675634,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_events_json]": 0.002042902999846774,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_groups]": 0.0021067510000420953,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_ingestion_warnings]": 0.0018997939998826041,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_log_entries]": 0.0020730800000592353,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_performance_events]": 0.001993280000078812,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_person]": 0.0020733300000301824,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_person_distinct_id2]": 0.001922196000009535,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_person_distinct_id]": 0.002101724000112881,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_person_distinct_id_overrides]": 0.003240980000100535,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_person_overrides]": 0.0020708549999426396,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_plugin_log_entries]": 0.0019508699999732926,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_session_recording_events]": 0.002057290000152534,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[kafka_session_replay_events]": 0.0019908960000520892,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[log_entries]": 0.0062313519999861455,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[log_entries_mv]": 0.0020791199999621313,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[performance_events]": 0.0021116529999289924,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[performance_events_mv]": 0.001927795999904447,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person]": 0.002034496000078434,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id2]": 0.002076948000080847,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id2_mv]": 0.001904541999920184,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id]": 0.0020954320000328153,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id_mv]": 0.0020379540000021734,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id_overrides]": 0.0020254990000694306,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_distinct_id_overrides_mv]": 0.0020278540001754664,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_mv]": 0.0020937289999665154,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_overrides]": 0.002074192999884872,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_overrides_mv]": 0.0019148319998976149,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[person_static_cohort]": 0.00209998899981656,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[plugin_log_entries]": 0.0021043289999624903,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[plugin_log_entries_mv]": 0.0018932110000378088,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[session_recording_events]": 0.001997878999986824,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[session_recording_events_mv]": 0.0019841120000592127,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[session_replay_events]": 0.0019759880000265184,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[session_replay_events_mv]": 0.0020193889997699443,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sessions]": 0.0019577829999661844,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sessions_mv]": 0.001934118999997736,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_app_metrics]": 0.0020953900000222347,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_events]": 0.0021041979999836258,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_ingestion_warnings]": 0.002154952000182675,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_performance_events]": 0.002810322000073029,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_session_recording_events]": 0.001972150000028705,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_session_replay_events]": 0.002054122999879837,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[sharded_sessions]": 0.0019766490000847625,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[writable_events]": 0.0020804330000601112,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[writable_session_recording_events]": 0.0020322020001231067,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[writable_sessions]": 0.0021013319999383384,
"posthog/clickhouse/test/test_schema.py::test_create_table_query[writeable_performance_events]": 0.002095892000056665,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[channel_definition]": 0.0022436489999790865,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[cohortpeople]": 0.002163930999927288,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[events_dead_letter_queue]": 0.0022164779999229722,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[groups]": 0.0022292419998848345,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[log_entries]": 0.003147114000057627,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person]": 0.0021161290000009103,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person_distinct_id2]": 0.002233340999964639,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person_distinct_id]": 0.0021593210000219187,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person_distinct_id_overrides]": 0.0021593210000219187,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person_overrides]": 0.0022425569999313666,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[person_static_cohort]": 0.002316045000043232,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[plugin_log_entries]": 0.0023279480000155672,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_app_metrics]": 0.00217356899997867,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_events]": 0.002165783999885207,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_ingestion_warnings]": 0.00230781899995236,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_performance_events]": 0.0022733660000540112,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_session_recording_events]": 0.002152359000092474,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_session_replay_events]": 0.0022225389999448453,
"posthog/clickhouse/test/test_schema.py::test_create_table_query_replicated_and_storage[sharded_sessions]": 0.00224979099994016,
"posthog/helpers/tests/test_multi_property_breakdown.py::TestMultiPropertyBreakdown::test_flattens_multi_property_breakdown_for_single_property_requests": 0.0015247100000124192,
"posthog/helpers/tests/test_multi_property_breakdown.py::TestMultiPropertyBreakdown::test_handles_empty_breakdowns_array": 0.0010037529999635808,
"posthog/helpers/tests/test_multi_property_breakdown.py::TestMultiPropertyBreakdown::test_handles_empty_inputs": 0.0009369570000217209,
"posthog/helpers/tests/test_multi_property_breakdown.py::TestMultiPropertyBreakdown::test_keeps_multi_property_breakdown_for_multi_property_requests": 0.0011453490000121747,
"posthog/hogql_queries/insights/funnels/test/test_funnel_correlation.py::TestCorrelationFunctions::test_are_results_insignificant": 0.001282145000118362,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::TestQueryAlternator::test_group_no_pre_existing": 0.0016661159999102892,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::TestQueryAlternator::test_group_with_pre_existing": 0.0026619039999786764,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::TestQueryAlternator::test_replace_select_from": 0.0015594249998684973,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::TestQueryAlternator::test_select": 0.0020488540000087596,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[avg-False]": 0.0012754430000541106,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[avg_count_per_actor-True]": 0.0012625190000790099,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[dau-False]": 0.0014923400000270703,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[hogql-False]": 0.0012608849999651284,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[max-False]": 0.0012948589999268734,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[max_count_per_actor-True]": 0.001315686999873833,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[median-False]": 0.0017799100000956969,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[median_count_per_actor-True]": 0.0014201940001612456,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[min-False]": 0.0012650040000607987,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[min_count_per_actor-True]": 0.001443127999891658,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[monthly_active-True]": 0.0013142660001221884,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p90-False]": 0.0013117699999156684,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p90_count_per_actor-True]": 0.0012607260001686882,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p95-False]": 0.0012673280000399245,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p95_count_per_actor-True]": 0.0012715250001065215,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p99-False]": 0.001284089000023414,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[p99_count_per_actor-True]": 0.0012633000000050743,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[sum-False]": 0.0012894689999711773,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[total-False]": 0.0015518409999231153,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[unique_session-False]": 0.0012580589998378855,
"posthog/hogql_queries/insights/trends/test/test_aggregation_operations.py::test_requiring_query_orchestration[weekly_active-True]": 0.0013092969999206616,
"posthog/hogql_queries/insights/trends/test/test_utils.py::test_properties_chain_events": 0.0010342799999989438,
"posthog/hogql_queries/insights/trends/test/test_utils.py::test_properties_chain_groups": 0.001071991000117123,
"posthog/hogql_queries/insights/trends/test/test_utils.py::test_properties_chain_person": 0.001167320000035943,
"posthog/hogql_queries/insights/trends/test/test_utils.py::test_properties_chain_session": 0.0010011990001430604,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a0-b0-True]": 0.0013509829999520662,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a1-b1-True]": 0.0012224930000002132,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a10-b10-False]": 0.0012939389999928608,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a11-b11-False]": 0.0012290149999216737,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a12-b12-False]": 0.001332742000045073,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a13-b13-False]": 0.001376521999986835,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a2-b2-True]": 0.0012415490000421414,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a3-b3-False]": 0.0012257089998684023,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a4-b4-False]": 0.0013275499999281237,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a5-b5-False]": 0.0012319809999326026,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a6-b6-True]": 0.0012691419999555364,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a7-b7-True]": 0.0012619960001529762,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a8-b8-True]": 0.0012191370000209645,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_equal[a9-b9-False]": 0.0012471500000401647,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a0-b0-True]": 0.0012590009999939866,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a1-b1-True]": 0.001220071000147982,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a10-b10-False]": 0.001244854999981726,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a11-b11-False]": 0.001318584999921768,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a12-b12-False]": 0.0012736799999402137,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a13-b13-False]": 0.001242702000126883,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a2-b2-True]": 0.0012551960001019324,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a3-b3-False]": 0.0012073149999878297,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a4-b4-False]": 0.0011955430001080458,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a5-b5-False]": 0.0012207799999259805,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a6-b6-True]": 0.0013232229998720868,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a7-b7-True]": 0.00123634999999922,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a8-b8-True]": 0.0012112720002050992,
"posthog/hogql_queries/insights/utils/test/test_entities.py::test_is_superset[a9-b9-False]": 0.0012868040000739711,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter0]": 0.0014538269999775366,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter10]": 0.001200439999934133,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter11]": 0.0024259419999452803,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter12]": 0.0012756429999853935,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter13]": 0.0012147280001499894,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter14]": 0.0011943409999730648,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter15]": 0.0011791219999395253,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter16]": 0.001210020000030454,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter17]": 0.0012754740000673337,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter18]": 0.001220620000026429,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter19]": 0.001271764999955849,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter1]": 0.0013466160000916716,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter20]": 0.0018935819998660008,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter21]": 0.0013242239999726735,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter22]": 0.001281332999951701,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter23]": 0.0011954130001186059,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter24]": 0.0012763660001837707,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter25]": 0.0011743130002059843,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter26]": 0.0012678580000056172,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter27]": 0.0011801540001670219,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter28]": 0.0011995300000080533,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter29]": 0.0011990399999604051,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter2]": 0.0020344680000334847,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter30]": 0.0013238230000069962,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter31]": 0.0012230339999632633,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter32]": 0.001176235999992059,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter33]": 0.0011933799999042094,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter34]": 0.001432618999956503,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter3]": 0.0013775639999948908,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter4]": 0.0012396559999388046,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter5]": 0.0012760049999087641,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter6]": 0.0012474200000269775,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter7]": 0.001220879999891622,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter8]": 0.0013405559999455363,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_insights[filter9]": 0.0013574080001035327,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties0]": 0.0011687230000916315,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties10]": 0.0012220840000054523,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties11]": 0.0012315100000250823,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties12]": 0.0012238460000162377,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties13]": 0.0012341160000914897,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties14]": 0.0012565279999989798,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties1]": 0.0012435219999815672,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties2]": 0.001326757999891015,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties3]": 0.001139758000135771,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties4]": 0.0011933099999623664,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties5]": 0.0011633429999164946,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties6]": 0.0012759240000832506,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties7]": 0.0013099489999603975,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties8]": 0.0012595119999332383,
"posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py::test_base_properties[properties9]": 0.0016271020000431236,
"posthog/logging/test/test_timing.py::test_wrap_with_timing_calls_statsd": 0.002243479000185289,
"posthog/management/commands/test/test_change_team_ownership.py::test_change_team_ownership_required_parameters": 0.003801872999929401,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config0-day]": 3.0104501819999996,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config0-hour]": 13.145942695999793,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config1-day]": 3.0155143879999287,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config1-hour]": 2.961764482000035,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config2-day]": 2.922404365999796,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config2-hour]": 3.0758161730001348,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config3-day]": 3.0454136480000216,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config3-hour]": 2.9418777390001196,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config4-day]": 2.9928455149998854,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config4-hour]": 3.0788194240000166,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config5-day]": 3.087666160000026,
"posthog/management/commands/test/test_create_batch_export_from_app.py::test_create_batch_export_from_app_with_backfill[plugin_config5-hour]": 2.9748201539998718,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_can_migrate_data_from_one_topic_to_another_on_a_different_cluster": 16.95991259199991,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_cannot_send_data_back_into_same_topic_on_same_cluster": 1.2249443510000901,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_that_the_command_fails_if_the_specified_consumer_group_does_not_exist": 1.3271153189999723,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_that_we_error_if_the_target_topic_doesnt_exist": 1.5378441290001774,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_we_do_not_migrate_when_dry_run_is_set": 3.6054493689999845,
"posthog/management/commands/test/test_migrate_kafka_data.py::test_we_fail_on_send_errors_to_new_topic": 13.878926000999968,
"posthog/management/commands/test/test_migrations_are_safe.py::test_new_tables_can_have_int64_ids": 0.0010926489999292244,
"posthog/management/commands/test/test_migrations_are_safe.py::test_new_tables_must_not_have_int_32_ids": 0.0016600639999069244,
"posthog/models/filters/mixins/test/test_groups.py::test_validate_group_type_index": 0.0014424549999603187,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_errors[filter0-Interval foo does not belong to SUPPORTED_INTERVAL_TYPES!]": 0.001340313000127935,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_errors[filter1-Interval must be a string!]": 0.0012365300000283241,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter0-hour]": 0.0012490519999346361,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter1-day]": 0.0011470519999647877,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter2-week]": 0.0011385060000748126,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter3-month]": 0.001177739000127076,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter4-hour]": 0.0011141400000269641,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter5-day]": 0.0011774179999974876,
"posthog/models/filters/mixins/test/test_interval.py::test_filter_interval_success[filter6-hour]": 0.001330375000065942,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_empty_parsing": 0.0010355219999382825,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_includes_unhomogenous_groups": 0.0011024089998272757,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_invalid_parsing": 0.001096947999940312,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_multi_level_json_parsing": 0.0011055730001316988,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_multi_level_parsing": 0.0011943310000788188,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_simple_json_parsing": 0.001074174999985189,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_simple_parsing": 0.0010473849999925733,
"posthog/models/filters/mixins/test/test_property.py::test_property_group_simple_to_dict": 0.0010500189998765563,
"posthog/models/filters/mixins/test/test_property.py::test_property_multi_level_to_dict": 0.0010785519999672033,
"posthog/models/test/test_person_override_model.py::test_person_override_allow_consecutive_merges": 1.061866986000041,
"posthog/models/test/test_person_override_model.py::test_person_override_allows_duplicate_override_person_id": 1.492744411999979,
"posthog/models/test/test_person_override_model.py::test_person_override_allows_override_person_id_as_old_person_id_in_different_teams": 1.0068553090000023,
"posthog/models/test/test_person_override_model.py::test_person_override_disallows_concurrent_merge": 1.0245191310000337,
"posthog/models/test/test_person_override_model.py::test_person_override_disallows_concurrent_merge_different_order": 1.0615448110002035,
"posthog/models/test/test_person_override_model.py::test_person_override_disallows_old_person_id_as_override_person_id": 0.874294285000019,
"posthog/models/test/test_person_override_model.py::test_person_override_disallows_override_person_id_as_old_person_id": 1.0067052980000426,
"posthog/models/test/test_person_override_model.py::test_person_override_disallows_same_old_person_id": 1.0061831700000994,
"posthog/models/test/test_person_override_model.py::test_person_override_merge": 1.0131925929998715,
"posthog/models/test/test_person_override_model.py::test_person_override_old_person_id_as_override_person_id_in_different_teams": 1.0282257539997772,
"posthog/models/test/test_person_override_model.py::test_person_override_same_old_person_id_in_different_teams": 1.0209838489998901,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_day_parsing": 0.590371970000092,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_hour_parsing": 0.04567473699978564,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_invalid_input": 0.04475913099997797,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_month_parsing": 0.08789216999991822,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_overflow": 0.001105993999999555,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_week_parsing": 0.044624537999879976,
"posthog/queries/test/test_base.py::TestRelativeDateParsing::test_year_parsing": 0.04736280200006604,
"posthog/queries/test/test_base.py::test_sanitize_keys[ -_b858cb282617fb0]": 0.0011117650000187496,
"posthog/queries/test/test_base.py::test_sanitize_keys[-_da39a3ee5e6b4b0]": 0.0011211329999696318,
"posthog/queries/test/test_base.py::test_sanitize_keys[12-12_7b52009b64fd0a2]": 0.0011743229998728566,
"posthog/queries/test/test_base.py::test_sanitize_keys[None-None_6eef6648406c333]": 0.0011311130000422054,
"posthog/queries/test/test_base.py::test_sanitize_keys[only_nums!!!;$\\xa3hebfjhvd-onlynumshebfjhvd_5a1514bfab83040]": 0.0011325159999842072,
"posthog/queries/test/test_base.py::test_sanitize_keys[readme.md-readmemd_275d783e2982285]": 0.0011121159999447627,
"posthog/queries/test/test_base.py::test_sanitize_keys[readme\\u2265md-readmemd_8857015efe59db9]": 0.0011316139998598373,
"posthog/queries/test/test_base.py::test_sanitize_keys[test-!!key-testkey_007a0fef83e9d2f]": 0.0011244300001180818,
"posthog/queries/test/test_base.py::test_sanitize_keys[test-key-1-2-3-4-testkey1234_0332a83ad5c75ee]": 0.0011259520000521661,
"posthog/queries/test/test_base.py::test_sanitize_keys[test-key-1-2-testkey12_2f0c347f439af5c]": 0.0011437260000093374,
"posthog/queries/test/test_base.py::test_sanitize_keys[test-key-1-testkey1_1af855c78902ffc]": 0.0012140189999172435,
"posthog/queries/test/test_base.py::test_sanitize_keys[test-key-testkey_3acfb2c2b433c0e]": 0.0011648849998664446,
"posthog/queries/test/test_base.py::test_sanitize_keys[test_key-testkey_00942f4668670f3]": 0.0014346809999778998,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_construct_hierarchy": 0.0012039869999398434,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent0-potential_child0-True]": 0.001658029999930477,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent1-potential_child1-True]": 0.0012574480000466792,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent10-potential_child10-False]": 0.0012001500000451415,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent11-potential_child11-True]": 0.0011933279999993829,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent12-potential_child12-False]": 0.001208057000098961,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent13-potential_child13-False]": 0.001199179999957778,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent14-potential_child14-True]": 0.0012034170000561062,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent15-potential_child15-False]": 0.0013254149999966103,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent2-potential_child2-False]": 0.00121592999994391,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent3-potential_child3-False]": 0.001269580999974096,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent4-potential_child4-True]": 0.0011990500000820248,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent5-potential_child5-False]": 0.001196403999983886,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent6-potential_child6-True]": 0.001208798000106981,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent7-potential_child7-False]": 0.0012167219999810186,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent8-potential_child8-False]": 0.001289378000024044,
"posthog/queries/time_to_see_data/test/test_hierarchy.py::test_is_child[potential_parent9-potential_child9-False]": 0.0011992800000371062,
"posthog/queries/time_to_see_data/test/test_sessions.py::test_sessions_condition[query0-1 = 1]": 0.001412780000237035,
"posthog/queries/time_to_see_data/test/test_sessions.py::test_sessions_condition[query1-metrics_time_to_see_data.team_id = %(team_id)s]": 0.0012716449999743418,
"posthog/queries/time_to_see_data/test/test_sessions.py::test_sessions_condition[query2-metrics_time_to_see_data.team_id = %(team_id)s AND metrics_time_to_see_data.session_id = %(session_id)s]": 0.0012806720001208305,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_absent_window_id_is_added": 0.0016701840000905577,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_is_active_event": 0.0010136009999541784,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_new_ingestion": 0.0021796280001353807,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_new_ingestion_groups_using_snapshot_bytes_if_possible": 0.002145675000065239,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_new_ingestion_large_full_snapshot_is_separated": 0.0026113479999594347,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_new_ingestion_large_non_full_snapshots_are_separated": 0.0023474030001580104,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_preprocess_with_no_recordings": 0.0012627679999468455,
"posthog/session_recordings/test/test_session_recording_helpers.py::test_received_snapshot_source_is_respected_for_first_event": 0.0017390609999665685,
"posthog/tasks/test/test_check_clickhouse_schema_drift.py::test_check_clickhouse_schema_drift_error_from_clickhouse": 0.01932859000010012,
"posthog/tasks/test/test_check_clickhouse_schema_drift.py::test_check_clickhouse_schema_drift_with_drift": 0.0015845119999085,
"posthog/tasks/test/test_check_clickhouse_schema_drift.py::test_check_clickhouse_schema_drift_without_drift": 0.001685240000028898,
"posthog/tasks/test/test_check_clickhouse_schema_drift.py::test_get_clickhouse_schema_drift": 0.0013514149998172797,
"posthog/test/activity_logging/test_activity_logging.py::TestActivityLogModel::test_can_save_a_log_that_has_no_model_changes": 0.21304183499989904,
"posthog/test/activity_logging/test_activity_logging.py::TestActivityLogModel::test_can_save_a_model_changed_activity_log": 0.0068463449999853765,
"posthog/test/activity_logging/test_activity_logging.py::TestActivityLogModel::test_does_not_save_if_there_is_neither_a_team_id_nor_an_organisation_id": 0.004331150000098205,
"posthog/test/activity_logging/test_activity_logging.py::TestActivityLogModel::test_does_not_save_impersonated_activity_without_user": 0.007679004999999961,
"posthog/test/activity_logging/test_activity_logging.py::TestActivityLogModel::test_does_not_throw_if_cannot_log_activity": 0.006617516999881445,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_filters_can_be_logged": 0.2117246889999933,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_flag_active_status_can_be_logged": 0.015815900000006877,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_key_can_be_logged": 0.018490329000087513,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_name_can_be_logged": 0.01852923900003134,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_rollout_percentage_can_be_logged": 0.017052229000000807,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_a_change_of_soft_delete_can_be_logged": 0.01583448699989276,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_adding_a_rollout_percentage_can_be_logged": 0.01581162300010419,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_can_exclude_changed_fields_in_feature_flags": 0.015161634000151025,
"posthog/test/activity_logging/test_feature_flag_activity_logging.py::TestChangesBetweenFeatureFlags::test_comparing_two_nothings_results_in_no_changes": 0.010992816999987554,
"posthog/test/activity_logging/test_insight_activity_logging.py::TestChangesBetweenInsights::test_a_change_of_insight_dashboard_can_be_logged": 0.23662247699996897,
"posthog/test/activity_logging/test_insight_activity_logging.py::TestChangesBetweenInsights::test_insight_change_of_derived_name_can_be_logged": 0.019290451000074427,
"posthog/test/activity_logging/test_insight_activity_logging.py::TestChangesBetweenInsights::test_insight_change_of_description_can_be_logged": 0.01780302200006645,
"posthog/test/activity_logging/test_insight_activity_logging.py::TestChangesBetweenInsights::test_insight_change_of_name_can_be_logged": 0.017383784999992713,
"posthog/test/activity_logging/test_insight_activity_logging.py::TestChangesBetweenInsights::test_insight_change_of_tags_can_be_logged": 0.059314124000025004,
"posthog/test/activity_logging/test_person_activity_logging.py::TestChangesBetweenPersons::test_can_exclude_changed_fields_in_persons": 1.1396649009998328,
"posthog/test/test_cache_utils.py::TestCacheUtils::test_background_cache_refresh": 2.623490340999865,
"posthog/test/test_cache_utils.py::TestCacheUtils::test_cache_for_with_different_passed_arguments_styles_when_caching": 0.0029759279999552746,
"posthog/test/test_cache_utils.py::TestCacheUtils::test_cache_for_with_different_passed_arguments_styles_when_skipping_cache": 0.0036213879999422716,
"posthog/test/test_celery.py::TestCeleryMetrics::test_clickhouse_errors_count": 0.003078043999835245,
"posthog/test/test_cloud_utils.py::TestCloudUtils::test_get_cached_instance_license_if_license_exists": 0.26420174800000495,
"posthog/test/test_cloud_utils.py::TestCloudUtils::test_get_cached_instance_license_returns_correctly": 0.004973367000047801,
"posthog/test/test_cohort_model.py::TestCohort::test_calculating_cohort_clickhouse": 0.41255259500007924,
"posthog/test/test_cohort_model.py::TestCohort::test_empty_query": 0.23854597899992314,
"posthog/test/test_cohort_model.py::TestCohort::test_group_to_property_conversion": 0.18675512399988747,
"posthog/test/test_cohort_model.py::TestCohort::test_group_to_property_conversion_with_missing_days_and_invalid_count": 0.18908305100001144,
"posthog/test/test_cohort_model.py::TestCohort::test_group_to_property_conversion_with_valid_zero_count": 0.18898327099987,
"posthog/test/test_cohort_model.py::TestCohort::test_group_to_property_conversion_with_valid_zero_count_different_operator": 0.19690668900011588,
"posthog/test/test_cohort_model.py::TestCohort::test_insert_by_distinct_id_or_email": 0.3186279790002118,
"posthog/test/test_database_healthcheck.py::TestDatabaseHealthcheck::test_healthcheck": 1.0032269619999852,
"posthog/test/test_database_healthcheck.py::TestDatabaseHealthcheck::test_set_is_connected": 0.06214773199985757,
"posthog/test/test_datetime.py::test_end_of_day": 0.0010733929998423264,
"posthog/test/test_datetime.py::test_start_of_day": 0.0010402199999361983,
"posthog/test/test_datetime.py::test_start_of_hour": 0.001253920999829461,
"posthog/test/test_datetime.py::test_start_of_month": 0.001100973999996313,
"posthog/test/test_datetime.py::test_start_of_week": 0.001015184999914709,
"posthog/test/test_dbrouter.py::TestReplicaRouter::test_opted_in_models_are_replica_routed": 0.1989653849999513,
"posthog/test/test_decorators.py::TestCachedByFiltersDecorator::test_cache_bypass_with_invalidation_key_param": 1.3955391640000698,
"posthog/test/test_decorators.py::TestCachedByFiltersDecorator::test_cache_bypass_with_refresh_param": 0.04031683200014413,
"posthog/test/test_decorators.py::TestCachedByFiltersDecorator::test_discards_stale_response": 0.13577140200004578,
"posthog/test/test_decorators.py::TestCachedByFiltersDecorator::test_returns_cached_result": 0.03790028300011272,
"posthog/test/test_decorators.py::TestCachedByFiltersDecorator::test_returns_fresh_result": 0.02615101499998218,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_daily_result": 0.27396341999997276,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_hourly_result": 0.048663313000020025,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_monthly_result": 0.05180341800007682,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_path_result": 0.058966152000039074,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_retention_hourly_result": 0.04697613799987721,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_retention_result": 0.047133071999951426,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_stickiness_result": 0.0515947280000546,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_discards_stale_weekly_result": 0.046180135000099654,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_daily_result": 0.04694953799992163,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_hourly_result": 0.04874410600007195,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_monthly_result": 0.05650413099999696,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_path_result": 0.046655164999947374,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_result_from_fixed_range": 0.00418493499989836,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_result_with_date_to_in_future": 0.04951032299993585,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_retention_hourly_result": 0.04911189600022681,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_retention_result": 0.04804180900009669,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_stickiness_result": 0.053056120000064766,
"posthog/test/test_decorators.py::TestIsStaleHelper::test_keeps_fresh_weekly_result": 0.04933369299999413,
"posthog/test/test_element_model.py::TestElement::test_broken_class_names": 0.20359210399988115,
"posthog/test/test_element_model.py::TestElement::test_elements_to_string": 0.19050150499992924,
"posthog/test/test_email.py::TestEmail::test_applies_default_utm_tags": 0.4253367310000158,
"posthog/test/test_email.py::TestEmail::test_cant_send_emails_if_not_properly_configured": 0.07507400199995118,
"posthog/test/test_email.py::TestEmail::test_cant_send_same_campaign_twice": 0.0801388309999993,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_behavioral_cohorts": 0.2066827659999717,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_cohort_expansion": 0.00877604100003282,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_cohort_expansion_multiple_properties": 0.008547329999942122,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_cohort_expansion_with_negation": 0.007982054000081007,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_cohort_property_group": 0.00801063400001567,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_cohort_thats_impossible_to_expand": 0.008440001000053599,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_complex_cohort_expansion_that_is_simplified_via_clearing_excess_levels": 0.0076766589999124335,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_feature_flag_preventing_simple_cohort_expansion": 0.007533451999961471,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_feature_flag_with_additional_conditions_playing_well_with_complex_cohort_expansion": 0.007965676999901916,
"posthog/test/test_feature_flag.py::TestFeatureFlagCohortExpansion::test_multiple_cohorts": 0.01034082799992575,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_entire_flow_with_hash_key_override": 0.23860554500004127,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_hash_key_overrides_for_multiple_ids_when_people_are_not_merged": 0.058051480000017364,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_retrieving_hash_key_overrides": 0.008611479000023792,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_setting_overrides": 0.008958247999999003,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_setting_overrides_doesnt_balk_with_existing_overrides": 0.01070547299991631,
"posthog/test/test_feature_flag.py::TestFeatureFlagHashKeyOverrides::test_setting_overrides_when_persons_dont_exist": 0.006736802000091302,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_blank_flag": 0.20433466500003306,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_coercion_of_booleans": 0.05167593900000611,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_coercion_of_booleans_with_is_not_operator": 0.10814071399988734,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_coercion_of_strings_and_numbers": 0.035210517999985314,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_coercion_of_strings_and_numbers_with_is_not_operator": 0.07375332799995249,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_cohort_cache_no_unnecessary_queries": 0.04309073199988234,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_cohort_expansion_returns_same_result_as_regular_flag": 0.2029521009999371,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_cohort_filters_with_multiple_OR_override_properties": 0.03881265799998346,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_cohort_filters_with_override_id_property": 0.045429046999970524,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_cohort_filters_with_override_properties": 0.05570382399992013,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_complex_cohort_filter_with_override_properties": 0.000251521999985016,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_complicated_flag": 0.03363149599999815,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_db_matches_independent_of_string_or_number_type": 0.4759605010000314,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_empty_group": 0.007148503999928835,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_by_group_properties": 0.02436129400007303,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_by_groups_with_rollout_100": 0.02050078900003882,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_by_groups_with_rollout_50": 0.018815058000086538,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_with_clashing_variant_overrides": 0.0530732119999584,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_with_invalid_variant_overrides": 0.04503735899993444,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_with_multiple_variant_overrides": 0.040201099000000795,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_flag_with_variant_overrides": 0.04608012600010625,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_invalid_filters_dont_set_db_down": 0.013695083000015984,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_invalid_group_filters_dont_set_db_down": 0.01274893200002225,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_invalid_regex_match_flag": 0.06379580500004067,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_is_not_equal_with_non_existing_person": 0.011697031999915453,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_is_not_set_operator_with_groups": 0.08038727000007384,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_is_not_set_operator_with_overrides": 0.04000083400001131,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_is_not_set_operator_with_pure_multiple_conditions": 0.05912947800004531,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_legacy_property_filters": 0.04903033599987339,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_legacy_rollout_and_property_filter": 0.07498348300009638,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_legacy_rollout_percentage": 0.006387949999975717,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_legacy_user_in_cohort": 0.11510511099982068,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_multi_property_filters": 0.08047376900003655,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_multi_property_filters_with_override_group_properties": 0.026901250999912918,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_multi_property_filters_with_override_properties": 0.07386472000018784,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_multi_property_filters_with_override_properties_with_is_not_set": 0.07924080500004038,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_multiple_flags": 0.12917912799991882,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_non_existing_key_passes_is_not_check": 0.06668807100004415,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_non_existing_person_with_is_not_set": 0.012644981999983429,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_null_rollout_percentage": 0.0082499600000574,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_numeric_operator": 0.06888760200001798,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_numeric_operator_with_cohorts_and_nested_cohorts": 0.09117877899996074,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_numeric_operator_with_groups_and_person_flags": 0.11227385999995931,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_override_properties_where_person_doesnt_exist_yet": 0.010657298999944942,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_override_properties_where_person_doesnt_exist_yet_multiple_conditions": 0.015181573000063509,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_relative_date_operator": 0.10110470299991903,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_rollout_percentage": 0.00615051800002675,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_is_not_set": 0.0456118700000161,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_matches_and_false": 0.04573542699995414,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_matches_boolean": 0.04658743000004506,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_matches_string": 0.05447018899997147,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_promoted": 0.04336239700000988,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_rolled_out_to_50": 0.039344000000028245,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_with_override_properties": 0.052403417999926205,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_with_override_properties_doesnt_make_database_requests": 0.0002550389999669278,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_super_condition_with_override_properties_with_property_not_ingested": 0.05274083699998755,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_user_in_cohort": 0.10208209400002488,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_user_in_cohort_without_calculation": 0.04066822000004322,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_user_in_static_cohort": 0.11826535900002,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_variants": 0.0070832190000373885,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_with_sql_injection_properties_and_other_aliases": 0.08980045500015876,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcher::test_zero_rollout_percentage": 0.009492673000067953,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcherConsistency::test_multivariate_flag_consistency": 0.22895406700001786,
"posthog/test/test_feature_flag.py::TestFeatureFlagMatcherConsistency::test_simple_flag_consistency": 0.01835773700008758,
"posthog/test/test_feature_flag.py::TestHashKeyOverridesRaceConditions::test_hash_key_overrides_with_race_conditions": 1.0005845909998925,
"posthog/test/test_feature_flag.py::TestHashKeyOverridesRaceConditions::test_hash_key_overrides_with_race_conditions_on_person_creation_and_deletion": 1.0556125360000124,
"posthog/test/test_feature_flag.py::TestHashKeyOverridesRaceConditions::test_hash_key_overrides_with_simulated_error_race_conditions_on_person_merging": 1.1328305829998726,
"posthog/test/test_feature_flag.py::TestHashKeyOverridesRaceConditions::test_hash_key_overrides_with_simulated_race_conditions_on_person_merging": 1.1226432900000418,
"posthog/test/test_feature_flag.py::TestModelCache::test_save_updates_cache": 0.22192821099997673,
"posthog/test/test_feature_flag_analytics.py::TestEnrichedAnalytics::test_find_flags_with_enriched_analytics": 0.6339115570001468,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_capture_team_decide_usage": 0.2606994909999685,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_efficient_querying_of_team_decide_usage_data": 0.0691714319999619,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_increment_request_count_adds_requests_to_appropriate_buckets": 0.05143909900004928,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_locking_in_redis_doesnt_block_new_incoming_increments": 0.0002456909999182244,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_locking_works_for_capture_team_decide_usage": 0.00022033400000509573,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_no_interference_between_different_types_of_new_incoming_increments": 0.00021690700009457942,
"posthog/test/test_feature_flag_analytics.py::TestFeatureFlagAnalytics::test_no_token_loses_capture_team_decide_usage_data": 0.05630328200004442,
"posthog/test/test_format_label_date.py::test_format_label_date_with_default_interval": 0.0010438070000873267,
"posthog/test/test_format_label_date.py::test_format_label_date_with_empty_string_interval": 0.0010562219999883382,
"posthog/test/test_format_label_date.py::test_format_label_date_with_hour_interval": 0.001097207999919192,
"posthog/test/test_format_label_date.py::test_format_label_date_with_missing_interval": 0.0010294209998846782,
"posthog/test/test_format_label_date.py::test_format_label_date_with_month_interval": 0.0010311739999906422,
"posthog/test/test_gzip_middleware.py::TestGzipMiddleware::test_compresses_when_on_allow_list": 0.1946411229999967,
"posthog/test/test_gzip_middleware.py::TestGzipMiddleware::test_does_not_compress_outside_of_allow_list": 0.22303378299989163,
"posthog/test/test_gzip_middleware.py::TestGzipMiddleware::test_no_compression_for_unsuccessful_requests_to_paths_on_the_allow_list": 0.03617787400003181,
"posthog/test/test_gzip_middleware.py::TestGzipMiddleware::test_no_compression_when_allow_list_is_empty": 0.07042455599992081,
"posthog/test/test_gzip_middleware.py::TestGzipMiddleware::test_sensible_error_if_bad_pattern": 0.012977857000009863,
"posthog/test/test_health.py::test_livez_returns_200_and_doesnt_require_any_dependencies": 0.004423646999839548,
"posthog/test/test_health.py::test_readyz_accepts_no_role_and_fails_on_everything": 0.18074507500000436,
"posthog/test/test_health.py::test_readyz_accepts_role_decide_and_filters_by_relevant_services": 0.013344086999950378,
"posthog/test/test_health.py::test_readyz_accepts_role_events_and_filters_by_relevant_services": 0.008101911999801814,
"posthog/test/test_health.py::test_readyz_accepts_role_web_and_filters_by_relevant_services": 0.14284429499991802,
"posthog/test/test_health.py::test_readyz_accepts_role_worker_and_filters_by_relevant_services": 0.16742437200014137,
"posthog/test/test_health.py::test_readyz_can_handle_random_database_errors": 0.025543067999933555,
"posthog/test/test_health.py::test_readyz_complains_if_role_does_not_exist": 0.004198123000037413,
"posthog/test/test_health.py::test_readyz_decide_can_handle_random_database_errors": 0.005566551000015352,
"posthog/test/test_health.py::test_readyz_returns_200_if_everything_is_ok": 0.04368486199996369,
"posthog/test/test_health.py::test_readyz_supports_excluding_checks": 0.024760859000025448,
"posthog/test/test_instance_setting_model.py::test_can_retrieve_multiple_settings": 0.008643571999868982,
"posthog/test/test_instance_setting_model.py::test_initial_value_and_overriding": 0.009774529000083021,
"posthog/test/test_instance_setting_model.py::test_model_creation": 0.007289567000043462,
"posthog/test/test_instance_setting_model.py::test_override_constance_config": 0.010538625999970463,
"posthog/test/test_instance_setting_model.py::test_unknown_key_raises": 0.0027737689999867143,
"posthog/test/test_latest_migrations.py::TestLatestMigrations::test_ee_migrations_is_in_sync_with_latest": 0.001441422000084458,
"posthog/test/test_latest_migrations.py::TestLatestMigrations::test_posthog_migration_is_in_sync_with_latest": 0.002281299000173931,
"posthog/test/test_middleware.py::TestAccessMiddleware::test_attempt_spoofing": 0.30278854599998795,
"posthog/test/test_middleware.py::TestAccessMiddleware::test_ip_range": 0.022601845999929537,
"posthog/test/test_middleware.py::TestAccessMiddleware::test_trust_all_proxies": 0.006769533000010597,
"posthog/test/test_middleware.py::TestAccessMiddleware::test_trusted_proxies": 0.00801827800000865,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_redirects_to_current_team_when_accessing_inaccessible_project_by_token": 0.22592819099997996,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_redirects_to_current_team_when_accessing_missing_project_by_token": 0.01759963400002107,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_redirects_to_new_team_when_accessing_project_by_token": 0.016886214000010114,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_action_of_another_accessible_team": 0.14005943499989826,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_another_project_by_id": 0.20555973800003358,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_cohort_of_another_accessible_team": 0.13151891099994373,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_dashboard_of_another_accessible_team": 0.15381898099985847,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_dashboard_of_another_accessible_team_with_trailing_slash": 0.14588957299997674,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_feature_flag_of_another_accessible_team": 0.1390492789998916,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_insight_edit_mode_of_another_accessible_team": 0.1490949140001021,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_switched_when_accessing_insight_of_another_accessible_team": 0.14912485400009245,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_unchanged_when_accessing_dashboard_of_another_off_limits_team": 0.13607925700000578,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_unchanged_when_accessing_dashboards_list": 0.11251895599991713,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_unchanged_when_accessing_inaccessible_project_by_id": 0.20618501299998115,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_unchanged_when_accessing_missing_project_by_id": 0.20303012699991996,
"posthog/test/test_middleware.py::TestAutoProjectMiddleware::test_project_unchanged_when_creating_feature_flag": 0.12126107400001729,
"posthog/test/test_middleware.py::TestPostHogTokenCookieMiddleware::test_logged_in_client": 0.25628385199991044,
"posthog/test/test_middleware.py::TestPostHogTokenCookieMiddleware::test_logged_out_client": 0.010050770000134435,
"posthog/test/test_middleware.py::TestPostHogTokenCookieMiddleware::test_logout": 0.06949366099991039,
"posthog/test/test_middleware.py::TestPostHogTokenCookieMiddleware::test_ph_project_cookies_are_not_set_on_capture_or_api_endpoints": 0.11088605399993412,
"posthog/test/test_migration_0218.py::TaggedItemsUniquenessTest::test_taggeditems_uniqueness": 0.00030327899992244056,
"posthog/test/test_migration_0219.py::TagsTestCase::test_tags_migrated": 0.00032959999998638523,
"posthog/test/test_migration_0220.py::TagsTestCase::test_backfill_primary_dashboard": 0.00026452700012669084,
"posthog/test/test_migration_0222.py::DeletedPrimaryDashboardTestCase::test_backfill_primary_dashboard": 0.0002611910000496209,
"posthog/test/test_migration_0227.py::CreatingDashboardTilesTestCase::test_migrate_to_create_tiles": 0.0002553390000912259,
"posthog/test/test_migration_0228.py::FixingDashboardTilesTestCase::test_migrate_to_create_tiles": 0.00026081999999405525,
"posthog/test/test_migration_0259.py::RecordingDomainMigrationTestCase::test_backfill_recording_domain": 0.0002554200000304263,
"posthog/test/test_migration_0273.py::MarkInactiveExportsAsFinished::test_migration": 0.3214639120000129,
"posthog/test/test_migration_0287.py::CreatingSessionRecordingModelMigrationTestCase::test_migrate_to_create_session_recordings": 25.96112590700011,
"posthog/test/test_migration_0385.py::FixingExceptionAutocaptureMigration::test_migrate_to_create_session_recordings": 13.246654188999969,
"posthog/test/test_plugin.py::TestPlugin::test_default_config_dict": 0.19766401099991526,
"posthog/test/test_plugin.py::TestPlugin::test_default_config_list": 0.004111578999982157,
"posthog/test/test_plugin.py::TestPlugin::test_validate_plugin_job_payload": 0.004207840999924883,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_no_archive_fails": 0.20018792100006522,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_tgz_with_explicit_index_js_works": 0.03839510199998131,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_with_explicit_index_js_works": 0.02104098300003443,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_with_index_ts_works": 0.020947694000028605,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_without_any_code_fails": 0.0058967580000626185,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_without_index_ts_but_frontend_tsx_works": 0.02033896500006449,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_without_index_ts_but_site_Ts_works": 0.019541229999958887,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_from_zip_without_plugin_js_fails": 0.004961884999943322,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_twice_from_zip_with_index_ts_replaced_by_frontend_tsx_works": 0.03613924699982363,
"posthog/test/test_plugin.py::TestPluginSourceFile::test_sync_from_plugin_archive_with_subdir_works": 0.021173658000066098,
"posthog/test/test_plugin_log_entry.py::TestPluginLogEntry::test_log_limit_works": 0.2266288370001348,
"posthog/test/test_plugin_log_entry.py::TestPluginLogEntry::test_log_search_works": 0.02627489099995728,
"posthog/test/test_plugin_log_entry.py::TestPluginLogEntry::test_log_type_filter_works": 0.0375043500001766,
"posthog/test/test_plugin_log_entry.py::TestPluginLogEntry::test_simple_log_is_fetched": 0.022268129000053705,
"posthog/test/test_rate_limit.py::TestUserAPI::test_allow_list_works_as_expected": 0.3737121559998968,
"posthog/test/test_rate_limit.py::TestUserAPI::test_clickhouse_burst_rate_limit": 0.27191875300013635,
"posthog/test/test_rate_limit.py::TestUserAPI::test_default_burst_rate_limit": 0.07843482999999196,
"posthog/test/test_rate_limit.py::TestUserAPI::test_default_sustained_rate_limit": 0.8259097660001089,
"posthog/test/test_rate_limit.py::TestUserAPI::test_does_not_call_get_instance_setting_for_every_request": 0.2974337759998207,
"posthog/test/test_rate_limit.py::TestUserAPI::test_does_not_rate_limit_capture_endpoints": 0.02402072099994257,
"posthog/test/test_rate_limit.py::TestUserAPI::test_does_not_rate_limit_decide_endpoints": 0.028743060000124387,
"posthog/test/test_rate_limit.py::TestUserAPI::test_does_not_rate_limit_if_rate_limit_disabled": 0.06998001900012696,
"posthog/test/test_rate_limit.py::TestUserAPI::test_does_not_rate_limit_non_personal_api_key_endpoints": 0.08274640400009048,
"posthog/test/test_rate_limit.py::TestUserAPI::test_rate_limits_are_based_on_the_team_not_user": 0.5161371450001297,
"posthog/test/test_rate_limit.py::TestUserAPI::test_rate_limits_unauthenticated_users": 0.03190088000008018,
"posthog/test/test_rate_limit.py::TestUserAPI::test_rate_limits_work_on_non_team_endpoints": 0.06158809500004736,
"posthog/test/test_redis.py::TestRedis::test_redis_client_is_cached_between_calls": 0.006997396999850025,
"posthog/test/test_redis.py::TestRedis::test_redis_client_is_created": 0.0029761470000266854,
"posthog/test/test_redis.py::TestRedis::test_redis_client_uses_given_url": 0.0030660549999765863,
"posthog/test/test_renderers.py::TestCleanDataForJSON::test_cleans_dict_with_nan_and_inf_list": 0.0056776560001026155,
"posthog/test/test_renderers.py::TestCleanDataForJSON::test_cleans_dict_with_nan_and_inf_nested_list": 0.0022729569998318766,
"posthog/test/test_renderers.py::TestCleanDataForJSON::test_cleans_dict_with_nan_and_inf_scalars": 0.00224776799996107,
"posthog/test/test_renderers.py::TestCleanDataForJSON::test_cleans_dict_with_nan_and_inf_tuple": 0.002133565000008275,
"posthog/test/test_renderers.py::TestCleanDataForJSON::test_cleans_dict_with_nan_nested_dict": 0.0028426959999023893,
"posthog/test/test_team.py::TestModelCache::test_save_updates_cache": 0.07673655100006727,
"posthog/test/test_team.py::TestTeam::test_create_team_sets_primary_dashboard": 0.513955014999965,
"posthog/test/test_team.py::TestTeam::test_create_team_with_test_account_filters": 0.6134197459999768,
"posthog/test/test_team.py::TestTeam::test_each_team_gets_project_with_custom_name_and_same_id": 0.3031365949999554,
"posthog/test/test_team.py::TestTeam::test_each_team_gets_project_with_default_name_and_same_id": 0.30778274800002237,
"posthog/test/test_team.py::TestTeam::test_increment_id_sequence": 0.0037687449998884404,
"posthog/test/test_team.py::TestTeam::test_preinstalled_are_autoenabled": 0.03301646699992489,
"posthog/test/test_team.py::TestTeam::test_team_has_expected_defaults": 0.007998822999866206,
"posthog/test/test_team.py::TestTeam::test_team_not_created_if_project_creation_fails": 0.009253540000031535,
"posthog/test/test_team.py::TestTeam::test_team_on_cloud_uses_feature_flag_to_determine_person_on_events": 0.2292766399999664,
"posthog/test/test_team.py::TestTeam::test_team_on_self_hosted_uses_instance_setting_to_determine_person_on_events": 0.5858163450001257,
"posthog/test/test_templatetags.py::TestTemplateTags::test_compact_number": 0.00628996599994025,
"posthog/test/test_templatetags.py::TestTemplateTags::test_percentage": 0.002863836000074116,
"posthog/test/test_urls.py::TestUrls::test_authorize_and_redirect_domain": 0.29504565499996716,
"posthog/test/test_urls.py::TestUrls::test_logged_out_user_is_redirected_to_login": 0.03510092400006215,
"posthog/test/test_urls.py::TestUrls::test_logout_temporary_token_reset": 0.142296692000059,
"posthog/test/test_urls.py::TestUrls::test_unauthenticated_routes_get_loaded_on_the_frontend": 0.07026963099997374,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_edit_creator": 0.20611202800000683,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_edit_not_collaborator": 0.01072321199990256,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_edit_priviledged": 0.011285163000025022,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_edit_when_everyone_can": 0.010063299000080406,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_restrict": 0.008101127000031738,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_restrict_as_admin": 0.019963102999895455,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_can_restrict_as_creator": 0.008318349999967722,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_privilege_level_creator": 0.011379991000012524,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_privilege_level_priviledged": 0.01119499399999313,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_privilege_level_when_collaborators_can_edit": 0.010454103000029136,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_privilege_level_when_everyone_can_edit": 0.010608426999965559,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_restriction_level": 0.009168059000103312,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_restriction_level_explicit": 0.009818058999940149,
"posthog/test/test_user_permissions.py::TestUserDashboardPermissions::test_dashboard_effective_restriction_level_when_feature_not_available": 0.011682810000024801,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_privilege_level_all_limited": 0.22196925699995518,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_privilege_level_all_limited_as_collaborator": 0.03404331200010802,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_privilege_level_some_limited": 0.026584441000068182,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_privilege_level_with_no_dashboards": 0.027402387000165618,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_restriction_level_all_allow": 0.026179150999951162,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_restriction_level_limited": 0.025024091999966913,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_restriction_level_with_no_dashboards": 0.025724493999973674,
"posthog/test/test_user_permissions.py::TestUserInsightPermissions::test_effective_restriction_level_with_no_permissioning": 0.02652086099999451,
"posthog/test/test_user_permissions.py::TestUserPermissionsEfficiency::test_dashboard_efficiency": 0.29063110000004144,
"posthog/test/test_user_permissions.py::TestUserPermissionsEfficiency::test_team_lookup_efficiency": 0.2219972369999823,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level": 0.20098251299998537,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_does_not_belong": 0.011777166000001671,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_membership_isolation": 0.01536341700000321,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_updated": 0.01971944199999598,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_with_explicit_membership_returns_current_level": 0.02223737000008441,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_with_explicit_membership_returns_explicit_membership": 0.011258522999924025,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_effective_membership_level_with_member": 0.01053873199998634,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_ids_visible_for_user": 0.006437724999955208,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_ids_visible_for_user_explicit_permission": 0.010300215000029311,
"posthog/test/test_user_permissions.py::TestUserTeamPermissions::test_team_ids_visible_for_user_no_explicit_permissions": 0.010193936999939979,
"posthog/test/test_utils.py::TestAbsoluteUrls::test_absolute_uri_can_not_escape_out_host": 0.00668554900005347,
"posthog/test/test_utils.py::TestAbsoluteUrls::test_absolute_uri_can_not_escape_out_host_on_different_scheme": 0.0024153919998752826,
"posthog/test/test_utils.py::TestAbsoluteUrls::test_absolute_uri_can_not_escape_out_host_when_site_url_is_the_empty_string": 0.002459973999975773,
"posthog/test/test_utils.py::TestAbsoluteUrls::test_format_absolute_url": 0.004200184000069385,
"posthog/test/test_utils.py::TestDefaultEventName::test_no_events": 0.2014129840000578,
"posthog/test/test_utils.py::TestDefaultEventName::test_prefer_pageview": 0.006377372999963882,
"posthog/test/test_utils.py::TestDefaultEventName::test_take_screen": 0.006032196000091972,
"posthog/test/test_utils.py::TestFlatten::test_flatten_lots_of_depth": 0.0056240700000671495,
"posthog/test/test_utils.py::TestFlatten::test_flatten_single_depth": 0.0026326299998800096,
"posthog/test/test_utils.py::TestFormatUrls::test_format_query_params_absolute_url": 0.007442728999990322,
"posthog/test/test_utils.py::TestFormatUrls::test_format_query_params_absolute_url_with_https": 0.0028746270000965524,
"posthog/test/test_utils.py::TestGeneralUtils::test_available_timezones": 0.005727242000034494,
"posthog/test/test_utils.py::TestGeneralUtils::test_fetching_env_var_parsed_as_float": 0.0025394070000857027,
"posthog/test/test_utils.py::TestGeneralUtils::test_fetching_env_var_parsed_as_float_from_nonsense_input": 0.0029922780000788407,
"posthog/test/test_utils.py::TestGeneralUtils::test_fetching_env_var_parsed_as_int": 0.0035014129999808574,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_can_decompress_gzipped_body_received_with_no_compression_flag": 0.0074555869999812785,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_fails_to_JSON_parse_the_literal_string_undefined_when_not_compressed": 0.002362537999943015,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_pushes_debug_information_into_sentry_scope_from_origin_header": 0.003308370999889121,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_pushes_debug_information_into_sentry_scope_when_origin_header_not_present": 0.0034567689999676077,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_raises_specific_error_for_the_literal_string_undefined_when_compressed": 0.002490231999900061,
"posthog/test/test_utils.py::TestLoadDataFromRequest::test_still_tags_sentry_scope_even_when_debug_signal_is_not_available": 0.004095858999789925,
"posthog/test/test_utils.py::TestRelativeDateParse::test_day": 0.05341377099989586,
"posthog/test/test_utils.py::TestRelativeDateParse::test_hour": 0.04621286600001895,
"posthog/test/test_utils.py::TestRelativeDateParse::test_month": 0.045757249999951455,
"posthog/test/test_utils.py::TestRelativeDateParse::test_normal_date": 0.047540979000018524,
"posthog/test/test_utils.py::TestRelativeDateParse::test_year": 0.047949764000009054,
"posthog/test/test_utils.py::TestShouldRefresh::test_can_get_period_to_compare_when_interval_is_day": 0.005975504999923942,
"posthog/test/test_utils.py::TestShouldRefresh::test_refresh_requested_by_client_with_data_true": 0.0023078619999523653,
"posthog/test/test_utils.py::TestShouldRefresh::test_refresh_requested_by_client_with_refresh_empty": 0.0024819590000788594,
"posthog/test/test_utils.py::TestShouldRefresh::test_refresh_requested_by_client_with_refresh_true": 0.002291495000008581,
"posthog/test/test_utils.py::TestShouldRefresh::test_should_not_refresh_with_data_false": 0.002178439999966031,
"posthog/test/test_utils.py::TestShouldRefresh::test_should_not_refresh_with_refresh_false": 0.002124247000097057,
"posthog/test/test_utils.py::TestShouldRefresh::test_should_not_refresh_with_refresh_gibberish": 0.0028919080000378017,
"posthog/test/test_utils_cors.py::TestCorsResponse::test_origin": 0.006292465000115044,
"posthog/test/test_version_requirement.py::TestServiceVersionRequirement::test_accepted_services": 0.006022926999889933,
"posthog/test/test_version_requirement.py::TestServiceVersionRequirement::test_ranges": 0.0024720809999507765,
"posthog/test/test_version_requirement.py::TestServiceVersionRequirement::test_service_versions": 0.002736596999966423,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_create_external_data_source": 0.2679123509999499,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_database_schema": 0.04352829499998734,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_database_schema_non_postgres_source": 0.02109088299994255,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_delete_external_data_source": 0.04005906299994422,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_get_external_data_source_with_schema": 0.07975978099989334,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_internal_postgres": 0.06452643599993735,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_list_external_data_source": 0.05012323899995863,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_prefix_external_data_source": 0.0908316200001309,
"posthog/warehouse/api/test/test_external_data_source.py::TestSavedQuery::test_reload_external_data_source": 0.03295814499995231,
"posthog/warehouse/api/test/test_saved_query.py::TestSavedQuery::test_create": 0.3118605759998445,
"posthog/warehouse/api/test/test_saved_query.py::TestSavedQuery::test_create_name_overlap_error": 0.036729692999983854,
"posthog/warehouse/api/test/test_saved_query.py::TestSavedQuery::test_nested_view": 0.10935811699994247,
"posthog/warehouse/api/test/test_saved_query.py::TestSavedQuery::test_saved_query_doesnt_exist": 0.03432637100002012,
"posthog/warehouse/api/test/test_saved_query.py::TestSavedQuery::test_view_updated": 0.19355997099989963,
"posthog/warehouse/api/test/test_table.py::TestTable::test_create": 0.3024172539999199,
"posthog/warehouse/api/test/test_table.py::TestTable::test_credentialerror": 0.038288428999862845,
"posthog/warehouse/api/test/test_view.py::TestView::test_create": 0.30297849300006874,
"posthog/warehouse/api/test/test_view.py::TestView::test_view_doesnt_exist": 0.03525033400001121,
"posthog/warehouse/api/test/test_view.py::TestView::test_view_updated": 0.19135128699986126,
"posthog/warehouse/api/test/test_view.py::TestView::test_view_with_external_table": 0.12141508399997747,
"posthog/warehouse/api/test/test_view_link.py::TestViewLinkQuery::test_create": 0.2639660630001117,
"posthog/warehouse/api/test/test_view_link.py::TestViewLinkQuery::test_create_key_error": 0.03495281799996519,
"posthog/warehouse/api/test/test_view_link.py::TestViewLinkQuery::test_create_saved_query_key_error": 0.03474051900013819,
"posthog/warehouse/api/test/test_view_link.py::TestViewLinkQuery::test_delete": 0.07629090400007499,
"posthog/warehouse/models/test/test_table.py::TestTable::test_hogql_definition_new_style": 0.20012820899989947,
"posthog/warehouse/models/test/test_table.py::TestTable::test_hogql_definition_old_style": 0.005287478000013834,
"posthog/warehouse/models/test/test_table.py::TestTable::test_hogql_definition_tuple_patch": 0.005886500999849886,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictSteps::test_advanced_strict_funnel": 1.4490554470000347,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictSteps::test_basic_strict_funnel": 1.0302197020000108,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictSteps::test_basic_strict_funnel_conversion_times": 0.7548017969999705,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_basic_funnel_default_funnel_days_breakdown_action_materialized": 25.819441110999946,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_basic_funnel_default_funnel_days_breakdown_event": 0.20497422500000084,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_breakdown_correct_breakdown_props_are_chosen": 0.79262319999998,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_breakdown_correct_breakdown_props_are_chosen_for_step": 1.3120349550000014,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_cohort_breakdown": 2.1528641120000316,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_cohort_breakdown_materialized": 3.196908699000005,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event": 1.281780929999968,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_materialized": 1.9725722000000019,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_no_type": 1.317956871999911,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_no_type_materialized": 1.9600628749999487,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_single_person_events_with_multiple_properties": 0.991337036999937,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_single_person_multiple_breakdowns": 1.0643197809999947,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_single_person_multiple_breakdowns_materialized": 1.6128276899999605,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_with_other": 1.3444749930000057,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_with_other_materialized": 2.0096561149999843,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_with_string_only_breakdown": 1.289019518000032,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_event_with_string_only_breakdown_materialized": 1.9532438690000617,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_limit": 2.2052090209999733,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_limit_materialized": 3.4931352379999794,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_person": 1.5062314959999412,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_person_materialized": 2.3915964340000073,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_with_first_touch_attribution": 1.5708727719999729,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_with_last_touch_attribution": 1.528130525999984,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_with_step_attribution": 1.2397596150000254,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_with_step_one_attribution": 1.0562366409999981,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_breakdown_with_step_one_attribution_incomplete_funnel": 0.8729984349999995,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls": 1.0859676029999719,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_included": 2.0372054599999956,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_included_materialized": 2.875642889000119,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_materialized": 2.1263119239999924,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_multi_property_breakdown_event": 1.7678301799999758,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_multi_property_breakdown_event_materialized": 2.888761985999963,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_multiple_breakdown_snapshot": 0.8582847119999997,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_multiple_breakdown_with_first_touch_attribution": 1.5581396319999499,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_multiple_breakdown_with_first_touch_attribution_incomplete_funnel": 1.7139208940000117,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_funnel_step_non_array_breakdown_with_step_one_attribution_incomplete_funnel": 0.8630745490000322,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsBreakdown::test_strict_breakdown_events_with_multiple_properties": 1.1229777770000169,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsConversionTime::test_funnel_step_conversion_times": 0.4684103230000005,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsConversionTime::test_funnel_times_with_different_conversion_windows": 0.9368470779999711,
"posthog/queries/funnels/test/test_funnel_strict.py::TestFunnelStrictStepsConversionTime::test_funnel_with_multiple_incomplete_tries": 0.515407023000023,
"posthog/queries/funnels/test/test_funnel_strict_persons.py::TestFunnelStrictStepsPersons::test_first_step": 1.349199886000008,
"posthog/queries/funnels/test/test_funnel_strict_persons.py::TestFunnelStrictStepsPersons::test_second_step": 1.4202772990000199,
"posthog/queries/funnels/test/test_funnel_strict_persons.py::TestFunnelStrictStepsPersons::test_second_step_dropoff": 1.3672175259999904,
"posthog/queries/funnels/test/test_funnel_strict_persons.py::TestFunnelStrictStepsPersons::test_strict_funnel_person_recordings": 1.907082207999963,
"posthog/queries/funnels/test/test_funnel_strict_persons.py::TestFunnelStrictStepsPersons::test_third_step": 1.4030697230000442,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_auto_bin_count_single_step": 2.38214668899991,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_auto_bin_count_single_step_duplicate_events": 2.036239745000046,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_auto_bin_count_total": 0.0014271410000219475,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_basic_strict": 1.9335026410000182,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_basic_unordered": 5.30290787399997,
"posthog/queries/funnels/test/test_funnel_time_to_convert.py::TestFunnelTimeToConvert::test_custom_bin_count_single_step": 1.3233736250000447,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_all_date_range": 0.6369989259999898,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_all_results_for_day_interval": 0.6208169720000001,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_day_interval": 0.5697360340000159,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_from_second_step": 0.5255037339999831,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_funnel_step_breakdown_event": 0.5536408289999599,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_funnel_step_breakdown_person": 0.6253316460000065,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_funnel_trend_cohort_breakdown": 0.597079745999963,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_hour_interval": 0.39649981299999126,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_month_interval": 0.5461228159999791,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_no_event_in_period": 0.3984077289999277,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_one_person_in_multiple_periods_and_windows": 0.7395342880000157,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_one_person_in_multiple_periods_and_windows_in_strict_funnel": 0.4261273480000227,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_one_person_in_multiple_periods_and_windows_in_unordered_funnel": 1.3140686119999714,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_only_one_user_reached_one_step": 0.837443301999997,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_period_not_final": 0.41203126699997483,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_steps_performed_in_period_but_in_reverse": 0.405786973999966,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_timezones_trends": 0.9951945869999577,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_to_second_step": 0.5014948930000855,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_trend_for_hour_based_conversion_window": 0.48251925300002085,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_two_runs_by_single_user_in_one_period": 0.4034497179999903,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_week_interval": 0.8120235480000133,
"posthog/queries/funnels/test/test_funnel_trends.py::TestFunnelTrends::test_window_size_one_day": 0.6313597599999525,
"posthog/queries/funnels/test/test_funnel_trends_persons.py::TestFunnelTrendsPersons::test_funnel_trend_persons_returns_recordings": 0.7670136140000068,
"posthog/queries/funnels/test/test_funnel_trends_persons.py::TestFunnelTrendsPersons::test_funnel_trend_persons_with_drop_off": 0.7320039159999965,
"posthog/queries/funnels/test/test_funnel_trends_persons.py::TestFunnelTrendsPersons::test_funnel_trend_persons_with_no_to_step": 0.7405773500000237,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_advanced_funnel_multiple_exclusions_between_steps": 5.3348668980002,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_basic_unordered_funnel": 2.821663746000013,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_basic_unordered_funnel_conversion_times": 1.64568745400004,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_big_multi_step_unordered_funnel": 2.9503589079998847,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_funnel_exclusions_full_window": 1.0197924000000285,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_funnel_exclusions_invalid_params": 0.20037163599999985,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_funnel_unordered_all_events_with_properties": 0.4934940750001715,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_funnel_unordered_entity_filters": 0.4974422360000972,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedSteps::test_single_event_unordered_funnel": 0.36058683299995664,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_basic_funnel_default_funnel_days_breakdown_action": 0.7668988839999997,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_basic_funnel_default_funnel_days_breakdown_action_materialized": 1.3576652990000184,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_basic_funnel_default_funnel_days_breakdown_event": 0.8090162979999036,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_breakdown_correct_breakdown_props_are_chosen": 1.16126470100005,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_breakdown_correct_breakdown_props_are_chosen_for_step": 1.0853921060000289,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_cohort_breakdown": 5.6831040629999166,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_cohort_breakdown_materialized": 7.90314152000002,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event": 3.011390679000044,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_materialized": 4.1722657909999725,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_no_type": 2.948734333999994,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_no_type_materialized": 4.479047948000016,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_single_person_events_with_multiple_properties": 1.623697737999919,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_single_person_multiple_breakdowns": 1.0163641120000761,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_single_person_multiple_breakdowns_materialized": 1.6296098629999847,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_with_other": 2.9869907990000115,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_with_other_materialized": 4.09029499199994,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_with_string_only_breakdown": 3.048969802999977,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_event_with_string_only_breakdown_materialized": 4.117044609000004,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_limit": 2.8819901550000395,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_limit_materialized": 3.3496007960000043,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_person": 3.7063947219999136,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_person_materialized": 5.2374464579999085,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_with_first_touch_attribution": 2.4477484250001,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_with_last_touch_attribution": 2.5026388599999336,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_with_step_attribution": 1.1570660789999465,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_with_step_one_attribution": 1.8482136669999818,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_breakdown_with_step_one_attribution_incomplete_funnel": 2.1103780560001724,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls": 1.7829228440000406,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_included": 5.058603247000065,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_included_materialized": 6.095429759000012,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_custom_breakdown_limit_with_nulls_materialized": 2.9054803099999162,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_multi_property_breakdown_event": 4.5204674100000375,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_multi_property_breakdown_event_materialized": 6.748092574999987,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_multiple_breakdown_snapshot": 1.1912606700000197,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_multiple_breakdown_with_first_touch_attribution": 2.6826484059999984,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_multiple_breakdown_with_first_touch_attribution_incomplete_funnel": 3.0320868239999754,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsBreakdown::test_funnel_step_non_array_breakdown_with_step_one_attribution_incomplete_funnel": 2.0948199079999767,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsConversionTime::test_funnel_step_conversion_times": 0.6970367929999384,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsConversionTime::test_funnel_times_with_different_conversion_windows": 1.5540261740000005,
"posthog/queries/funnels/test/test_funnel_unordered.py::TestFunnelUnorderedStepsConversionTime::test_funnel_with_multiple_incomplete_tries": 0.9671897309999622,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_first_step": 1.6303320910000139,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_invalid_steps": 0.29079528900001606,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_last_step": 1.5795998649999774,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_last_step_dropoff": 1.6118921739999905,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_second_step_dropoff": 1.5845203840000295,
"posthog/queries/funnels/test/test_funnel_unordered_persons.py::TestFunnelUnorderedStepsPersons::test_unordered_funnel_does_not_return_recordings": 1.4150282309999511,
"posthog/queries/funnels/test/test_utils.py::TestGetFunnelOrderClass::test_filter_missing_order": 0.20382568399998036,
"posthog/queries/funnels/test/test_utils.py::TestGetFunnelOrderClass::test_ordered": 0.0037795410000853735,
"posthog/queries/funnels/test/test_utils.py::TestGetFunnelOrderClass::test_strict": 0.003603929999940192,
"posthog/queries/funnels/test/test_utils.py::TestGetFunnelOrderClass::test_unordered": 0.004206994999890412,
"posthog/queries/test/test_base.py::TestBase::test_determine_compared_filter": 0.2150536799999827,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_exact": 0.00687463899987506,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_icontains": 0.002310431000069002,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_is_set": 0.0021692160000839067,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_math_operators": 0.0021819470001673835,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_not_in": 0.002457467000112956,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_properties_regex": 0.0030007869999053582,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_property_date_operators": 0.005845131000114634,
"posthog/queries/test/test_base.py::TestMatchProperties::test_match_property_relative_date_operators": 0.05392366800003856,
"posthog/queries/test/test_base.py::TestMatchProperties::test_none_property_value_with_all_operators": 0.003678361999959634,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_filter_test_accounts": 1.0231210400000919,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend": 0.8344747659999712,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_action": 0.889288039000121,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_all_time": 0.9385780930000465,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_any_event": 1.3090589129998307,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_months": 0.8852308629998333,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_people": 2.150336394000078,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_people_paginated": 10.11841313299999,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_person_prop_filtering": 0.5153346320000765,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_prop_filtering": 0.6992272120000962,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_weeks": 0.8556083350000563,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trend_with_zero_person_ids": 0.19620483500000319,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_lifecycle_trends_distinct_id_repeat": 0.5147959699999092,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_sampling": 1.4901804160000438,
"posthog/queries/test/test_lifecycle.py::TestLifecycle::test_timezones": 1.4440692050000052,
"posthog/queries/test/test_paths.py::TestPaths::test_current_url_paths_and_logic": 2.2364605679998704,
"posthog/queries/test/test_paths.py::TestPaths::test_current_url_paths_and_logic_materialized": 3.7928074840000363,
"posthog/queries/test/test_paths.py::TestPaths::test_custom_event_paths": 0.5057577770000989,
"posthog/queries/test/test_paths.py::TestPaths::test_custom_hogql_paths": 0.5407136060001676,
"posthog/queries/test/test_paths.py::TestPaths::test_paths_in_window": 0.45640263600012076,
"posthog/queries/test/test_paths.py::TestPaths::test_paths_properties_filter": 0.5112524840000106,
"posthog/queries/test/test_paths.py::TestPaths::test_paths_start": 1.1485287560000188,
"posthog/queries/test/test_paths.py::TestPaths::test_screen_paths": 0.5174149919998854,
"posthog/queries/test/test_query_date_range.py::TestQueryDateRange::test_is_hourly": 0.3453325999998924,
"posthog/queries/test/test_query_date_range.py::TestQueryDateRange::test_parsed_date": 0.062351416999945286,
"posthog/queries/test/test_query_date_range.py::TestQueryDateRange::test_parsed_date_hour": 0.07800591999989592,
"posthog/queries/test/test_query_date_range.py::TestQueryDateRange::test_parsed_date_middle_of_hour": 0.0620238229998904,
"posthog/queries/test/test_query_date_range.py::TestQueryDateRange::test_parsed_date_week_rounded": 0.06374512799993681,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_day_interval": 0.4646088539999482,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_day_interval_sampled": 0.6162364540000453,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_filter_test_accounts": 0.5667099940000071,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_first_time_retention": 0.5744181260000687,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_hour_interval": 0.4651391740001145,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_interval_rounding": 0.4627645269998766,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_month_interval": 0.4974930930000028,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_month_interval_with_person_on_events_v2": 1.3049308710000105,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_action_start_point": 0.4788066710000294,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_aggregate_by_distinct_id": 0.6379166789999999,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_any_event": 0.4547359629998482,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_default": 0.4465219620000198,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_event_action": 0.6081340490001139,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_invalid_properties": 0.21190420699986134,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_multiple_events": 0.4474212909999551,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_people_basic": 0.44514819799996985,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_people_first_time": 0.6995167480000646,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_people_in_perieod_first_time": 0.6295335190001197,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_people_in_period": 0.44232822700007546,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_people_paginated": 5.791411621999941,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_with_properties": 0.47456709200002933,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_with_user_properties": 0.5637400230000367,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_retention_with_user_properties_via_action": 0.7545500500000344,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_timezones": 0.7375700219999999,
"posthog/queries/test/test_retention.py::TestFOSSRetention::test_week_interval": 0.8787875890000123,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_bad_cache": 0.21499301600010767,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_day": 0.2439288860001625,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_hour": 0.26205243399999745,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_month": 0.2602948069998092,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_no_cache": 0.2545055069998625,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_get_cached_result_week": 0.2944794310000134,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_merge_result": 0.25345442200000434,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_merge_result_multiple": 0.21692083899995396,
"posthog/queries/test/test_trends.py::TestTrendUtils::test_merge_result_no_cache": 0.20105169500016018,
"posthog/queries/test/test_trends.py::TestTrends::test_action_filtering": 0.6089058850000129,
"posthog/queries/test/test_trends.py::TestTrends::test_action_filtering_with_cohort": 0.6651469399998859,
"posthog/queries/test/test_trends.py::TestTrends::test_action_filtering_with_cohort_poe_v2": 0.49099383999998736,
"posthog/queries/test/test_trends.py::TestTrends::test_action_with_prop": 0.4553940880001619,
"posthog/queries/test/test_trends.py::TestTrends::test_action_with_prop_materialized": 0.860057736000158,
"posthog/queries/test/test_trends.py::TestTrends::test_against_clashing_entity_and_property_filter_naming": 0.464281700000015,
"posthog/queries/test/test_trends.py::TestTrends::test_against_clashing_entity_and_property_filter_naming_materialized": 1.289543956999978,
"posthog/queries/test/test_trends.py::TestTrends::test_all_time_timerange": 1.0903247069998088,
"posthog/queries/test/test_trends.py::TestTrends::test_avg_filtering": 0.6195939149999958,
"posthog/queries/test/test_trends.py::TestTrends::test_avg_filtering_materialized": 1.2000955539999723,
"posthog/queries/test/test_trends.py::TestTrends::test_avg_filtering_non_number_resiliency": 0.6156020299999909,
"posthog/queries/test/test_trends.py::TestTrends::test_avg_filtering_non_number_resiliency_materialized": 1.1358214010000438,
"posthog/queries/test/test_trends.py::TestTrends::test_bar_chart_by_value": 0.5481447499998922,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_cohort": 1.0466202280000516,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_cohort_materialized": 1.6776273560000163,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_cohort_poe_v2": 0.9331773379999504,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_empty_cohort": 0.4002097779999758,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_group_props": 0.5188633190000473,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_group_props_person_on_events": 0.6542265230000339,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_group_props_with_person_filter": 0.5202874480000901,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_group_props_with_person_filter_person_on_events": 0.5559490330000472,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property": 0.7519736339999099,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_for_person_on_events": 0.5855741619999435,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_for_person_on_events_materialized": 1.433399809999969,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_for_person_on_events_with_zero_person_ids": 0.1960537629998953,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_pie": 0.501736302000154,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_pie_materialized": 1.0993656069999815,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_pie_with_event_dau_filter": 0.5398842119999472,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_person_property_pie_with_event_dau_filter_materialized": 1.0632473879999225,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_by_property_pie": 0.7555232569999362,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filter_by_precalculated_cohort": 0.4598826400000462,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filter_by_precalculated_cohort_poe_v2": 0.41306421600017984,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering": 0.672975365000184,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_bar_chart_by_value": 0.610510012000077,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_bar_chart_by_value_materialized": 1.3988406360000454,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_limit": 3.925897619000011,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_limit_materialized": 6.444443695999894,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_materialized": 1.2105324229999042,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_persons": 0.4497734560001163,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_persons_materialized": 0.9264634319999914,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_persons_with_action_props": 0.4478065720001041,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_persons_with_action_props_materialized": 1.3074145810001028,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_with_properties": 0.527224523999962,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_with_properties_in_new_format": 0.8731285620000335,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_filtering_with_properties_materialized": 1.65551424399996,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_hour_interval": 0.5446010559999195,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_label": 0.19819295800004966,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_multiple_cohorts": 0.5567634310000358,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_multiple_cohorts_materialized": 1.4831561170000214,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_single_cohort": 0.4599239049998687,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_single_cohort_materialized": 1.3716339609999295,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_user_props_with_filter": 0.47286772200004634,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_user_props_with_filter_materialized": 1.3176269000000502,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_weekly_active_users_aggregated": 0.4927478339998288,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_weekly_active_users_aggregated_materialized": 1.3963941759999443,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_weekly_active_users_daily": 0.4409241429999611,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_weekly_active_users_daily_based_on_action": 0.9199538700000858,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_weekly_active_users_daily_materialized": 0.9117999989999817,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_filter": 0.3591525070000898,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_filter_groups": 0.42750014900013866,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_filter_groups_person_on_events": 0.5428405689999636,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_filter_groups_person_on_events_v2": 0.5963011490001691,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_filter_materialized": 0.7877974660000291,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_person_property_filter": 0.8221600369998896,
"posthog/queries/test/test_trends.py::TestTrends::test_breakdown_with_person_property_filter_materialized": 1.7608248519999279,
"posthog/queries/test/test_trends.py::TestTrends::test_combine_all_cohort_and_icontains": 0.636307519999832,
"posthog/queries/test/test_trends.py::TestTrends::test_combine_all_cohort_and_icontains_materialized": 1.1358781419999104,
"posthog/queries/test/test_trends.py::TestTrends::test_custom_range_timerange": 0.6218885060000048,