-
-
Notifications
You must be signed in to change notification settings - Fork 270
/
.test_timings
1011 lines (1011 loc) · 109 KB
/
.test_timings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/integration/build_system/test_issue_2063.py::test_build_system_no_build_backend": 21.35723579100022,
"tests/integration/build_system/test_issue_2125.py::test_get_requires_for_build_wheel": 10.520076863999748,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_pyproject_toml": 9.625224955000249,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_setup_py": 2.7578005569998822,
"tests/integration/build_system/test_pep_518.py::test_load_build_system_pyproject_custom_repos": 7.848932848000004,
"tests/integration/cli/commands/test_cache_prune.py::test_app_prune": 4.411353894999593,
"tests/integration/cli/commands/test_cache_prune.py::test_installed_wheel_prune_build_time": 3.003376182000011,
"tests/integration/cli/commands/test_cache_prune.py::test_installed_wheel_prune_run_time": 6.6083174419995885,
"tests/integration/cli/commands/test_cache_prune.py::test_nothing_prunable": 2.6126670829999057,
"tests/integration/cli/commands/test_cache_prune.py::test_pip_prune": 35.725898151000365,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_interpreter": 4.340358663999723,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_wheel_copies": 10.80820666199952,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_wheel_symlinks": 9.613795455999934,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_bootstrap": 6.268442344999585,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_code": 6.3869309289998455,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_deps": 10.434309627000403,
"tests/integration/cli/commands/test_export.py::test_export_multiple_artifacts": 0.4970740779999687,
"tests/integration/cli/commands/test_export.py::test_export_no_hashes": 0.33492974799992226,
"tests/integration/cli/commands/test_export.py::test_export_normalizes_name_but_not_version": 0.43998737600031745,
"tests/integration/cli/commands/test_export.py::test_export_respects_target": 0.6471255300007215,
"tests/integration/cli/commands/test_export.py::test_export_single_artifact": 0.4695537669999794,
"tests/integration/cli/commands/test_export.py::test_export_sort_by": 0.7865529069999866,
"tests/integration/cli/commands/test_export.py::test_export_vcs_and_local_project_requirements_issue_2416": 0.4472491770002307,
"tests/integration/cli/commands/test_export_subset.py::test_full": 0.7583921320001537,
"tests/integration/cli/commands/test_export_subset.py::test_subset": 0.40222282099966833,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_all": 1.104361881999921,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default": 0.4473303610002404,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_combined": 0.44363788599957843,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_markers": 0.4787145690002035,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_tags": 0.41141690399990694,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_verbose": 0.4610546349999822,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_distributions": 7.730538802999945,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_interpreter_selection": 1.8941077700001188,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_create": 10.948397567000484,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_export": 2.151871654000388,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_update": 0.7261013840002306,
"tests/integration/cli/commands/test_issue_1665.py::test_lock_black": 8.59057865900013,
"tests/integration/cli/commands/test_issue_1667.py::test_interpreter_constraints_range_coverage": 28.052497651000067,
"tests/integration/cli/commands/test_issue_1688.py::test_multiplatform_sdist": 13.653905575999943,
"tests/integration/cli/commands/test_issue_1711.py::test_backtrack_links_preserved": 13.094159759999911,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_sdist_requires_python_different_from_current": 10.303484263999508,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_universal_interpreter_constraint_unsatisfiable": 0.4172069660003217,
"tests/integration/cli/commands/test_issue_1741.py::test_prereleases": 10.384057921000476,
"tests/integration/cli/commands/test_issue_1801.py::test_preserve_pip_download_log": 1.0739361430000827,
"tests/integration/cli/commands/test_issue_1821.py::test_issue_1821": 47.6919855430001,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[sources]": 0.35217746200032707,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[strict]": 0.40676945099994555,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_platform_specific": 11.575640341999588,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_universal": 7.4768434050001815,
"tests/integration/cli/commands/test_issue_2050.py::test_lock_uncompilable_sdist": 3.4868732570002976,
"tests/integration/cli/commands/test_issue_2050.py::test_pep_517_prepare_metadata_for_build_wheel_fallback": 16.140952794999976,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [PEP-508]]": 15.292212996000217,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [Pip Proprietary]]": 13.546303642000566,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 13.833574390000194,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 13.398811801999727,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 14.042315787999996,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 13.98530879799955,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [PEP-508]]": 19.417272257000604,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [Pip Proprietary]]": 18.248042283999894,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 18.621421680999447,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 18.068962095999723,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 18.15819126199949,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 18.434811576000357,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [PEP-508]]": 2.715255110000271,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [Pip Proprietary]]": 3.68027710700062,
"tests/integration/cli/commands/test_issue_2059.py::test_pypy_impl_tag_handling": 3.86501970099971,
"tests/integration/cli/commands/test_issue_2098.py::test_missing_download_lock_analysis_handling": 93.59833848899962,
"tests/integration/cli/commands/test_issue_2211.py::test_backtracking[20.3.4-patched]": 32.922845504999714,
"tests/integration/cli/commands/test_issue_2268.py::test_abi_none_locking[pip-2020-resolver]": 4.362919377000253,
"tests/integration/cli/commands/test_issue_2268.py::test_abi_none_locking[pip-legacy-resolver]": 4.051343606999126,
"tests/integration/cli/commands/test_issue_2313.py::test_venv_site_packages_copies": 7.036750526000105,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.2]": 1.7743617030005225,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.3.1]": 0.02267472799985626,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.2]": 3.2497986609996588,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.3.1]": 3.504677154000092,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.3.2]": 3.5211679150002055,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.0]": 3.53418195400036,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.1]": 4.045453972999439,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.2]": 3.635819389000062,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1]": 4.072262643000158,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.2]": 3.9543393499998274,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.3.1]": 3.270463667999593,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.3]": 3.3401431199999934,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[20.3.4-patched]": 4.774706264999622,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.2.2]": 6.339129877999312,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.3.1]": 7.577479164000124,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.3]": 6.4325016210000285,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.0.1]": 5.945712317000016,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.0]": 5.360237873000642,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1.1]": 6.507491364000089,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1.2]": 6.422618528999465,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1]": 6.331059869000001,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[pip_version0]": 7.108299996616552e-05,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[20.3.4-patched]": 2.3831794710004033,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.2.2]": 6.272475632999885,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.3.1]": 5.718077556000026,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.3]": 5.763068847999875,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.0.1]": 5.872518686000149,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.0]": 5.706092459000047,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1.1]": 6.901681635999921,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1.2]": 5.949753630000032,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1]": 5.7769411350000155,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.2]": 5.950468524999451,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.3.1]": 5.9830764900007125,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.3.2]": 5.932342695999978,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.0]": 4.832497693000278,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.1]": 5.793699726999421,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.2]": 5.8018854869997085,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1]": 5.92404109600011,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.2]": 5.400444952000271,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.3.1]": 6.3607559709998895,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.3]": 5.75048054600029,
"tests/integration/cli/commands/test_local_project_lock.py::test_fingerprint_stability": 33.4554160749999,
"tests/integration/cli/commands/test_local_project_lock.py::test_path_mappings": 9.985456036999949,
"tests/integration/cli/commands/test_lock.py::test_create": 2.1820449790002385,
"tests/integration/cli/commands/test_lock.py::test_create_local": 34.84630731900006,
"tests/integration/cli/commands/test_lock.py::test_create_style": 14.611101046000385,
"tests/integration/cli/commands/test_lock.py::test_create_universal_platform_check": 27.66284237200034,
"tests/integration/cli/commands/test_lock.py::test_create_universal_python_unsupported": 0.4575416579996272,
"tests/integration/cli/commands/test_lock.py::test_create_vcs": 21.527127760999974,
"tests/integration/cli/commands/test_lock.py::test_excludes_pep517_build_requirements_issue_1565": 9.24818224899991,
"tests/integration/cli/commands/test_lock.py::test_universal_lock[pip-2020-resolver]": 6.707430359000227,
"tests/integration/cli/commands/test_lock.py::test_universal_lock[pip-legacy-resolver]": 10.720785038000031,
"tests/integration/cli/commands/test_lock.py::test_update_add_impossible": 4.0446732210002665,
"tests/integration/cli/commands/test_lock.py::test_update_noop": 1.9248198380000758,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run": 1.8345602969998254,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run_check": 2.1503691529997013,
"tests/integration/cli/commands/test_lock.py::test_update_partial": 4.1212159720003,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add": 2.1540297360002114,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run": 3.598648528999547,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run_check": 1.9858223510000244,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_transitive": 2.8572157160001552,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_closure_shrink": 1.4252058130000478,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_downgrade": 2.0901329989997066,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_impossible": 3.4540831689996594,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_mixed_dry_run": 2.088287452000259,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade": 2.355150431000311,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run": 1.9314425859997755,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run_check": 1.9471422349997738,
"tests/integration/cli/commands/test_lock_dependency_groups.py::test_lock_dependency_groups": 2.0403269630005525,
"tests/integration/cli/commands/test_lock_foreign_platform_sdist.py::test_lock_foreign_platform_sdist": 24.603394653000123,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_project_lock": 38.58430919200009,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_vcs_lock": 23.773067291000643,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_netrc_issue_1753": 13.45222249400058,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_url_issue_1753": 9.933109370000238,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_bad_netrc_issue_1762": 6.982055733999459,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_add": 1.0104778150002858,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_complex": 0.8776861960000133,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_configuration": 0.9222473140002876,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_extras": 8.963025356999424,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create": 0.8924389420003536,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_lock_create_equivalence": 1.5551407689999905,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_venv": 1.0559804770000483,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_lock_create_venv_create_run": 0.8505091619995255,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_noop": 0.8120678670002235,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_remove": 0.4133993370001008,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_sources": 1.8455724440004815,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_strict": 2.16970886900026,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_universal_to_universal": 2.4919903450004313,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_update": 0.8756600079996133,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_add": 1.5639488640008494,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_complex": 1.5428121199997804,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_create": 1.2268669289996978,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_update": 6.111088736999591,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_noop": 16.18824148800013,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_remove": 1.1454537799995705,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run": 6.6069801370003916,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_no_retain_pip_preinstalled": 6.5963815899999645,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_no_pip_preinstalled": 7.375949541999944,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_preinstalled": 6.7419409729996005,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--no-retain-pip]": 8.101926664000075,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--retain-pip]": 8.131039594999493,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[default]": 7.982103469999856,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_transitive_to_direct_and_vice_versa": 1.6004261059997589,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_update": 2.0213995710005292,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_added": 6.54749313900038,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_removed": 7.918617893999908,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_corrupted": 6.217570648000219,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run": 6.5037591170003,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run_path_mapping": 6.238278393000201,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_nominal": 6.2179468610002,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_delete_complex": 0.4371646839999812,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_conflict": 0.7753363449996868,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_invalid": 7.378609927000525,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_nominal": 0.44216475800021726,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_noop": 0.4309549810000135,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_req_only": 0.41346638499999244,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_downgrade": 0.8462706850000359,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_invalid": 0.5333966429998327,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_mixed": 0.8558576119999088,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_nominal": 1.0815227160001086,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace": 0.8972279800000251,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace_invalid": 0.34667265399957614,
"tests/integration/cli/commands/test_vcs_lock.py::test_subdir": 9.35039316800021,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_direct_reference": 7.982731076999698,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_equivalence": 7.099946086000273,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_fingerprint_stability": 9.42887022199966,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_pip_proprietary": 7.486752386000262,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_transitive": 8.033485006999854,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat-zipped]": 2.2139655900000434,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat]": 2.349648932000491,
"tests/integration/cli/commands/test_venv_create.py::test_flat_empty": 0.4441324650001661,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_empty": 0.4503408880000279,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_prefix": 0.5175192269994113,
"tests/integration/cli/commands/test_venv_create.py::test_foreign_target": 3.020949021999968,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_flat": 1.3862776040000426,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_venv": 2.100889681999888,
"tests/integration/cli/commands/test_venv_create.py::test_venv": 6.37089454199986,
"tests/integration/cli/commands/test_venv_create.py::test_venv_empty": 0.6026603599998452,
"tests/integration/cli/commands/test_venv_create.py::test_venv_pip": 5.789320908000263,
"tests/integration/cli/commands/test_venv_create.py::test_venv_update_target_mismatch": 2.7026513370005887,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_pex_venv": 3.0876207699998304,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-2.7.18]": 5.224777245000041,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-3.10.7]": 6.555409964999399,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-2.7.18]": 4.179868746000011,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-3.10.7]": 6.604903839000144,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=False]": 3.6310675199997604,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=True]": 4.82529391000071,
"tests/integration/cli/commands/test_venv_inspect.py::test_no_python": 0.4787571899996692,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_dir": 0.41592502400044395,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_interpreter": 0.44750127599991174,
"tests/integration/resolve/pep_691/test_api.py::test_http_error": 0.49036343000079796,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_content_type": 0.0020035309999002493,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_json": 0.1383476469991365,
"tests/integration/resolve/pep_691/test_api.py::test_valid[application/vnd.pypi.simple.v1+json]": 0.40169990000003963,
"tests/integration/resolve/test_dependency_groups.py::test_pex_from_dependency_groups": 2.353729506000036,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_local_project_requirement": 6.928853135999361,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_nominal": 14.182215467999868,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_offline": 4.4637237229990205,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_project_requirement": 5.591140642000482,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_subset": 2.015661237999666,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-2020-resolver-direct-reference]": 12.715889271000378,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-2020-resolver-pip-proprietary]": 12.268134870000267,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-legacy-resolver-direct-reference]": 12.21967061100031,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-legacy-resolver-pip-proprietary]": 12.895184668000184,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-2020-resolver-direct-reference]": 17.886965255999712,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-2020-resolver-pip-proprietary]": 18.641720089000046,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-legacy-resolver-direct-reference]": 20.16004440899951,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-legacy-resolver-pip-proprietary]": 19.425746267999784,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-2020-resolver-direct-reference]": 19.518627229999765,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-2020-resolver-pip-proprietary]": 19.58787573400059,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-legacy-resolver-direct-reference]": 19.53057204200013,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-legacy-resolver-pip-proprietary]": 19.68368429400016,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-2020-resolver-direct-reference]": 19.252716704999784,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-2020-resolver-pip-proprietary]": 18.471617733999665,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-legacy-resolver-direct-reference]": 18.878338689999964,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-legacy-resolver-pip-proprietary]": 20.14663332100008,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-2020-resolver-direct-reference]": 18.841396693999286,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-2020-resolver-pip-proprietary]": 18.650292167000316,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-legacy-resolver-direct-reference]": 19.199185467999996,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-legacy-resolver-pip-proprietary]": 19.94064339999977,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-2020-resolver-direct-reference]": 18.889873246000207,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-2020-resolver-pip-proprietary]": 19.117015793000064,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-legacy-resolver-direct-reference]": 18.372848597000484,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-legacy-resolver-pip-proprietary]": 18.419889059000525,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-2020-resolver-direct-reference]": 18.7041857170002,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-2020-resolver-pip-proprietary]": 19.217668655000125,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-legacy-resolver-direct-reference]": 18.463549031000184,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-legacy-resolver-pip-proprietary]": 18.61589549199971,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-2020-resolver-direct-reference]": 17.855830956000318,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-2020-resolver-pip-proprietary]": 20.4619419680007,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-legacy-resolver-direct-reference]": 18.258315781999954,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-legacy-resolver-pip-proprietary]": 18.294341857999825,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-2020-resolver-direct-reference]": 18.319848719999754,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-2020-resolver-pip-proprietary]": 19.266084311000668,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-legacy-resolver-direct-reference]": 18.81526372799999,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-legacy-resolver-pip-proprietary]": 18.905230151999604,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.2-pip-2020-resolver-direct-reference]": 18.522905003000233,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.2-pip-2020-resolver-pip-proprietary]": 19.41460311299943,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.1-pip-2020-resolver-direct-reference]": 18.860729872000775,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.1-pip-2020-resolver-pip-proprietary]": 18.691777477999494,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.2-pip-2020-resolver-direct-reference]": 18.287140526999792,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.2-pip-2020-resolver-pip-proprietary]": 19.923612800000228,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.0-pip-2020-resolver-direct-reference]": 18.86447821800084,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.0-pip-2020-resolver-pip-proprietary]": 18.715302937999695,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-direct-reference]": 18.10901101699983,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-pip-proprietary]": 17.800896832000944,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-direct-reference]": 19.24884033699982,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-pip-proprietary]": 18.09071481799947,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-direct-reference]": 18.67546092900011,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-pip-proprietary]": 18.17503542800023,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-direct-reference]": 18.67639474600037,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-pip-proprietary]": 19.028997329999584,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3-pip-2020-resolver-direct-reference]": 20.0788627790007,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3-pip-2020-resolver-pip-proprietary]": 17.566965207000067,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3.1-pip-2020-resolver-direct-reference]": 19.040282107000166,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3.1-pip-2020-resolver-pip-proprietary]": 17.334417429000496,
"tests/integration/resolve/test_issue_2092.py::test_vcs_respects_target": 38.61801812900012,
"tests/integration/resolve/test_issue_2412.py::test_invalid_project": 0.7864950940011113,
"tests/integration/resolve/test_issue_2412.py::test_locked_project": 31.784420623000187,
"tests/integration/resolve/test_issue_2532.py::test_resolved_wheel_tag_platform_mismatch_warns": 22.731788041000073,
"tests/integration/resolve/test_issue_2568.py::test_independent_logs_for_independent_runs": 1.475808969999889,
"tests/integration/scie/test_discussion_2516.py::test_discussion_2516_op": 11.188208377000592,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-eager]": 2.210325005999948,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-lazy]": 2.5032304020000993,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-eager]": 2.5205451030001313,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-lazy]": 2.8824580030004654,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-eager]": 1.8342596699999376,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-lazy]": 1.7333515389996137,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-eager]": 2.0258473919998323,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-lazy]": 1.7193552310004634,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-eager]": 2.988736744999642,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-lazy]": 3.0330372300004456,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-eager]": 2.4218766169997252,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-lazy]": 2.5468929359999493,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-eager]": 2.1367247820003286,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-lazy]": 2.4780883230000654,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-eager]": 5.3863908050002465,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-lazy]": 10.838199628999973,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-eager]": 2.1058135300004324,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-lazy]": 2.0604984470001,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-eager]": 1.8712366360000487,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-lazy]": 1.6543386200000896,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-eager]": 2.960962632999781,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-lazy]": 2.3839501549996385,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-eager]": 1.7976243690000047,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-lazy]": 1.0958169749992521,
"tests/integration/scie/test_pex_scie.py::test_custom_lazy_urls": 6.668232524000814,
"tests/integration/scie/test_pex_scie.py::test_hashes": 2.9229438490001485,
"tests/integration/scie/test_pex_scie.py::test_multiple_platforms": 16.6635587009996,
"tests/integration/scie/test_pex_scie.py::test_pbs_stripped": 12.136781571000483,
"tests/integration/scie/test_pex_scie.py::test_pex_pex_scie": 15.67712926700051,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[VENV]": 3.1163788169997133,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[ZIPAPP]": 3.808053488000496,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[VENV]": 3.203932449000149,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[ZIPAPP]": 3.984707055999934,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[VENV]": 2.7980579899995064,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[ZIPAPP]": 4.080177835000086,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_distribution": 3.952881212000193,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_script": 4.352576498999952,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[VENV]": 2.9281049740002345,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[ZIPAPP]": 5.209757284999796,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_distribution": 4.270764866999343,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_script": 3.3992250030000832,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_point_injections": 3.258740609999222,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_points": 3.4504614490001586,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_file_suffix": 0.8905887289997736,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_parent_dir": 4.848072390000198,
"tests/integration/scie/test_pex_scie.py::test_scie_only": 1.71154956700002,
"tests/integration/scie/test_pex_scie.py::test_script_not_found": 1.1583322389997193,
"tests/integration/scie/test_pex_scie.py::test_specified_interpreter": 4.6864637530002256,
"tests/integration/scie/test_pex_scie.py::test_specified_science_binary": 13.316071577000002,
"tests/integration/test_downloads.py::test_issue_1849_download_foreign_artifact": 0.5803053310000905,
"tests/integration/test_downloads.py::test_issue_1849_fingerprint_foreign_artifact": 0.6457266790002905,
"tests/integration/test_excludes.py::test_exclude": 15.254636675999791,
"tests/integration/test_excludes.py::test_exclude_deep[20.3.4-patched-legacy]": 12.58557756900018,
"tests/integration/test_excludes.py::test_exclude_deep[20.3.4-patched-resolvelib]": 11.96249646599972,
"tests/integration/test_excludes.py::test_exclude_deep[22.2.2-legacy]": 16.099534629000118,
"tests/integration/test_excludes.py::test_exclude_deep[22.2.2-resolvelib]": 14.024806024999634,
"tests/integration/test_excludes.py::test_exclude_deep[22.3-legacy]": 14.353460713000459,
"tests/integration/test_excludes.py::test_exclude_deep[22.3-resolvelib]": 13.73796855799992,
"tests/integration/test_excludes.py::test_exclude_deep[22.3.1-legacy]": 14.141903095000089,
"tests/integration/test_excludes.py::test_exclude_deep[22.3.1-resolvelib]": 17.83891764100008,
"tests/integration/test_excludes.py::test_exclude_deep[23.0-legacy]": 15.102441559999988,
"tests/integration/test_excludes.py::test_exclude_deep[23.0-resolvelib]": 16.339227221998954,
"tests/integration/test_excludes.py::test_exclude_deep[23.0.1-legacy]": 14.817824357000063,
"tests/integration/test_excludes.py::test_exclude_deep[23.0.1-resolvelib]": 15.216685375000452,
"tests/integration/test_excludes.py::test_exclude_deep[23.1-legacy]": 15.219445894998898,
"tests/integration/test_excludes.py::test_exclude_deep[23.1-resolvelib]": 13.991681066999263,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.1-legacy]": 13.973429512000621,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.1-resolvelib]": 14.04187274999913,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.2-legacy]": 15.154760933999569,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.2-resolvelib]": 16.36466760299936,
"tests/integration/test_excludes.py::test_exclude_deep[23.2-resolvelib]": 14.169780146999983,
"tests/integration/test_excludes.py::test_exclude_deep[23.3.1-resolvelib]": 14.054264246000457,
"tests/integration/test_excludes.py::test_exclude_deep[23.3.2-resolvelib]": 15.789364436999676,
"tests/integration/test_excludes.py::test_exclude_deep[24.0-resolvelib]": 15.442395080000097,
"tests/integration/test_excludes.py::test_exclude_deep[24.1-resolvelib]": 13.972399714999483,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.1-resolvelib]": 14.137554936000924,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.2-resolvelib]": 15.039111398999012,
"tests/integration/test_excludes.py::test_exclude_deep[24.2-resolvelib]": 13.806857912999476,
"tests/integration/test_excludes.py::test_exclude_deep[24.3-resolvelib]": 16.081857154999852,
"tests/integration/test_excludes.py::test_exclude_deep[24.3.1-resolvelib]": 14.18977883200023,
"tests/integration/test_excludes.py::test_lock_exclude": 19.607490348999363,
"tests/integration/test_excludes.py::test_pre_resolved_dists_exclude": 19.794182310999986,
"tests/integration/test_excludes.py::test_requirements_pex_exclude": 10.153784621999876,
"tests/integration/test_executuon_mode_venv.py::test_custom_prompt": 1.471312105000834,
"tests/integration/test_inject_env_and_args.py::test_complex[VENV]": 5.083916926000256,
"tests/integration/test_inject_env_and_args.py::test_complex[ZIPAPP]": 9.001040115999785,
"tests/integration/test_inject_env_and_args.py::test_inject_args[VENV]": 3.9743356260000837,
"tests/integration/test_inject_env_and_args.py::test_inject_args[ZIPAPP]": 11.14148508900007,
"tests/integration/test_inject_env_and_args.py::test_inject_env[VENV]": 1.7549193419999938,
"tests/integration/test_inject_env_and_args.py::test_inject_env[ZIPAPP]": 4.3892378870004904,
"tests/integration/test_inject_env_and_args.py::test_inject_env_invalid": 0.31450776099882205,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[VENV]": 6.978900000831345e-05,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[ZIPAPP]": 7.2589999945194e-05,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-VENV]": 2.737692679000247,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-ZIPAPP]": 5.162876392000271,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-VENV]": 2.6458397460000924,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-ZIPAPP]": 4.540297181999449,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-VENV]": 5.402639988999454,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-ZIPAPP]": 8.720397606999995,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-VENV]": 4.535347910000382,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-ZIPAPP]": 9.100516875999801,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-VENV]": 4.442179873999976,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-ZIPAPP]": 10.885496359999706,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-VENV]": 5.238570982000056,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-ZIPAPP]": 9.360559120999824,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-PEX]": 2.2406204019998768,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-VENV]": 1.673843861000023,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-PEX]": 1.8799048389992095,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-VENV]": 1.164554169999974,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-PEX]": 1.81314411600124,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-VENV]": 1.3003688150001835,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-PEX]": 1.770424536001883,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-VENV]": 1.1770806819995414,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-PEX]": 2.1766114629990625,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-VENV]": 1.0901283139983207,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-PEX]": 2.5960210239991284,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-VENV]": 2.468581025998901,
"tests/integration/test_integration.py::test_cache_disable": 3.9538792790003754,
"tests/integration/test_integration.py::test_console_script_from_pex_path": 3.715356788000463,
"tests/integration/test_integration.py::test_constraint_file_from_url": 2.7589395320010226,
"tests/integration/test_integration.py::test_cross_platform_abi_targeting_behavior_exact": 2.5615631390005547,
"tests/integration/test_integration.py::test_disable_cache": 2.5225088320003124,
"tests/integration/test_integration.py::test_emit_warnings_default": 2.7504503140007728,
"tests/integration/test_integration.py::test_entry_point_exit_code": 2.867871181999817,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-loose]": 1.6230644130000655,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-packed]": 1.467490765999628,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-zipapp]": 1.5662488140001187,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.3264004809998369,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-packed]": 1.3992318259997774,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 1.7748540759998832,
"tests/integration/test_integration.py::test_inherit_path_backwards_compatibility": 5.652801147000446,
"tests/integration/test_integration.py::test_inherit_path_fallback": 6.386676719999741,
"tests/integration/test_integration.py::test_inherit_path_prefer": 5.494412847000149,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-loose]": 1.6364288979998491,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-packed]": 1.4818256980001934,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-zipapp]": 1.64480322000054,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.2938206560002072,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-packed]": 1.5034408950000397,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 1.4065921809997235,
"tests/integration/test_integration.py::test_invalid_macosx_platform_tag": 6.635000045207562e-05,
"tests/integration/test_integration.py::test_ipython_appnope_env_markers": 5.6597999900986906e-05,
"tests/integration/test_integration.py::test_multiplatform_entrypoint": 2.560276318999513,
"tests/integration/test_integration.py::test_no_emit_warnings_2": 2.3671855079992383,
"tests/integration/test_integration.py::test_no_emit_warnings_emit_env_override": 3.0778566930002853,
"tests/integration/test_integration.py::test_no_emit_warnings_verbose_override": 2.362873518000015,
"tests/integration/test_integration.py::test_pex_cache_dir_and_pex_root": 2.4038806170005955,
"tests/integration/test_integration.py::test_pex_console_script_custom_setuptools_useable": 4.70329955499983,
"tests/integration/test_integration.py::test_pex_execute": 1.0249308649999875,
"tests/integration/test_integration.py::test_pex_exit_code_propagation": 3.338351209999473,
"tests/integration/test_integration.py::test_pex_interpreter": 1.1239686749995599,
"tests/integration/test_integration.py::test_pex_interpreter_execute_custom_setuptools_useable": 3.4368783459999577,
"tests/integration/test_integration.py::test_pex_interpreter_interact_custom_setuptools_useable": 2.586566390999451,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_linux_msgpack": 20.96043845799977,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_lxml_osx": 8.840262583999902,
"tests/integration/test_integration.py::test_pex_manylinux_runtime": 8.376799996767659e-05,
"tests/integration/test_integration.py::test_pex_multi_resolve": 12.71430133100148,
"tests/integration/test_integration.py::test_pex_multi_resolve_1": 9.19865986900004,
"tests/integration/test_integration.py::test_pex_multi_resolve_2": 9.562085662999834,
"tests/integration/test_integration.py::test_pex_path_arg": 15.198611081000308,
"tests/integration/test_integration.py::test_pex_path_in_pex_info_and_env": 12.374915004000286,
"tests/integration/test_integration.py::test_pex_python_symlink": 1.9525441080004384,
"tests/integration/test_integration.py::test_pex_raise": 1.1506949209997401,
"tests/integration/test_integration.py::test_pex_repl_built": 4.342686264999884,
"tests/integration/test_integration.py::test_pex_repl_cli": 3.467406729999766,
"tests/integration/test_integration.py::test_pex_repl_history[PEX]": 2.0074578609996934,
"tests/integration/test_integration.py::test_pex_repl_history[VENV]": 1.5886872579994815,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[PEX]": 2.0085442839999814,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[VENV]": 1.624855794999803,
"tests/integration/test_integration.py::test_pex_resource_bundling": 2.959406547999606,
"tests/integration/test_integration.py::test_pex_root_build": 3.7322858369998357,
"tests/integration/test_integration.py::test_pex_root_run": 19.208732305000012,
"tests/integration/test_integration.py::test_pex_run_strip_env": 3.241671174000203,
"tests/integration/test_integration.py::test_pex_source_bundling": 1.318160748000082,
"tests/integration/test_integration.py::test_pex_source_bundling_pep420": 1.0368117100006202,
"tests/integration/test_integration.py::test_pip_issues_9420_workaround": 2.4137115660005293,
"tests/integration/test_integration.py::test_require_hashes": 7.2444548489993394,
"tests/integration/test_integration.py::test_requirement_file_from_url": 4.07968862800044,
"tests/integration/test_integration.py::test_requirements_network_configuration": 1.2620633339997767,
"tests/integration/test_integration.py::test_seed[.whl file-loose-PEX]": 2.4198255239998616,
"tests/integration/test_integration.py::test_seed[.whl file-loose-VENV]": 1.2524768019998191,
"tests/integration/test_integration.py::test_seed[.whl file-packed-PEX]": 2.478346228999726,
"tests/integration/test_integration.py::test_seed[.whl file-packed-VENV]": 1.269022670999675,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-PEX]": 2.492247834999489,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-VENV]": 1.5665239209997708,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-PEX]": 2.101441801999954,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-VENV]": 1.1302903239998159,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-PEX]": 2.503726738000296,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-VENV]": 1.1178290750003725,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-PEX]": 2.3399744929997723,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-VENV]": 1.38958938199994,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-PEX]": 4.1289211579996845,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-VENV]": 3.5470199330002288,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-PEX]": 4.643527035999796,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-VENV]": 3.3444918329996653,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-PEX]": 5.504648270000416,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-VENV]": 4.3658438609995756,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-PEX]": 3.9610559060001833,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-VENV]": 4.0777334729996255,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-PEX]": 4.215390891999505,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-VENV]": 3.5390669329995035,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-PEX]": 4.210876559999633,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-VENV]": 3.1782923530004155,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-PEX]": 4.285993491000227,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-VENV]": 2.8518574069998976,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-PEX]": 4.97523047499908,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-VENV]": 3.3990402970002833,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-PEX]": 5.1035872370002835,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-VENV]": 3.62430858100106,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-PEX]": 3.9796955699994214,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-VENV]": 3.2755629100001897,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-PEX]": 5.608179125999868,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-VENV]": 3.576818225000352,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-PEX]": 5.390240142000039,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-VENV]": 4.306654434999928,
"tests/integration/test_integration.py::test_setup_interpreter_constraint": 4.194520979000117,
"tests/integration/test_integration.py::test_setup_python": 6.373623103000227,
"tests/integration/test_integration.py::test_setup_python_direct_markers": 3.5529695490004087,
"tests/integration/test_integration.py::test_setup_python_multiple_direct_markers": 6.662059999999656,
"tests/integration/test_integration.py::test_setup_python_multiple_transitive_markers": 6.929485863999616,
"tests/integration/test_integration.py::test_setup_python_path": 5.466330973999902,
"tests/integration/test_integration.py::test_tmpdir_absolute": 0.8958896919998551,
"tests/integration/test_integration.py::test_tmpdir_dne": 0.36888274199964144,
"tests/integration/test_integration.py::test_tmpdir_file": 0.39933224600008543,
"tests/integration/test_integration.py::test_trusted_host_handling": 2.803972445999989,
"tests/integration/test_integration.py::test_unzip_mode": 2.8289382710004247,
"tests/integration/test_integration.py::test_venv_mode": 5.684408654999515,
"tests/integration/test_interpreter.py::test_boot_identification_leak": 3.623343640999792,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_honored_without_ppp_or_pp": 2.3133196629996746,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py2": 3.7040370650001933,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py3": 1.3590791419997004,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_pex_python_path_precedence_over_pex_python": 2.6170033760008664,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_constraint_option": 3.627789082000163,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_multiple_constraint_options": 3.7053311489994485,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_pex_python_path": 2.1839269280003464,
"tests/integration/test_interpreter_selection.py::test_interpreter_selection_using_os_environ_for_bootstrap_reexec": 20.734808242000327,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_and_pex_python_but_no_constraints": 1.7866652579987203,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_only": 1.83916697100085,
"tests/integration/test_interpreter_selection.py::test_pex_python": 6.2773758149996866,
"tests/integration/test_interpreter_selection.py::test_plain_pex_exec_no_ppp_no_pp_no_constraints": 1.6247967469998912,
"tests/integration/test_issue_1017.py::test_resolve_python_requires_full_version": 6.5432691349997185,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-PEX]": 1.493635873999665,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-VENV]": 1.300101330999496,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-PEX]": 1.4510661169997547,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-VENV]": 1.3396109610002895,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-PEX]": 1.6191171450000184,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-VENV]": 1.2885718289999204,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-PEX]": 1.607578717999786,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-VENV]": 1.3551011239997024,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-PEX]": 1.343786650999391,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-VENV]": 1.2373990299993238,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-PEX]": 1.457643845000348,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-VENV]": 1.3658775419999074,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-PEX]": 1.57787652099978,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-VENV]": 1.7580497650005782,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-PEX]": 1.4249485769996681,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-VENV]": 1.5419971429992074,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-PEX]": 1.3375904370004719,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-VENV]": 1.450175640999987,
"tests/integration/test_issue_1025.py::test_extras_isolation": 10.157640447999256,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[pyvenv]": 19.542898493999928,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[virtualenv-16.7.10]": 13.75293832999887,
"tests/integration/test_issue_1179.py::test_pip_2020_resolver_engaged": 13.025946800999918,
"tests/integration/test_issue_1201.py::test_old_requires_metadata_used_for_requires_python": 3.0088330820008196,
"tests/integration/test_issue_1202.py::test_prefer_binary": 3.385311651999473,
"tests/integration/test_issue_1218.py::test_venv_mode_dir_hash_includes_all_pex_info_metadata": 8.556107548999535,
"tests/integration/test_issue_1225.py::test_venv_mode_pex_path": 9.868532655000308,
"tests/integration/test_issue_1232.py::test_isolated_pex_zip": 47.164677396000116,
"tests/integration/test_issue_1302.py::test_pex_repository_pep503": 5.411948183998902,
"tests/integration/test_issue_1316.py::test_resolve_cyclic_dependency_graph": 3.543438254000648,
"tests/integration/test_issue_1336.py::test_pip_leak": 5.821215095000298,
"tests/integration/test_issue_1422.py::test_unconstrained_universal_venv_pex": 7.4408156439994855,
"tests/integration/test_issue_1447.py::test_layout_identification": 3.421481720999509,
"tests/integration/test_issue_1479.py::test_unicode_script_shebang_rewrite_docutils": 4.464667399000064,
"tests/integration/test_issue_1520.py::test_hermetic_console_scripts": 5.158035618000213,
"tests/integration/test_issue_1537.py::test_rel_cert_path": 4.586893274001341,
"tests/integration/test_issue_1540.py::test_derive_consistent_shebang_platforms": 2.4986886550004783,
"tests/integration/test_issue_1550.py::test_duplicate_requirements_issues_1550": 2.8743733450000946,
"tests/integration/test_issue_1560.py::test_build_isolation[2.7.18]": 10.50524725699961,
"tests/integration/test_issue_1560.py::test_build_isolation[3.10.7]": 11.374551388999862,
"tests/integration/test_issue_1560.py::test_build_isolation[3.8.10]": 9.684566421999989,
"tests/integration/test_issue_1560.py::test_build_isolation[3.9.13]": 9.548707611000282,
"tests/integration/test_issue_1560.py::test_pep_517_for_legacy_project": 12.503707725999448,
"tests/integration/test_issue_1560.py::test_pep_517_for_pep_517_project": 5.317124438000064,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-VENV]": 12.652450246000626,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-ZIPAPP]": 12.048411067001325,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-VENV]": 2.3235203800004456,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-ZIPAPP]": 4.52979963999951,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-VENV]": 11.451900676999685,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-ZIPAPP]": 11.589972929000396,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-VENV]": 2.3261061769990192,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-ZIPAPP]": 3.5166653930000393,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-VENV]": 10.949925064999661,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-ZIPAPP]": 11.088186624999253,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-VENV]": 2.1843681320006,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-ZIPAPP]": 3.4407838660008565,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-VENV]": 10.907261296000797,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-ZIPAPP]": 11.522405816000173,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-VENV]": 2.5078957659998196,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-ZIPAPP]": 3.3723497239998323,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[VENV]": 19.34020457400038,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[ZIPAPP]": 19.850897736999286,
"tests/integration/test_issue_157.py::test_pex_info_command_json": 3.6630644450006002,
"tests/integration/test_issue_157.py::test_pex_info_command_loose_venv_pex_directory": 2.5419253539994315,
"tests/integration/test_issue_157.py::test_pex_info_command_packed_pex_directory": 3.59569478100002,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_file": 3.19161714799975,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_venv": 4.110717960998954,
"tests/integration/test_issue_157.py::test_pex_info_command_venv_pex_file": 2.4808613850000256,
"tests/integration/test_issue_157.py::test_pex_with_deps[VENV]": 4.148044506999213,
"tests/integration/test_issue_157.py::test_pex_with_deps[ZIPAPP]": 4.465159035000397,
"tests/integration/test_issue_1597.py::test_platform_abbreviated": 5.577122990999669,
"tests/integration/test_issue_1597.py::test_platform_complete": 7.916682790999403,
"tests/integration/test_issue_1598.py::test_mount_respects_env": 31.10761178499979,
"tests/integration/test_issue_1656.py::test_mixed_pex_root": 5.729100030293921e-05,
"tests/integration/test_issue_1656.py::test_new_venv_tool_vs_old_pex": 6.174200007080799e-05,
"tests/integration/test_issue_1656.py::test_old_venv_tool_vs_new_pex": 8.62360002429341e-05,
"tests/integration/test_issue_1683.py::test_requirements_pex": 4.432336431999829,
"tests/integration/test_issue_1726.py::test_check_install_issue_1726": 13.693446375999883,
"tests/integration/test_issue_1730.py::test_check_install_issue_1730": 8.206999973481288e-05,
"tests/integration/test_issue_1802.py::test_stderr_not_torn_down": 2.2747342909997315,
"tests/integration/test_issue_1809.py::test_excepthook_scrubbing": 6.333157603999098,
"tests/integration/test_issue_1817.py::test_sdist_for_project_universal": 10.938054552999347,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_native_extensions": 24.517089449000196,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_pep517_build": 213.1040475889995,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[VENV]": 1.7081214780000664,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[ZIPAPP]": 4.466346596000221,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[fallback]": 1.803154817000177,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[false]": 2.5119188959988605,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[prefer]": 1.731641860000309,
"tests/integration/test_issue_1856.py::test_os_name_spoofing": 0.9933679500009021,
"tests/integration/test_issue_1861.py::test_confounding_site_packages_directory": 6.399665208000442,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[fallback]": 3.9899588210009824,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[false]": 4.992554824000763,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[prefer]": 3.847053056000732,
"tests/integration/test_issue_1872.py::test_pep_518_venv_pex_env_scrubbing": 50.41058154300026,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-.whl file]": 0.8609254180000789,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-installed wheel chroot]": 0.8660658879998664,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-.whl file]": 0.7364820499997222,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-installed wheel chroot]": 0.7767259609991015,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-.whl file]": 0.9269766690003962,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-installed wheel chroot]": 0.949643193999691,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-.whl file]": 0.7235117060008633,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-installed wheel chroot]": 0.7549945000009757,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-.whl file]": 0.9328614220012241,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-installed wheel chroot]": 0.7308703010003228,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-.whl file]": 0.9385176510004385,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-installed wheel chroot]": 0.8733727339986217,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-.whl file]": 0.7868166199996267,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-installed wheel chroot]": 0.7302284309998868,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-.whl file]": 0.6800020059999952,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-installed wheel chroot]": 0.6781973090000974,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-.whl file]": 0.767105593999986,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-installed wheel chroot]": 0.8679271849996439,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-.whl file]": 1.0276580449999528,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-installed wheel chroot]": 0.8036953739992896,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-.whl file]": 0.813157625999338,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-installed wheel chroot]": 0.7528787319997718,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-.whl file]": 0.8857809920009458,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-installed wheel chroot]": 0.9192015489998084,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-.whl file]": 0.8583352570003626,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-installed wheel chroot]": 0.8623971549995986,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-.whl file]": 0.8954196919994502,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-installed wheel chroot]": 0.7817954069996631,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-.whl file]": 0.7779003479990934,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-installed wheel chroot]": 0.9078795599989462,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-.whl file]": 0.8036533270005748,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-installed wheel chroot]": 0.9715424469995924,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-.whl file]": 1.2897308810006507,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-installed wheel chroot]": 1.2706683249998605,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-.whl file]": 0.838819897000576,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-installed wheel chroot]": 0.9407422430003862,
"tests/integration/test_issue_1933.py::test_musllinux_wheels_resolved": 27.037268502000188,
"tests/integration/test_issue_1936.py::test_empty_pex_path": 5.0524326350014235,
"tests/integration/test_issue_1949.py::test_resolve_arbitrary_equality": 7.081309533999956,
"tests/integration/test_issue_1995.py::test_packaging": 23.461140687999432,
"tests/integration/test_issue_2001.py::test_compile_error_as_warning": 2.869043929000327,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[--sh-boot]": 3.8115286960010053,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[__main__.py boot]": 4.867380159000277,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[20.3.4-patched]": 7.854090219999307,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.2]": 3.544612282000344,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.3.1]": 3.2696521839989146,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.3]": 4.474039896000249,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-loose]": 4.970973550999588,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-packed]": 5.898409847999574,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-zipapp]": 5.108126203000211,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-loose]": 3.4208059909997246,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-packed]": 4.947088510999492,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-zipapp]": 5.541487702000268,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-loose]": 3.567799100999764,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-packed]": 4.311575058999551,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-zipapp]": 4.103467172999444,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-loose]": 3.262824690999878,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-packed]": 3.773064754999723,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-zipapp]": 3.7947193350000816,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-loose]": 4.35360208199927,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-packed]": 4.533123241999419,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-zipapp]": 4.158065400999476,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-loose]": 2.941903056001138,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-packed]": 3.9838773250003214,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-zipapp]": 4.001402617000167,
"tests/integration/test_issue_2038.py::test_wheel_file_url_dep": 41.65864872200109,
"tests/integration/test_issue_2073.py::test_lock_create_foreign_platform_yolo_cross_build": 3.657709405998503,
"tests/integration/test_issue_2073.py::test_lock_resolve_foreign_platform_yolo_cross_build": 4.734488000000056,
"tests/integration/test_issue_2073.py::test_standard_resolve_foreign_platform_yolo_cross_build": 7.089617782999085,
"tests/integration/test_issue_2087.py::test_long_wheel_names": 3.9471833190000325,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-loose]": 3.728569133999372,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-packed]": 4.306834292000531,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-zipapp]": 4.606837276999613,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-loose]": 4.084079343000667,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-packed]": 4.801419041999907,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-zipapp]": 5.894822624999506,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_build_pex": 8.708455558999049,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_lock": 9.456147440998393,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_build_pex": 0.8285279540004922,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_lock": 0.9600629170008688,
"tests/integration/test_issue_2134.py::test_add_module_in_package": 0.5024466120003126,
"tests/integration/test_issue_2134.py::test_add_module_offset": 0.4629397720009365,
"tests/integration/test_issue_2134.py::test_add_package_offset": 0.4588833779998822,
"tests/integration/test_issue_2134.py::test_add_sub_package": 0.5833669600015128,
"tests/integration/test_issue_2134.py::test_add_sub_package_mixed": 0.510806913000124,
"tests/integration/test_issue_2134.py::test_add_sub_package_pep_420": 0.49784909899972263,
"tests/integration/test_issue_2134.py::test_add_top_level_module": 0.5183798449988899,
"tests/integration/test_issue_2134.py::test_add_top_level_package": 0.5037400669989438,
"tests/integration/test_issue_2134.py::test_overlap": 0.5279926549992524,
"tests/integration/test_issue_2183.py::test_lambdex_with_incompatible_attrs": 5.637816322000617,
"tests/integration/test_issue_2186.py::test_default_resolve_no_warning": 1.53775171199959,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_error": 9.591999969416065e-05,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_warning": 9.265199969377136e-05,
"tests/integration/test_issue_2203.py::test_read_only_venv": 24.743976732000192,
"tests/integration/test_issue_2235.py::test_standard_library_is_included": 2.8516149880006196,
"tests/integration/test_issue_2249.py::test_inspect[PEX-SH_BOOT]": 3.552123328999187,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV-SH_BOOT]": 1.4544782249986383,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV]": 2.288638367001113,
"tests/integration/test_issue_2249.py::test_inspect[PEX-ZIPAPP]": 4.279743202999271,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-SH_BOOT]": 8.324048092001249,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV-SH_BOOT]": 8.045079505001013,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV]": 7.886868872999003,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-ZIPAPP]": 8.01739754800019,
"tests/integration/test_issue_2324.py::test_update_sdists_not_updated": 5.43321078200097,
"tests/integration/test_issue_2343.py::test_no_build_no_wheel_honored_pex": 5.008332456000062,
"tests/integration/test_issue_2343.py::test_only_build_honored_lock": 4.434611726001094,
"tests/integration/test_issue_2343.py::test_only_build_honored_pex": 9.06905158399968,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_lock": 1.766795223000372,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_pex": 2.5887424120001015,
"tests/integration/test_issue_2348.py::test_find_links_url_escaping": 42.65936024699931,
"tests/integration/test_issue_2355.py::test_ssl_context": 11.07119052500002,
"tests/integration/test_issue_2389.py::test_lock_use_no_build_wheel": 4.783397837999473,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-loose]": 5.9246533179994,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-packed]": 5.925925933000144,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-zipapp]": 5.92092763599976,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-loose]": 6.127324471000065,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-packed]": 6.132561997000266,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-zipapp]": 6.324686363000183,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-loose]": 7.233031693999692,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-packed]": 5.866656234999937,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-zipapp]": 6.759762030999809,
"tests/integration/test_issue_2395.py::test_download_incompatible_python": 9.167786498999703,
"tests/integration/test_issue_2410.py::test_pex_with_editable": 3.099182173000372,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_exact": 34.16184607299965,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock": 37.91905668799973,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock_inlined_requirements": 39.52224132000083,
"tests/integration/test_issue_2413.py::test_bdist_pex_under_tox": 26.216604131999702,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:no]": 0.2166077600004428,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:upgraded]": 6.207230148000235,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:yes]": 4.119297268000082,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:no]": 0.0007518310003433726,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:upgraded]": 7.382500747000449,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:yes]": 5.78789376199984,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:no]": 0.0012908859989693156,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:upgraded]": 5.908798553999986,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:yes]": 4.5754044389996125,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:no]": 0.001143702000263147,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:upgraded]": 6.567008866999458,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:yes]": 5.2641375220000555,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:no]": 0.0016703319997759536,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:upgraded]": 7.144188911999663,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:yes]": 6.026309515000321,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:no]": 0.0013362030003918335,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:upgraded]": 6.343582761998732,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:yes]": 5.412959016999594,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:no]": 0.001022265000756306,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:upgraded]": 6.2124227029989925,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:yes]": 5.096994994999477,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:no]": 0.0009618220001357258,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:upgraded]": 7.550107614000808,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:yes]": 7.203372890000537,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:no]": 0.0008955260000220733,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:upgraded]": 6.995274793000135,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:yes]": 4.873601471000256,
"tests/integration/test_issue_2415.py::test_gevent_monkeypatch": 11.549825272998532,
"tests/integration/test_issue_2432.py::test_lock_use_no_build_wheel": 7.054830674001096,
"tests/integration/test_issue_2441.py::test_invalid_metadata_error_messages_under_old_pip": 1.1377361209997616,
"tests/integration/test_issue_2572.py::test_symlinked_home": 7.334528285000488,
"tests/integration/test_issue_2739.py::test_tar_bz2": 8.25435374800054,
"tests/integration/test_issue_298.py::test_confounding_encoding": 1.283557535,
"tests/integration/test_issue_434.py::test_entry_point_targeting": 4.045367492000878,
"tests/integration/test_issue_455.py::test_exclude": 12.798390436000773,
"tests/integration/test_issue_539.py::test_abi3_resolution": 6.813599975430407e-05,
"tests/integration/test_issue_598.py::test_force_local_implicit_ns_packages": 3.062938013999883,
"tests/integration/test_issue_661.py::test_devendoring_required": 4.443191853999451,
"tests/integration/test_issue_729.py::test_undeclared_setuptools_import_on_pex_path": 23.024171192000722,
"tests/integration/test_issue_736.py::test_requirement_setup_py_with_extras": 3.7711034590001873,
"tests/integration/test_issue_745.py::test_extras_isolation": 8.094492970000829,
"tests/integration/test_issue_749.py::test_pkg_resource_early_import_on_pex_path": 5.436472196999603,
"tests/integration/test_issue_898.py::test_top_level_requirements_requires_python_env_markers": 3.2645712669991553,
"tests/integration/test_issue_899.py::test_top_level_environment_markers": 3.884267028999602,
"tests/integration/test_issue_940.py::test_resolve_arbitrary_equality": 8.531433494999874,
"tests/integration/test_issue_996.py::test_resolve_local_platform": 11.765795002999766,
"tests/integration/test_keyring_support.py::test_import_provider[23.1.1]": 12.892562179000379,
"tests/integration/test_keyring_support.py::test_import_provider[23.1.2]": 12.018772460000037,
"tests/integration/test_keyring_support.py::test_import_provider[23.1]": 12.381045945999176,
"tests/integration/test_keyring_support.py::test_import_provider[23.2]": 12.410189261999221,
"tests/integration/test_keyring_support.py::test_import_provider[23.3.1]": 12.938799947000007,
"tests/integration/test_keyring_support.py::test_import_provider[23.3.2]": 12.205624749999515,
"tests/integration/test_keyring_support.py::test_import_provider[24.0]": 12.386920507000468,
"tests/integration/test_keyring_support.py::test_import_provider[24.1.1]": 12.017400442000508,
"tests/integration/test_keyring_support.py::test_import_provider[24.1.2]": 12.237345143999846,
"tests/integration/test_keyring_support.py::test_import_provider[24.1]": 12.528050717000951,
"tests/integration/test_keyring_support.py::test_import_provider[24.2]": 11.938202371999978,
"tests/integration/test_keyring_support.py::test_import_provider[24.3.1]": 12.543444890000501,
"tests/integration/test_keyring_support.py::test_import_provider[24.3]": 12.24648208600047,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1.1]": 9.212932642999476,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1.2]": 17.105895573999078,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1]": 9.693245812000896,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.2]": 9.58929787299985,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.3.1]": 9.698372737998397,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.3.2]": 9.166671231000691,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.0]": 9.699466883000241,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1.1]": 8.836741637999694,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1.2]": 9.043587461000243,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1]": 8.16242917999989,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.2]": 9.519910686000003,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.3.1]": 8.967303057999743,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.3]": 9.556394250999801,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-PEX]": 6.208378472998447,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-VENV]": 5.029357833999711,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-PEX]": 7.5657784490003905,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-VENV]": 6.027675182999701,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-PEX]": 8.121428374000061,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-VENV]": 5.351666591001049,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-PEX]": 4.8933600650007065,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-VENV]": 4.649542178000047,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-PEX]": 8.473947543999202,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-VENV]": 5.246621760999915,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-PEX]": 7.49750278799911,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-VENV]": 7.032981299000312,
"tests/integration/test_lock_resolver.py::test_corrupt_artifact": 6.4310251959987,
"tests/integration/test_lock_resolver.py::test_empty_lock_issue_1659": 1.4353400330001023,
"tests/integration/test_lock_resolver.py::test_issue_1413_portable_find_links": 7.0588322860003245,
"tests/integration/test_lock_resolver.py::test_issue_1717_transitive_extras": 14.891762072000347,
"tests/integration/test_lock_resolver.py::test_multiplatform": 12.030928891999793,
"tests/integration/test_lock_resolver.py::test_resolve_wheel_files": 3.6216391040006783,
"tests/integration/test_lock_resolver.py::test_strict_basic": 2.1546354109996173,
"tests/integration/test_lock_resolver.py::test_subset": 1.2764290829991296,
"tests/integration/test_lock_resolver.py::test_unavailable_artifacts": 4.18224353900132,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-no-transitive-deps]": 1.0503460100017037,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-transitive-deps]": 1.266578077000304,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-no-transitive-deps]": 1.1040741750011875,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-transitive-deps]": 1.1985713529993518,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-no-transitive-deps]": 1.032106441999531,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-transitive-deps]": 1.4972921230000793,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-no-transitive-deps]": 1.055731437999384,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-transitive-deps]": 1.4291902509994543,
"tests/integration/test_no_pre_install_wheels.py::test_no_pre_install_wheels": 2.155236850999245,
"tests/integration/test_overrides.py::test_illegal_override": 1.2970500729998093,
"tests/integration/test_overrides.py::test_lock_sync_override": 13.253684848999,
"tests/integration/test_overrides.py::test_override": 2.4496781130010277,
"tests/integration/test_overrides.py::test_pex_repository_override": 2.551865372000975,
"tests/integration/test_overrides.py::test_pre_resolved_dists_override": 3.742963413000325,
"tests/integration/test_pep_427.py::test_install_scripts": 0.9463992900000449,
"tests/integration/test_pep_427.py::test_install_wheel_interpreter": 7.164218507000442,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_ic_min_compatible_build_time_hole": 3.096664719000728,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_no_ic": 8.40556053399905,
"tests/integration/test_pex_bootstrapper.py::test_boot_resolve_fail": 2.584324648999427,
"tests/integration/test_pex_bootstrapper.py::test_cached_venv_interpreter_paths": 1.6678070810003192,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_namespace_packages": 6.414865425001153,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_short_link": 3.103671217999363,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_site_packages_copies": 22.542812651999157,
"tests/integration/test_pex_entry_points.py::test_entry_point": 4.158863936000671,
"tests/integration/test_pex_entry_points.py::test_executable": 1.4922001579998323,
"tests/integration/test_pex_entry_points.py::test_script": 7.230358023999543,
"tests/integration/test_pex_entry_points.py::test_style_mutex": 0.8490627359997234,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-loose]": 19.562451888000396,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-packed]": 21.15071640000042,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-zipapp]": 22.943454498000392,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-loose]": 20.19287318700026,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-packed]": 20.957899443001224,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-zipapp]": 20.745520884000143,
"tests/integration/test_reexec.py::test_pex_no_reexec_constraints_match_current": 1.6707039480006642,
"tests/integration/test_reexec.py::test_pex_no_reexec_no_constraints": 1.4059472670005562,
"tests/integration/test_reexec.py::test_pex_re_exec_failure": 0.00037875099951634184,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python": 2.2162054799991893,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path": 2.242820550999568,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path_min_py_version_selected": 1.5592519860010725,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_match_current_pythonpath_present": 2.0733132989989826,
"tests/integration/test_reexec.py::test_pex_reexec_no_constraints_pythonpath_present": 1.3758746889998292,
"tests/integration/test_reproducible.py::test_reproducible_build_bdist_requirements": 5.948699981672689e-05,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_dependency": 27.001864928999566,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_source": 45.25672279999981,
"tests/integration/test_reproducible.py::test_reproducible_build_m_flag": 9.635095849999743,
"tests/integration/test_reproducible.py::test_reproducible_build_no_args": 9.822891606999292,
"tests/integration/test_reproducible.py::test_reproducible_build_python_flag": 9.445392083000115,
"tests/integration/test_reproducible.py::test_reproducible_build_python_shebang_flag": 7.074802033000196,
"tests/integration/test_reproducible.py::test_reproducible_build_sdist_requirements": 27.1404766809992,
"tests/integration/test_script_metadata.py::test_dependencies_additive": 3.5075853799999095,
"tests/integration/test_script_metadata.py::test_dependencies_conflicting": 0.9139562239997758,
"tests/integration/test_script_metadata.py::test_no_script_metadata": 2.538818108000669,
"tests/integration/test_script_metadata.py::test_nominal": 9.300216693000948,
"tests/integration/test_script_metadata.py::test_targets_additive": 3.352019465000012,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-UNZIP]": 3.155658157000289,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-VENV]": 3.6666831729999103,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-UNZIP]": 3.530800481001279,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-VENV]": 3.6822742220010696,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-UNZIP]": 3.5133657060005135,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-VENV]": 3.839974643999085,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-UNZIP]": 2.6501931329994477,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-VENV]": 3.651317081000343,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-UNZIP]": 3.4104319119996944,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-VENV]": 3.7603146140008903,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-UNZIP]": 3.7519280930000605,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-VENV]": 3.770050707998962,
"tests/integration/test_sh_boot.py::test_argv0[VENV (--sh-boot)]": 3.2212876159992447,
"tests/integration/test_sh_boot.py::test_argv0[VENV]": 2.178869217999818,
"tests/integration/test_sh_boot.py::test_argv0[ZIPAPP (--sh-boot)]": 3.1518542310004705,
"tests/integration/test_sh_boot.py::test_argv0[ZIPAPP]": 3.2569740120006827,
"tests/integration/test_sh_boot.py::test_execute[venv]": 2.033806786000241,
"tests/integration/test_sh_boot.py::test_execute[zipapp]": 1.4738858179998715,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[bash]": 1.9803048839985422,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[dash]": 2.239959933999671,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python2.7]": 1.530405864000386,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.10]": 1.7634871660002318,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.8]": 1.6295246370000314,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.9]": 1.7499878309999986,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python]": 1.8617530030005582,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[sh]": 1.6911690619999717,
"tests/integration/test_sh_boot.py::test_issue_1782[VENV (--sh-boot)]": 18.3610027779996,
"tests/integration/test_sh_boot.py::test_issue_1782[VENV]": 17.363508580000598,
"tests/integration/test_sh_boot.py::test_issue_1782[ZIPAPP (--sh-boot)]": 20.315588507999564,
"tests/integration/test_sh_boot.py::test_issue_1782[ZIPAPP]": 19.99239342599958,
"tests/integration/test_sh_boot.py::test_issue_1881[venv]": 2.676791592000882,
"tests/integration/test_sh_boot.py::test_issue_1881[zipapp]": 3.7283915090001756,
"tests/integration/test_sh_boot.py::test_python_shebang_respected": 1.3850037450001764,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_lock_local_project": 8.403433425000003,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_resolve": 3.698561475000133,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV (--sh-boot)]": 1.7168452710002384,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV]": 1.4189527540011113,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP (--sh-boot)]": 3.5472556220001934,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP]": 3.3078634780003995,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-NoStripPexEnv]": 1.5088367620001009,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-StripPexEnv]": 1.5856280389998574,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-NoStripPexEnv]": 1.6777455689998533,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-StripPexEnv]": 1.6346356350004498,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-NoStripPexEnv]": 2.6998795800000153,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-StripPexEnv]": 2.4187024190005104,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-NoStripPexEnv]": 1.6499522690000958,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-StripPexEnv]": 1.174438989999544,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-NoStripPexEnv]": 1.1047860300004686,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-StripPexEnv]": 1.9094242930004839,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-NoStripPexEnv]": 1.4408176620008817,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-StripPexEnv]": 1.4938393120010005,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_empty_pex": 9.892514969998956,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_both_conflict": 19.369352618999073,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_no_conflicts": 8.51231175599969,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_pip_conflict": 16.99510806899889,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_setuptools_conflict": 14.999759499999527,
"tests/integration/tools/commands/test_venv.py::test_collisions": 6.0902185339991775,
"tests/integration/tools/commands/test_venv.py::test_collisions_mergeable_issue_1570": 6.028939327000444,
"tests/integration/tools/commands/test_venv.py::test_non_hermetic_issue_2004": 6.519359863999853,
"tests/integration/tools/commands/test_venv.py::test_scope_issue_1631": 9.134368511000503,
"tests/integration/tools/commands/test_venv.py::test_site_packages_copies": 5.403978598999856,
"tests/integration/venv_ITs/test_install_wheel_multiple_site_packages_dirs.py::test_installed_wheels": 22.140727353998955,
"tests/integration/venv_ITs/test_install_wheel_multiple_site_packages_dirs.py::test_wheel_files": 16.554440756000076,
"tests/integration/venv_ITs/test_issue_1630.py::test_data_files": 9.580738561000544,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_conflicting": 12.476290233999862,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[venv (site-packages copies)]": 10.73418469599983,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[venv (site-packages symlinks)]": 9.213084512000023,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[zipapp]": 11.28404841200063,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_dedup": 9.849685580998994,
"tests/integration/venv_ITs/test_issue_1641.py::test_missing_data_dir_entries[venv (site-packages copies)]": 9.192699963023188e-05,
"tests/integration/venv_ITs/test_issue_1641.py::test_missing_data_dir_entries[zipapp]": 0.00010286799988534767,
"tests/integration/venv_ITs/test_issue_1668.py::test_venv_runtime_env_vars_ignored_during_create_nested": 22.862073403000068,
"tests/integration/venv_ITs/test_issue_1668.py::test_venv_runtime_env_vars_ignored_during_create_top_level": 23.17938309800047,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[- (<code> from STDIN)-VENV]": 1.3062057770011961,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[- (<code> from STDIN)-ZIPAPP]": 3.3832787869996537,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-c <code>-VENV]": 1.2849300850002692,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-c <code>-ZIPAPP]": 3.9100987310002893,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-m <module>-VENV]": 1.2765383160003694,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-m <module>-ZIPAPP]": 3.354873986999337,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<dir>-VENV]": 1.251711599000373,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<dir>-ZIPAPP]": 3.3609101649990407,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<python file>-VENV]": 1.3136726109996744,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<python file>-ZIPAPP]": 3.07272029700016,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_pex3_venv": 4.407453314000122,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_pex_tools": 5.623811065999689,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_venv_pex": 7.814429372999257,
"tests/integration/venv_ITs/test_issue_2065.py::test_venv_pex_script_non_hermetic[--sh-boot]": 8.338867178998953,
"tests/integration/venv_ITs/test_issue_2065.py::test_venv_pex_script_non_hermetic[__main__.py boot]": 8.7634655439997,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-venv (site-packages copies)]": 7.897221698999601,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-venv (site-packages symlinks)]": 8.598681028000101,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-zipapp]": 8.308038663999469,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-venv (site-packages copies)]": 9.08928108499913,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-venv (site-packages symlinks)]": 6.75834518099964,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-zipapp]": 9.258014138999897,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-venv (site-packages copies)]": 8.838576455998918,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-venv (site-packages symlinks)]": 8.589911915000812,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-zipapp]": 8.869380440999521,
"tests/integration/venv_ITs/test_issue_2248.py::test_repl_python_options[VENV]": 3.7890964860007443,