forked from PostHog/posthog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.test_durations
6344 lines (6344 loc) · 859 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/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_batch_export_workflow": 10.292407731000026,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_batch_export_workflow_fails_when_schedule_deleted": 15.964849461999961,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_batch_export_workflow_fails_when_schedule_deleted_after_running": 4.981706163000013,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_batch_export_workflow_no_end_at": 3.562440150000043,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_range[start_at0-end_at0-step0-expected0]": 0.01690257199993539,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_range[start_at1-end_at1-step1-expected1]": 0.011926281999990351,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_range[start_at2-end_at2-step2-expected2]": 0.012296583000079409,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_range[start_at3-end_at3-step3-expected3]": 0.013560831999939182,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_backfill_schedule_activity": 10.34647553600007,
"posthog/temporal/tests/batch_exports/test_backfill_batch_export.py::test_get_schedule_frequency": 1.0351820969999608,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_binds_activity_context[activity_environment0]": 0.015138239999942016,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_binds_activity_context[activity_environment1]": 0.014095781000037277,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_binds_context": 0.015654002000133005,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_formats_positional_args": 0.012765827000066565,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_puts_in_queue[activity_environment0]": 0.06183065700008683,
"posthog/temporal/tests/batch_exports/test_logger.py::test_batch_exports_logger_puts_in_queue[activity_environment1]": 0.06147200099997008,
"posthog/temporal/tests/batch_exports/test_run_updates.py::test_finish_batch_export_run": 0.9063133599998991,
"posthog/temporal/tests/batch_exports/test_run_updates.py::test_start_batch_export_run": 0.8183217390001118,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs0-2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.010806901000023572,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs1-2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.011144656999931613,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs10-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.009671390000050906,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs11-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.01110310199999276,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs12-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.gz]": 0.014032022000037614,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs13-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.br]": 0.011836863999974412,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs14-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.parquet.sz]": 0.0104175260000261,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs15-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.parquet]": 0.009945421999987047,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs16-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.parquet.gz]": 0.011846324999964963,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs17-nested/prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.parquet.br]": 0.010056374999919626,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs2-2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.gz]": 0.014028388999918207,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs3-2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.br]": 0.00989006699995798,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs4-my-fancy-prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.011361444999977266,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs5-my-fancy-prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.010177876000000197,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs6-my-fancy-prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.gz]": 0.010474272999999812,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs7-my-fancy-prefix/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl.br]": 0.009758096999973986,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs8-my-fancy-prefix-with-a-forwardslash/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.010592891000044347,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_get_s3_key[inputs9-my-fancy-prefix-with-a-forwardslash/2023-01-01 00:00:00-2023-01-01 01:00:00.jsonl]": 0.009617079000008744,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_insert_into_s3_activity_heartbeats": 0.827966215999993,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_defaults_to_timestamp_on_null_inserted_at": 0.9257406560000163,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_handles_cancellation": 5.224087549999979,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_handles_insert_activity_errors": 0.26658238200002415,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_handles_insert_activity_non_retryable_errors": 0.2313431610000407,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_a_lot_of_data": 41.80885684399999,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_custom_key_prefix[posthog-{table}/{hour}:{minute}:{second}/{year}-{month}-{day}]": 0.6001721350000366,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_custom_key_prefix[posthog-{table}/{hour}:{minute}:{second}]": 0.5289125729999569,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_custom_key_prefix[posthog-{table}/{year}-{month}-{day}/{hour}:{minute}:{second}]": 0.5342149009999844,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_custom_key_prefix[posthog/{year}-{month}-{day}/{hour}:{minute}:{second}]": 0.521243448000007,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_minio_bucket_and_custom_key_prefix[{year}-{month}-{day}]": 0.5208314039999777,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-None-day]": 0.0001978519999852324,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-None-every 5 minutes]": 0.00025565099997493235,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-None-hour]": 0.00020370400000047084,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-brotli-day]": 0.00019975600002908322,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-brotli-every 5 minutes]": 0.00020008600000664956,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-brotli-hour]": 0.00020788000000493412,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-gzip-day]": 0.00020005599998285106,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-gzip-every 5 minutes]": 0.00019758100000899503,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-None-gzip-hour]": 0.0002379769999834025,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-None-day]": 0.0002380869999569768,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-None-every 5 minutes]": 0.00020368399998460518,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-None-hour]": 0.0009867149999536196,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-brotli-day]": 0.0002885619999233313,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-brotli-every 5 minutes]": 0.0002094540000143752,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-brotli-hour]": 0.00020023699994453636,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-gzip-day]": 0.00019953499997882318,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-gzip-every 5 minutes]": 0.00019881300005408775,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-AES256-exclude_events1-gzip-hour]": 0.00020202000001745546,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-None-day]": 0.0002539779999892744,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-None-every 5 minutes]": 0.0002444490000357291,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-None-hour]": 0.0002484969999727582,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-brotli-day]": 0.00020121700003983278,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-brotli-every 5 minutes]": 0.00020374300004277757,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-brotli-hour]": 0.0002823510000098395,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-gzip-day]": 0.0002569930000504428,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-gzip-every 5 minutes]": 0.00021925300001157666,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-None-gzip-hour]": 0.00025335600003018044,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-None-day]": 0.00020737899995992848,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-None-every 5 minutes]": 0.00019920500000125685,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-None-hour]": 0.00019794199999978446,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-brotli-day]": 0.00019595800000615782,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-brotli-every 5 minutes]": 0.0002000359999669854,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-brotli-hour]": 0.00019979600000397113,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-gzip-day]": 0.0002552789999867855,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-gzip-every 5 minutes]": 0.00019940499998938321,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-None-exclude_events1-gzip-hour]": 0.00020760100005645654,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-None-day]": 0.00019779199999447883,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-None-every 5 minutes]": 0.00019733999999971275,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-None-hour]": 0.00020088699994857961,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-brotli-day]": 0.00019810200006986634,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-brotli-every 5 minutes]": 0.0002015179999261818,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-brotli-hour]": 0.00019730000002482484,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-gzip-day]": 0.00020835200001556586,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-gzip-every 5 minutes]": 0.0002595380000229852,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-None-gzip-hour]": 0.0002011180000067725,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-None-day]": 0.00019681100002344465,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-None-every 5 minutes]": 0.0002042249999476553,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-None-hour]": 0.00019864299997607304,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-brotli-day]": 0.00019566799994663597,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-brotli-every 5 minutes]": 0.00022168600003169558,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-brotli-hour]": 0.00019490599999016922,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-gzip-day]": 0.0001974310000036894,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-gzip-every 5 minutes]": 0.000194754999995439,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-None-None-aws:kms-exclude_events1-gzip-hour]": 0.00025522900000396476,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-None-day]": 0.00020776100001285158,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-None-every 5 minutes]": 0.00020521699997289033,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-None-hour]": 0.00020619800000076793,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-brotli-day]": 0.00020602699999017204,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-brotli-every 5 minutes]": 0.000202140000055806,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-brotli-hour]": 0.00020332200000439116,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-gzip-day]": 0.00021184700005960622,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-gzip-every 5 minutes]": 0.0002827110000112043,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-None-gzip-hour]": 0.00020787099998642589,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-None-day]": 0.00020750999999563646,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-None-every 5 minutes]": 0.0002061870000034105,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-None-hour]": 0.000203332000012324,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-brotli-day]": 0.0002253539999514942,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-brotli-every 5 minutes]": 0.00020360299998856135,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-brotli-hour]": 0.00020299200002682483,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-gzip-day]": 0.00020364199991718124,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-gzip-every 5 minutes]": 0.00020223000001351465,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-AES256-exclude_events1-gzip-hour]": 0.0002651180000157183,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-None-day]": 0.00020349099997929443,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-None-every 5 minutes]": 0.00026855400000158625,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-None-hour]": 0.00020429300002433592,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-brotli-day]": 0.00020680800002992328,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-brotli-every 5 minutes]": 0.00020539600001256986,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-brotli-hour]": 0.0002054459999953906,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-gzip-day]": 0.00020238099995140146,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-gzip-every 5 minutes]": 0.0002160660000072312,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-None-gzip-hour]": 0.00020948399998133027,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-None-day]": 0.0002238809999539626,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-None-every 5 minutes]": 0.00021021500003826077,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-None-hour]": 0.000267351999980292,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-brotli-day]": 0.00028681899993898696,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-brotli-every 5 minutes]": 0.0002094939999892631,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-brotli-hour]": 0.00020553599995309924,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-gzip-day]": 0.00020676799999819195,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-gzip-every 5 minutes]": 0.00020801099998379868,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-None-exclude_events1-gzip-hour]": 0.00020372299997006849,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-None-day]": 0.0002651890000038293,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-None-every 5 minutes]": 0.00020336199997927906,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-None-hour]": 0.00020385400000577647,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-brotli-day]": 0.00020134900006496537,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-brotli-every 5 minutes]": 0.0002682440000398856,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-brotli-hour]": 0.00020496600001251863,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-gzip-day]": 0.000209594000011748,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-gzip-every 5 minutes]": 0.00022270899995646687,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-None-gzip-hour]": 0.0002036529999713821,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-None-day]": 0.00021021399999199275,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-None-every 5 minutes]": 0.00020232000002806672,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-None-hour]": 0.00020618699994656708,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-brotli-day]": 0.00021397299997261143,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-brotli-every 5 minutes]": 0.0002077999999983149,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-brotli-hour]": 0.0007814089999556018,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-gzip-day]": 0.00020072699999218457,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-gzip-every 5 minutes]": 0.00020286200003738486,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema0-None-aws:kms-exclude_events1-gzip-hour]": 0.00020170900000948677,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-None-day]": 0.00022187700000131372,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-None-every 5 minutes]": 0.00023549200000161363,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-None-hour]": 0.00025769500001615597,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-brotli-day]": 0.000260668999999325,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-brotli-every 5 minutes]": 0.00020131799999489886,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-brotli-hour]": 0.00020000600000003033,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-gzip-day]": 0.00019973600001321756,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-gzip-every 5 minutes]": 0.00019928500000787608,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-None-gzip-hour]": 0.00019934499999862965,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-None-day]": 0.0002864690000023984,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-None-every 5 minutes]": 0.00026827399994999723,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-None-hour]": 0.00020084700003053513,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-brotli-day]": 0.0002476150000347843,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-brotli-every 5 minutes]": 0.00024293699993904738,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-brotli-hour]": 0.00024595199994337236,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-gzip-day]": 0.00028118799997400856,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-gzip-every 5 minutes]": 0.0003221059999987119,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-AES256-exclude_events1-gzip-hour]": 0.0002558509999630587,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-None-day]": 0.00020957399999588233,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-None-every 5 minutes]": 0.00020227000004524598,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-None-hour]": 0.0002062570000020969,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-brotli-day]": 0.00020155900000418114,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-brotli-every 5 minutes]": 0.0002040839999608579,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-brotli-hour]": 0.00020336200003612248,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-gzip-day]": 0.00026346499998908257,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-gzip-every 5 minutes]": 0.0002030900000136171,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-None-gzip-hour]": 0.00023422100002790103,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-None-day]": 0.0002158249999411055,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-None-every 5 minutes]": 0.00026077899997289933,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-None-hour]": 0.00024685400006774216,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-brotli-day]": 0.00020064699998556534,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-brotli-every 5 minutes]": 0.00020139800000151808,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-brotli-hour]": 0.00020290099996600475,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-gzip-day]": 0.0001997150000079273,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-gzip-every 5 minutes]": 0.0002671709999617633,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-None-exclude_events1-gzip-hour]": 0.00020342200002687605,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-None-day]": 0.0002432879999787474,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-None-every 5 minutes]": 0.00024446899999475136,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-None-hour]": 0.0002487069999688174,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-brotli-day]": 0.0002464120000240655,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-brotli-every 5 minutes]": 0.00025685200000680197,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-brotli-hour]": 0.00024361700002373254,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-gzip-day]": 0.00024715400002151,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-gzip-every 5 minutes]": 0.0002507020000166449,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-None-gzip-hour]": 0.0003596560000005411,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-None-day]": 0.00033167399999456393,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-None-every 5 minutes]": 0.00025030099999412414,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-None-hour]": 0.0003140800000664967,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-brotli-day]": 0.00024766500001760505,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-brotli-every 5 minutes]": 0.0003235779999499755,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-brotli-hour]": 0.0002553000000489192,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-gzip-day]": 0.000245041000027868,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-gzip-every 5 minutes]": 0.0002898550000054456,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[JSONLines-batch_export_schema1-None-aws:kms-exclude_events1-gzip-hour]": 0.00024330600001576386,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-None-day]": 0.0004297369999903822,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-None-every 5 minutes]": 0.00027608000004875066,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-brotli-day]": 0.0002083230000380354,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-brotli-every 5 minutes]": 0.00020832199999176737,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-brotli-hour]": 0.0002069589999678101,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-gzip-day]": 0.00021200899999485046,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-gzip-every 5 minutes]": 0.00021247899996978958,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-None-gzip-hour]": 0.0002597380000111116,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-None-day]": 0.00020270099997787838,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-None-every 5 minutes]": 0.0002141719999713132,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-None-hour]": 0.0002046040000323046,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-brotli-day]": 0.00020265099999505765,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-brotli-every 5 minutes]": 0.0002110069999616826,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-brotli-hour]": 0.0002057270000364042,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-gzip-day]": 0.0002739539999652152,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-gzip-every 5 minutes]": 0.00020485600003894433,
"posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py::test_s3_export_workflow_with_s3_bucket[Parquet-None-None-aws:kms-exclude_events1-gzip-hour]": 0.00020503500002178043,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_heartbeats": 0.0002712790000032328,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[None-None]": 0.00020410399997672357,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[None-exclude_events1]": 0.0002028199999131175,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[batch_export_schema0-None]": 0.00027633899992451916,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[batch_export_schema0-exclude_events1]": 0.00023972000008143368,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[batch_export_schema1-None]": 0.0002336579999564492,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_insert_into_snowflake_activity_inserts_data_into_snowflake_table[batch_export_schema1-exclude_events1]": 0.00021662599999672238,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[None-None-day]": 0.00020055700008470012,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[None-None-hour]": 0.00020172899996850902,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[None-exclude_events1-day]": 0.00020469499997943785,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[None-exclude_events1-hour]": 0.0002122980000649477,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema0-None-day]": 0.0002511510000431372,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema0-None-hour]": 0.0002028410000320946,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema0-exclude_events1-day]": 0.0002658890000475367,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema0-exclude_events1-hour]": 0.0018403960000341613,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema1-None-day]": 0.00020884299999579525,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema1-None-hour]": 0.00024654200001350546,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema1-exclude_events1-day]": 0.000202982000018892,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow[batch_export_schema1-exclude_events1-hour]": 0.0002190210000208026,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_exports_events[day]": 2.296894346999977,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_exports_events[hour]": 2.293334077000054,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_handles_cancellation": 0.00019983499998943444,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_handles_cancellation_mocked": 5.223303879000014,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_handles_insert_activity_errors": 0.24601918799999112,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_handles_insert_activity_non_retryable_errors": 0.2529892630000177,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_raises_error_on_copy_fail": 20.506388711999932,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_raises_error_on_put_fail": 10.474501169000064,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[None-None-day]": 0.00021320099995136843,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[None-None-hour]": 0.00020735999999033083,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[None-exclude_events1-day]": 0.00019923299998936272,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[None-exclude_events1-hour]": 0.00020355200001631601,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema0-None-day]": 0.00020373300003484474,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema0-None-hour]": 0.0002111070000410109,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema0-exclude_events1-day]": 0.00020557599998483056,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema0-exclude_events1-hour]": 0.00020047599991812604,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema1-None-day]": 0.00020357099992907024,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema1-None-hour]": 0.00021041499996954371,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema1-exclude_events1-day]": 0.0002027610000823188,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_with_many_files[batch_export_schema1-exclude_events1-hour]": 0.000292940000008457,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_without_events[day]": 0.2497988960000157,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_export_workflow_without_events[hour]": 0.24095065400001658,
"posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py::test_snowflake_heartbeat_details_parses_from_tuple[details0]": 0.012829431999989538,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write0]": 0.01438858500000606,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write1]": 0.013728219999961766,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write2]": 0.0129131230000894,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write3]": 0.011312814999882903,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write4]": 0.012400543000126163,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_tracks_bytes[to_write5]": 0.011658755000098608,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_csv[records0]": 0.011353202000009333,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_csv[records1]": 0.012316478000116149,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_jsonl[records0]": 0.01193024700000933,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_jsonl[records1]": 0.011533734000067852,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_jsonl_invalid_unicode": 0.01208799200003341,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_tsv[records0]": 0.01307112900019547,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_batch_export_temporary_file_write_records_to_tsv[records1]": 0.012739603999989413,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_csv_writer_writes_record_batches[record_batch0]": 0.011573337999948308,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_flushing_parquet_writer_resets_underlying_file[record_batch0]": 0.01311032699993575,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_jsonl_writer_writes_record_batches[record_batch0]": 0.015687524000099984,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_parquet_writer_writes_record_batches[record_batch0]": 0.025229676000094514,
"posthog/temporal/tests/batch_exports/test_temporary_file.py::test_writing_out_of_scope_of_temporary_file_raises[record_batch0]": 0.012471018000042022,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_create_external_job_activity": 0.9620034760000635,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_create_external_job_activity_schemas_exist": 0.9223716660000036,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_create_external_job_activity_update_schemas": 0.9695932310000899,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_create_schema_activity": 1.0103307460000224,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_external_data_job_workflow_blank": 1.090781475999961,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_external_data_job_workflow_with_schema": 1.438901466999937,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_run_postgres_job": 2.6224233880000156,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_run_stripe_job": 3.3541348629998993,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_run_stripe_job_cancelled": 1.529545422999945,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_run_stripe_job_row_count_update": 1.5973113909999483,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_update_external_job_activity": 0.9285814659999687,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_validate_schema_and_update_table_activity": 1.0240615350001008,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_validate_schema_and_update_table_activity_half_run": 1.0180848649999916,
"posthog/temporal/tests/external_data/test_external_data_job.py::test_validate_schema_and_update_table_activity_with_existing": 1.470675808999772,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_create_person_distinct_id_overrides_join_table": 5.081714898999962,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_create_person_distinct_id_overrides_join_with_newer_overrides_after_create": 5.070420972999841,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_create_person_distinct_id_overrides_join_with_older_overrides_present": 0.17147195799987003,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_create_wait_and_drop_table": 5.05709619799984,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_delete_person_overrides_mutation": 5.435560273999954,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_delete_person_overrides_mutation_within_grace_period": 5.444926676000023,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_delete_squashed_person_overrides_from_clickhouse_dry_run": 10.338184107000188,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_parse_empty_mutation_counts": 0.11595565700008592,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_squash_person_overrides_workflow": 5.803186683000149,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_squash_person_overrides_workflow_with_limited_team_ids": 0.7487980719999996,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_squash_person_overrides_workflow_with_newer_overrides": 0.812512020999975,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_update_events_with_person_overrides_mutation": 0.3204058470000746,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_update_events_with_person_overrides_mutation_dry_run": 0.20793869700003142,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_update_events_with_person_overrides_mutation_with_limited_team_ids": 0.3221017930001153,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_update_events_with_person_overrides_mutation_with_newer_overrides": 0.44863285500002803,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_update_events_with_person_overrides_mutation_with_older_overrides": 0.3204548359999535,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids[inputs0-expected0]": 0.15584378399989873,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids[inputs1-expected1]": 0.04614855800002715,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids[inputs2-expected2]": 0.048124492999932045,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids[inputs3-expected3]": 0.04797831899998073,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids[inputs4-expected4]": 0.04909213799999179,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs0-expected0]": 0.046199872000102005,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs1-expected1]": 0.045779895000009674,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs2-expected2]": 0.04550408700004027,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs3-expected3]": 0.051021674000025996,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs4-expected4]": 0.05703461600000992,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs5-expected5]": 0.046022488999938105,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs6-expected6]": 0.04557420900005127,
"posthog/temporal/tests/persons_on_events_squash/test_squash_person_overrides_workflow.py::test_workflow_inputs_yields_partition_ids_with_offset[inputs7-expected7]": 0.045708342000011726,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data['-'\\'']": 0.0012663349999684215,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[-'']": 0.0011250499999277963,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[\\\\-'\\\\']": 0.0011903719998827,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[a'\\\\b\\\\'c-'a\\'\\\\b\\\\\\'c']": 0.0012621570000419524,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data0-'c4c5547d-8782-4017-8eca-3ea19f4d528e']": 0.0014161460001105297,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data10-toDateTime('2023-07-14 00:00:00', 'UTC')]": 0.001149175000023206,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data11-toDateTime('2023-07-14 00:00:00')]": 0.0011275250000153392,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data12-toDateTime64('2023-07-14 00:00:00.005555', 6, 'UTC')]": 0.0011327360000450426,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data6-('a',1,('b',2))]": 0.0011242790001233516,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data7-['a',1,['b',2]]]": 0.0011121160001721364,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data8-('; DROP TABLE events --')]": 0.001118349000080343,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[data9-('\\'a\\'); DROP TABLE events --')]": 0.0011166640000510597,
"posthog/temporal/tests/test_clickhouse.py::test_encode_clickhouse_data[test-string-'test-string']": 0.001134567999997671,
"posthog/temporal/tests/test_encryption_codec.py::test_payloads_are_encrypted": 0.07414375200005452,
"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,