-
-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy path.test_timings
More file actions
1056 lines (1056 loc) · 111 KB
/
.test_timings
File metadata and controls
1056 lines (1056 loc) · 111 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/integration/build_system/test_issue_2063.py::test_build_system_no_build_backend": 0.00012783700003637932,
"tests/integration/build_system/test_issue_2125.py::test_get_requires_for_build_wheel": 43.10487387300054,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_pyproject_toml": 8.937966049999886,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_setup_py": 3.134994859998187,
"tests/integration/build_system/test_pep_518.py::test_load_build_system_pyproject_custom_repos": 7.241683894999369,
"tests/integration/cli/commands/test_cache_prune.py::test_app_prune": 12.707017777998772,
"tests/integration/cli/commands/test_cache_prune.py::test_installed_wheel_prune_build_time": 12.547426709999854,
"tests/integration/cli/commands/test_cache_prune.py::test_installed_wheel_prune_run_time": 15.38444643999901,
"tests/integration/cli/commands/test_cache_prune.py::test_nothing_prunable": 3.3084054769988143,
"tests/integration/cli/commands/test_cache_prune.py::test_pip_prune": 31.027334852999047,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_interpreter": 12.180762177998986,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_wheel_copies": 17.83752014899983,
"tests/integration/cli/commands/test_cache_prune.py::test_venv_prune_wheel_symlinks": 18.123294439001256,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_bootstrap": 13.232952107002347,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_code": 14.649063058999673,
"tests/integration/cli/commands/test_cache_prune.py::test_zipapp_prune_shared_deps": 18.245341363997795,
"tests/integration/cli/commands/test_discussion_2752.py::test_multiplatform_abi3_wheel_lock": 5.877674095998373,
"tests/integration/cli/commands/test_download.py::test_download_via_pex_lock": 4.631145515999378,
"tests/integration/cli/commands/test_download.py::test_download_via_pip": 1.536897896001392,
"tests/integration/cli/commands/test_download.py::test_download_via_pylock": 0.5755053860011685,
"tests/integration/cli/commands/test_export.py::test_export_multiple_artifacts": 0.45670518299994,
"tests/integration/cli/commands/test_export.py::test_export_no_hashes": 0.4461154579985305,
"tests/integration/cli/commands/test_export.py::test_export_normalizes_name_but_not_version": 0.44886847999987367,
"tests/integration/cli/commands/test_export.py::test_export_respects_target": 0.9254345280005509,
"tests/integration/cli/commands/test_export.py::test_export_single_artifact": 0.44462651100184303,
"tests/integration/cli/commands/test_export.py::test_export_sort_by": 0.9650274619998527,
"tests/integration/cli/commands/test_export.py::test_export_vcs_and_local_project_requirements_issue_2416": 0.4998706129990751,
"tests/integration/cli/commands/test_export_subset.py::test_full": 0.9647620149971772,
"tests/integration/cli/commands/test_export_subset.py::test_subset": 0.48611963800067315,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_all": 1.3630896170016058,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default": 0.4448921680013882,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_combined": 0.7265427019992785,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_markers": 0.4690083069981483,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_tags": 0.7175370650020341,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_verbose": 0.46914950700011104,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_distributions": 6.200790056000187,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_interpreter_selection": 1.283186040000146,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_create": 8.796126248000292,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_export": 2.7652161099995283,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_update": 0.7937818989994412,
"tests/integration/cli/commands/test_issue_1665.py::test_lock_black": 6.719910204003099,
"tests/integration/cli/commands/test_issue_1667.py::test_interpreter_constraints_range_coverage": 17.782873993000976,
"tests/integration/cli/commands/test_issue_1688.py::test_multiplatform_sdist": 14.56709555999987,
"tests/integration/cli/commands/test_issue_1711.py::test_backtrack_links_preserved": 11.540325992998987,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_sdist_requires_python_different_from_current": 9.162451573998624,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_universal_interpreter_constraint_unsatisfiable": 0.4585198830009176,
"tests/integration/cli/commands/test_issue_1741.py::test_prereleases": 9.505565338999077,
"tests/integration/cli/commands/test_issue_1801.py::test_preserve_pip_download_log": 1.1619791949997307,
"tests/integration/cli/commands/test_issue_1821.py::test_issue_1821": 53.50066456999957,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[sources]": 0.3997535010003048,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[strict]": 0.4382085739998729,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_platform_specific": 12.341413193000335,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_universal": 9.024734862001424,
"tests/integration/cli/commands/test_issue_2050.py::test_lock_uncompilable_sdist": 6.274611644999823,
"tests/integration/cli/commands/test_issue_2050.py::test_pep_517_prepare_metadata_for_build_wheel_fallback": 14.30971773300007,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [PEP-508]]": 25.381966552999074,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [Pip Proprietary]]": 26.442539301002398,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 26.475826957001118,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 26.51751991799756,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 25.998210954998285,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 27.60549755899956,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [PEP-508]]": 39.41659843399975,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [Pip Proprietary]]": 37.16904089699892,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 40.45054895999965,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 42.21232533000148,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 37.063805461999436,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 43.37189549000141,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [PEP-508]]": 3.564759695000248,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [Pip Proprietary]]": 3.362954940997952,
"tests/integration/cli/commands/test_issue_2059.py::test_pypy_impl_tag_handling": 11.115755181999702,
"tests/integration/cli/commands/test_issue_2098.py::test_missing_download_lock_analysis_handling": 27.248307325997303,
"tests/integration/cli/commands/test_issue_2211.py::test_backtracking[20.3.4-patched]": 28.80712080400008,
"tests/integration/cli/commands/test_issue_2268.py::test_abi_none_locking[pip-2020-resolver]": 12.472514089999095,
"tests/integration/cli/commands/test_issue_2313.py::test_venv_site_packages_copies": 12.763072002999252,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.2]": 0.018142246000934392,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.3.1]": 0.015178683001067839,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.1]": 3.3285057339999184,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.2]": 3.415704924000238,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1]": 3.5291749319985684,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.2]": 4.890509044000282,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.3.1]": 3.4299725460004993,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.3]": 3.7422116880006797,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[25.0.1]": 4.877922081997895,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[25.0]": 4.201150574999701,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[25.1.1]": 3.4950885769994784,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[25.1]": 4.748022030998982,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[pip_version0]": 5.144300121173728e-05,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.1]": 3.264311070999611,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.2]": 3.1802993130004324,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1]": 3.3433693179995316,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.2]": 3.2272318840023217,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.3.1]": 3.331177246000152,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.3]": 3.288032631999158,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[25.0.1]": 3.086056138999993,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[25.0]": 3.399146150000888,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[25.1.1]": 4.392831474000559,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[25.1]": 3.324551218000124,
"tests/integration/cli/commands/test_local_project_lock.py::test_fingerprint_stability": 40.35863727699871,
"tests/integration/cli/commands/test_local_project_lock.py::test_path_mappings": 24.419990159998633,
"tests/integration/cli/commands/test_lock.py::test_create": 3.2611277329997392,
"tests/integration/cli/commands/test_lock.py::test_create_local": 81.7473445359974,
"tests/integration/cli/commands/test_lock.py::test_create_style": 26.857159680001132,
"tests/integration/cli/commands/test_lock.py::test_create_universal_platform_check": 9.462600064580329e-05,
"tests/integration/cli/commands/test_lock.py::test_create_universal_python_unsupported": 0.45113823900101124,
"tests/integration/cli/commands/test_lock.py::test_create_vcs": 16.03598911699737,
"tests/integration/cli/commands/test_lock.py::test_excludes_pep517_build_requirements_issue_1565": 8.140812678002476,
"tests/integration/cli/commands/test_lock.py::test_universal_lock[pip-2020-resolver]": 5.284964492999279,
"tests/integration/cli/commands/test_lock.py::test_update_add_impossible": 4.6650668759994005,
"tests/integration/cli/commands/test_lock.py::test_update_noop": 1.6339223999984824,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run": 1.6754381529990496,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run_check": 2.005549648998567,
"tests/integration/cli/commands/test_lock.py::test_update_partial": 4.275094453998463,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add": 2.4273693279992585,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run": 2.0793670840012055,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run_check": 2.4139852649987006,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_transitive": 2.999678386000596,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_closure_shrink": 1.1854221069988853,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_downgrade": 1.785718190996704,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_impossible": 2.780706163999639,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_mixed_dry_run": 1.8208223830006318,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade": 1.7758810849991278,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run": 1.7063822649997746,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run_check": 1.7201994269998977,
"tests/integration/cli/commands/test_lock_dependency_groups.py::test_lock_dependency_groups": 3.280673781000587,
"tests/integration/cli/commands/test_lock_elide_unused_requires_dist.py::test_lock_elide_unused_requires_dist": 38.973193265999726,
"tests/integration/cli/commands/test_lock_foreign_platform_sdist.py::test_lock_foreign_platform_sdist": 27.494541863999984,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_project_lock": 28.03733329700117,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_vcs_lock": 19.14773827799945,
"tests/integration/cli/commands/test_lock_requirements_file.py::test_lock_by_name": 7.62059414399846,
"tests/integration/cli/commands/test_lock_requirements_file.py::test_lock_local_project": 57.57034640399979,
"tests/integration/cli/commands/test_lock_requirements_file.py::test_lock_mixed": 89.77919294300045,
"tests/integration/cli/commands/test_lock_requirements_file.py::test_lock_vcs": 7.5506741760018485,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_netrc_issue_1753": 40.75962851100121,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_url_issue_1753": 27.584876319002433,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_bad_netrc_issue_1762": 19.57563974000186,
"tests/integration/cli/commands/test_lock_script_metadata.py::test_lock_create_script_multiple": 6.783999663999566,
"tests/integration/cli/commands/test_lock_script_metadata.py::test_lock_create_script_simple": 5.455250270999386,
"tests/integration/cli/commands/test_lock_script_metadata.py::test_lock_script_conflict": 2.127093605000482,
"tests/integration/cli/commands/test_lock_script_metadata.py::test_lock_sync_script_multiple": 6.58876422600224,
"tests/integration/cli/commands/test_lock_script_metadata.py::test_lock_sync_script_simple": 11.208793807001712,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_extra": 1.1563350179985719,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_extra_miss": 0.5467832330014062,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_full": 40.55517232300008,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_miss": 0.4663655579988699,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_subset": 0.49242148300072586,
"tests/integration/cli/commands/test_lock_subset.py::test_lock_subset_target_systems_and_ics_issue_2683": 0.6984128519998194,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_add": 1.1381753559999197,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_complex": 1.1145037269998284,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_configuration": 1.093231550999917,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_extras": 13.742816641999525,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create": 1.0845210919997044,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_lock_create_equivalence": 2.1636135560002003,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_venv": 1.3218817689994466,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_lock_create_venv_create_run": 1.3343288689993642,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_noop": 1.1690642640005535,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_remove": 0.4689536110017798,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_sources": 2.714802944998155,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_strict": 3.4799433370008046,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_universal_to_universal": 2.4182085230004304,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_update": 1.1284684279999055,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_add": 2.033243184998355,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_complex": 17.252961039999718,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_create": 1.2565219529988099,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_update": 6.724860098000136,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_noop": 1.9475972230011394,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_remove": 1.3285134019988618,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run": 5.77662992200203,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_no_retain_pip_preinstalled": 4.859782388002714,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_no_pip_preinstalled": 7.206561589000557,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_preinstalled": 5.562864437999451,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--no-retain-pip]": 7.537242262000291,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--retain-pip]": 7.813712361999933,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[default]": 7.376757635000104,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_transitive_to_direct_and_vice_versa": 1.7402792049997515,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_update": 2.059983363000356,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_added": 5.540737077999438,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_removed": 7.895937156999935,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_corrupted": 5.459326743000929,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run": 5.629247090999343,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run_path_mapping": 6.19954894699913,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_nominal": 5.622467773000608,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_delete_complex": 8.637390134999805,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_conflict": 0.9282054039995273,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_invalid": 0.4802702800025145,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_nominal": 0.4601386440008355,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_noop": 0.5131571850015462,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_req_only": 0.451525740998477,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_downgrade": 1.1057946019991505,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_invalid": 0.42047724700023537,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_mixed": 1.1087757159984903,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_nominal": 1.0268401290013571,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace": 0.9960882590003166,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace_invalid": 0.4435274200004642,
"tests/integration/cli/commands/test_pep_751.py::test_lock_all_package_types": 134.74488161199952,
"tests/integration/cli/commands/test_pep_751.py::test_locks_equivalent_round_trip": 191.3968363740005,
"tests/integration/cli/commands/test_pep_751.py::test_pdm_dependency_groups_interop": 4.216371828999399,
"tests/integration/cli/commands/test_pep_751.py::test_pdm_extras_interop": 11.959158625000782,
"tests/integration/cli/commands/test_pep_751.py::test_universal_export_interop": 2.0251789929989172,
"tests/integration/cli/commands/test_pep_751.py::test_universal_export_subset": 0.5261015680007404,
"tests/integration/cli/commands/test_pep_751.py::test_universal_export_subset_no_dependency_info": 0.5299451669998234,
"tests/integration/cli/commands/test_pep_751.py::test_uv_pylock_interop": 5.526200038730167e-05,
"tests/integration/cli/commands/test_run.py::test_locked_require_backoff": 39.15458283099906,
"tests/integration/cli/commands/test_run.py::test_locked_require_error": 41.754908089998935,
"tests/integration/cli/commands/test_run.py::test_locked_sdist": 0.562364733999857,
"tests/integration/cli/commands/test_run.py::test_locked_wheel": 0.5531670559976192,
"tests/integration/cli/commands/test_run.py::test_nominal": 4.0660078229993815,
"tests/integration/cli/commands/test_vcs_lock.py::test_subdir": 17.17608611200012,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_direct_reference": 15.10922161900271,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_equivalence": 16.34038240100017,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_fingerprint_stability": 26.024347536998903,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_pip_proprietary": 14.983052881998447,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_transitive": 15.665453953997712,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat-zipped]": 4.5003582980007195,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat]": 4.330231563999405,
"tests/integration/cli/commands/test_venv_create.py::test_flat_empty": 0.45398019999993267,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_empty": 0.46236194999983127,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_prefix": 0.5577344639987132,
"tests/integration/cli/commands/test_venv_create.py::test_foreign_target": 3.016035644001022,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_flat": 1.509505629999694,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_venv": 2.709667287999764,
"tests/integration/cli/commands/test_venv_create.py::test_venv": 11.904100875999575,
"tests/integration/cli/commands/test_venv_create.py::test_venv_empty": 0.7842093409999507,
"tests/integration/cli/commands/test_venv_create.py::test_venv_pip": 4.759471918001509,
"tests/integration/cli/commands/test_venv_create.py::test_venv_update_target_mismatch": 3.39181058199938,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_pex_venv": 5.087124497000332,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-2.7.18]": 4.271158294000998,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-3.10.7]": 5.545248314001583,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-2.7.18]": 3.985649513999306,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-3.10.7]": 5.580098691998501,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=False]": 3.529194507000284,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=True]": 4.822021597001367,
"tests/integration/cli/commands/test_venv_inspect.py::test_no_python": 0.7089125080001395,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_dir": 0.42057667399785714,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_interpreter": 0.6464395640014118,
"tests/integration/cli/commands/test_wheel.py::test_archive_subdir_via_pex_lock": 5.639715215000251,
"tests/integration/cli/commands/test_wheel.py::test_vcs_subdir_via_pex_lock": 6.711820705999344,
"tests/integration/cli/commands/test_wheel.py::test_wheel_via_pex_lock": 5.801964918000522,
"tests/integration/cli/commands/test_wheel.py::test_wheel_via_pip": 2.373318827998446,
"tests/integration/cli/commands/test_wheel.py::test_wheel_via_pylock": 1.4878002330005984,
"tests/integration/resolve/pep_691/test_api.py::test_http_error": 0.25904360599997744,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_content_type": 0.002600668000013684,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_json": 0.273685309000939,
"tests/integration/resolve/pep_691/test_api.py::test_valid[application/vnd.pypi.simple.v1+json]": 0.2754397099997732,
"tests/integration/resolve/test_dependency_groups.py::test_pex_from_dependency_groups": 4.435464542000773,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_local_project_requirement": 4.799599992111325e-05,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_nominal": 6.0321999626467004e-05,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_offline": 4.320199877838604e-05,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_project_requirement": 4.9247999413637444e-05,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_subset": 4.674599949794356e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-direct-reference]": 23.751113571001042,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-pip-proprietary]": 22.059387902003436,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-direct-reference]": 22.05403239900079,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-pip-proprietary]": 21.25790379600039,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-direct-reference]": 22.613336152000556,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-pip-proprietary]": 21.791827892000583,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-direct-reference]": 24.955219395998938,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-pip-proprietary]": 22.545687283000007,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3-pip-2020-resolver-direct-reference]": 24.065619545997833,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3-pip-2020-resolver-pip-proprietary]": 22.201666250000926,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3.1-pip-2020-resolver-direct-reference]": 23.922374117999425,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.3.1-pip-2020-resolver-pip-proprietary]": 21.521374105997893,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.0-pip-2020-resolver-direct-reference]": 21.785828550000588,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.0-pip-2020-resolver-pip-proprietary]": 23.154810476999046,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.0.1-pip-2020-resolver-direct-reference]": 23.766785114999948,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.0.1-pip-2020-resolver-pip-proprietary]": 21.51219111699902,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.1-pip-2020-resolver-direct-reference]": 23.34570134200112,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.1-pip-2020-resolver-pip-proprietary]": 21.38514736199795,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.1.1-pip-2020-resolver-direct-reference]": 22.075358232001236,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[25.1.1-pip-2020-resolver-pip-proprietary]": 21.555542921998494,
"tests/integration/resolve/test_issue_2092.py::test_vcs_respects_target": 34.51063874999818,
"tests/integration/resolve/test_issue_2412.py::test_invalid_project": 0.8599235050005518,
"tests/integration/resolve/test_issue_2412.py::test_locked_project": 49.52391390200137,
"tests/integration/resolve/test_issue_2532.py::test_resolved_wheel_tag_platform_mismatch_warns": 18.038428677999036,
"tests/integration/resolve/test_issue_2568.py::test_independent_logs_for_independent_runs": 3.086922589000096,
"tests/integration/resolve/test_issue_2772.py::test_uv_lock_export_name_normalization": 24.525892740000927,
"tests/integration/scie/test_discussion_2516.py::test_discussion_2516_op": 7.902632186998744,
"tests/integration/scie/test_issue_2733.py::test_scie_argv0[SH_BOOT]": 8.728300053917337e-05,
"tests/integration/scie/test_issue_2733.py::test_scie_argv0[VENV-SH_BOOT]": 7.899999945948366e-05,
"tests/integration/scie/test_issue_2733.py::test_scie_argv0[VENV]": 8.628800060250796e-05,
"tests/integration/scie/test_issue_2733.py::test_scie_argv0[ZIPAPP]": 0.00012190100096631795,
"tests/integration/scie/test_issue_2740.py::test_use_pex_scie_as_interpreter[SH_BOOT]": 8.5849000242888e-05,
"tests/integration/scie/test_issue_2740.py::test_use_pex_scie_as_interpreter[VENV-SH_BOOT]": 8.768000043346547e-05,
"tests/integration/scie/test_issue_2740.py::test_use_pex_scie_as_interpreter[VENV]": 8.216199967137072e-05,
"tests/integration/scie/test_issue_2740.py::test_use_pex_scie_as_interpreter[ZIPAPP]": 8.019699998840224e-05,
"tests/integration/scie/test_issue_2810.py::test_proxy_args": 7.696399916312657e-05,
"tests/integration/scie/test_issue_2810.py::test_proxy_env": 0.00010876399937842507,
"tests/integration/scie/test_issue_2827.py::test_custom_base": 7.576200005132705e-05,
"tests/integration/scie/test_issue_2827.py::test_custom_base_trumps": 8.620600056019612e-05,
"tests/integration/scie/test_issue_2827.py::test_runtime_pex_root": 7.24179990356788e-05,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-eager]": 2.4618679610011895,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-lazy]": 2.8059361769974203,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-eager]": 2.554797898999823,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-lazy]": 2.496852922000471,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-eager]": 2.4470040729993343,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-lazy]": 2.6170394839991786,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-eager]": 2.595874658998582,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-lazy]": 2.426686966999114,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-eager]": 2.6132222560008813,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-lazy]": 2.8268685760012886,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-eager]": 2.6041045040001336,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-lazy]": 2.3323477170015394,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-eager]": 2.1986756370006333,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-lazy]": 2.418511245001355,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-eager]": 2.2809988880017045,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-lazy]": 2.2542010479992314,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-eager]": 2.590657757000372,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-lazy]": 2.741989475001901,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-eager]": 2.6299776989999373,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-lazy]": 2.4396501400024135,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-eager]": 2.947412618999806,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-lazy]": 2.5282991290005157,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-eager]": 2.54966829300065,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-lazy]": 2.6291482020005787,
"tests/integration/scie/test_pex_scie.py::test_custom_lazy_urls": 4.152980539001874,
"tests/integration/scie/test_pex_scie.py::test_hashes": 9.381599920743611e-05,
"tests/integration/scie/test_pex_scie.py::test_multiple_platforms": 13.201707107002221,
"tests/integration/scie/test_pex_scie.py::test_pbs_stripped": 4.373299998405855e-05,
"tests/integration/scie/test_pex_scie.py::test_pex_pex_scie": 16.89420649299973,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[VENV]": 4.6342998757609166e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[ZIPAPP]": 5.047599915997125e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[VENV]": 4.857900057686493e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[ZIPAPP]": 4.9136999223264866e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[VENV]": 5.655300083162729e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[ZIPAPP]": 5.93250006204471e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_distribution": 5.8214000091538765e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_script": 5.819899888592772e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[VENV]": 5.082400093670003e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[ZIPAPP]": 6.983100138313603e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_distribution": 4.897399958281312e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_script": 4.9205000323127024e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_point_injections": 4.3541000195546076e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_points": 7.860600089770742e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_eager_no_ptex": 4.9649999709799886e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_file_suffix": 7.279499914147891e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_parent_dir": 4.42709988419665e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_only": 4.395500036480371e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_only_name_collision": 4.7776000428711995e-05,
"tests/integration/scie/test_pex_scie.py::test_scie_split_contents": 4.5202999899629503e-05,
"tests/integration/scie/test_pex_scie.py::test_script_not_found": 5.346000034478493e-05,
"tests/integration/scie/test_pex_scie.py::test_specified_interpreter": 2.547169854000458,
"tests/integration/scie/test_pex_scie.py::test_specified_science_binary": 16.95039682300012,
"tests/integration/test_downloads.py::test_issue_1849_download_foreign_artifact": 0.5764875460008625,
"tests/integration/test_downloads.py::test_issue_1849_fingerprint_foreign_artifact": 0.6135488129984878,
"tests/integration/test_excludes.py::test_exclude": 5.307500032358803e-05,
"tests/integration/test_excludes.py::test_exclude_deep[24.1-resolvelib]": 22.026387642999907,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.1-resolvelib]": 20.471402242001204,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.2-resolvelib]": 23.878007985002114,
"tests/integration/test_excludes.py::test_exclude_deep[24.2-resolvelib]": 20.58039056599955,
"tests/integration/test_excludes.py::test_exclude_deep[24.3-resolvelib]": 20.687784140001895,
"tests/integration/test_excludes.py::test_exclude_deep[24.3.1-resolvelib]": 23.850404036002146,
"tests/integration/test_excludes.py::test_exclude_deep[25.0-resolvelib]": 23.12584428700029,
"tests/integration/test_excludes.py::test_exclude_deep[25.0.1-resolvelib]": 20.929580478999924,
"tests/integration/test_excludes.py::test_exclude_deep[25.1-resolvelib]": 21.700633533002474,
"tests/integration/test_excludes.py::test_exclude_deep[25.1.1-resolvelib]": 21.00128741899971,
"tests/integration/test_excludes.py::test_lock_exclude": 4.3063000703114085e-05,
"tests/integration/test_excludes.py::test_pre_resolved_dists_exclude": 4.444800106284674e-05,
"tests/integration/test_excludes.py::test_requirements_pex_exclude": 4.3236001147306524e-05,
"tests/integration/test_executuon_mode_venv.py::test_custom_prompt": 1.5578827189983713,
"tests/integration/test_inject_env_and_args.py::test_complex[VENV]": 5.0376998842693865e-05,
"tests/integration/test_inject_env_and_args.py::test_complex[ZIPAPP]": 5.8276000345358625e-05,
"tests/integration/test_inject_env_and_args.py::test_inject_args[VENV]": 4.954078892000325,
"tests/integration/test_inject_env_and_args.py::test_inject_args[ZIPAPP]": 12.10428401399804,
"tests/integration/test_inject_env_and_args.py::test_inject_env[VENV]": 1.9986586810009612,
"tests/integration/test_inject_env_and_args.py::test_inject_env[ZIPAPP]": 4.969746029000817,
"tests/integration/test_inject_env_and_args.py::test_inject_env_invalid": 0.3982450869989407,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[VENV]": 5.6413000493193977e-05,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[ZIPAPP]": 4.806399920198601e-05,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-VENV]": 3.0845901280008547,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-ZIPAPP]": 6.930443257000661,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-VENV]": 2.97924404099831,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-ZIPAPP]": 5.749582210000881,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-VENV]": 5.812929390998761,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-ZIPAPP]": 9.601670006999484,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-VENV]": 5.48702789500021,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-ZIPAPP]": 9.10240669400082,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-VENV]": 6.058312573000876,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-ZIPAPP]": 12.057010912998521,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-VENV]": 5.414320882999164,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-ZIPAPP]": 12.77624495999953,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-PEX]": 1.9430862970002636,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-VENV]": 1.4509063749992492,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-PEX]": 2.229223489001015,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-VENV]": 1.425228280999363,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-PEX]": 2.254115007997825,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-VENV]": 2.017499310999483,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-PEX]": 1.7971448550015339,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-VENV]": 1.8168492359982338,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-PEX]": 2.224790143000064,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-VENV]": 1.374831005001397,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-PEX]": 2.714455993998854,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-VENV]": 1.6889740509996045,
"tests/integration/test_integration.py::test_cache_disable": 11.650090527999055,
"tests/integration/test_integration.py::test_console_script_from_pex_path": 3.6074046049998287,
"tests/integration/test_integration.py::test_constraint_file_from_url": 1.8949844669987215,
"tests/integration/test_integration.py::test_cross_platform_abi_targeting_behavior_exact": 8.720400001038797e-05,
"tests/integration/test_integration.py::test_disable_cache": 2.6479133649991127,
"tests/integration/test_integration.py::test_emit_warnings_default": 3.832313979999526,
"tests/integration/test_integration.py::test_entry_point_exit_code": 3.151141912001549,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-loose]": 1.842278129000988,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-packed]": 1.7868594259980455,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-zipapp]": 2.2467239790021267,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.8820720770017942,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-packed]": 1.92326158799915,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 2.1437894350001443,
"tests/integration/test_integration.py::test_inherit_path_backwards_compatibility": 12.260198809997746,
"tests/integration/test_integration.py::test_inherit_path_fallback": 11.028577140001289,
"tests/integration/test_integration.py::test_inherit_path_prefer": 11.380765398000221,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-loose]": 1.99907090600027,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-packed]": 1.833061915001963,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-zipapp]": 1.7361188630002289,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.879894037001577,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-packed]": 2.0357437990005565,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 1.830686716000855,
"tests/integration/test_integration.py::test_invalid_macosx_platform_tag": 8.857000102580059e-05,
"tests/integration/test_integration.py::test_ipython_appnope_env_markers": 9.586899977875873e-05,
"tests/integration/test_integration.py::test_multiplatform_entrypoint": 2.308773710001333,
"tests/integration/test_integration.py::test_no_emit_warnings_2": 3.7674661420023767,
"tests/integration/test_integration.py::test_no_emit_warnings_emit_env_override": 3.281818198998735,
"tests/integration/test_integration.py::test_no_emit_warnings_verbose_override": 3.3313368629987963,
"tests/integration/test_integration.py::test_pex_cache_dir_and_pex_root": 2.787649122001312,
"tests/integration/test_integration.py::test_pex_console_script_custom_setuptools_useable": 4.7254784910001035,
"tests/integration/test_integration.py::test_pex_execute": 1.2772647959973256,
"tests/integration/test_integration.py::test_pex_exit_code_propagation": 3.783620789001361,
"tests/integration/test_integration.py::test_pex_interpreter": 1.40134696199857,
"tests/integration/test_integration.py::test_pex_interpreter_execute_custom_setuptools_useable": 2.9955329519998486,
"tests/integration/test_integration.py::test_pex_interpreter_interact_custom_setuptools_useable": 2.804918338999414,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_linux_msgpack": 66.14549363199876,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_lxml_osx": 22.01051691199973,
"tests/integration/test_integration.py::test_pex_manylinux_runtime": 8.252299994637724e-05,
"tests/integration/test_integration.py::test_pex_multi_resolve_1": 15.190433464000307,
"tests/integration/test_integration.py::test_pex_multi_resolve_2": 15.803293359998861,
"tests/integration/test_integration.py::test_pex_path_arg": 36.116039217000434,
"tests/integration/test_integration.py::test_pex_path_in_pex_info_and_env": 38.73674241799745,
"tests/integration/test_integration.py::test_pex_python_symlink": 2.0668679110003723,
"tests/integration/test_integration.py::test_pex_raise": 1.2912275580019923,
"tests/integration/test_integration.py::test_pex_repl_built": 11.622343351999007,
"tests/integration/test_integration.py::test_pex_repl_cli": 2.8585544119996484,
"tests/integration/test_integration.py::test_pex_repl_history[PEX]": 2.3009037079991685,
"tests/integration/test_integration.py::test_pex_repl_history[VENV]": 1.7707751710004231,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[PEX]": 2.385352860999774,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[VENV]": 1.9628824270002951,
"tests/integration/test_integration.py::test_pex_resource_bundling": 2.84418124199874,
"tests/integration/test_integration.py::test_pex_root_build": 9.512989663000553,
"tests/integration/test_integration.py::test_pex_root_run": 9.190604067001914,
"tests/integration/test_integration.py::test_pex_run_strip_env": 3.9650467219998973,
"tests/integration/test_integration.py::test_pex_source_bundling": 1.7124484369996935,
"tests/integration/test_integration.py::test_pex_source_bundling_pep420": 0.9814058929987368,
"tests/integration/test_integration.py::test_pip_issues_9420_workaround": 1.0392220670000825,
"tests/integration/test_integration.py::test_require_hashes": 8.415800039074384e-05,
"tests/integration/test_integration.py::test_requirement_file_from_url": 9.132600098382682e-05,
"tests/integration/test_integration.py::test_requirements_network_configuration": 0.8769595330013544,
"tests/integration/test_integration.py::test_seed[.whl file-loose-PEX]": 2.5991655470006663,
"tests/integration/test_integration.py::test_seed[.whl file-loose-VENV]": 1.4388992950007378,
"tests/integration/test_integration.py::test_seed[.whl file-packed-PEX]": 2.4639041849986825,
"tests/integration/test_integration.py::test_seed[.whl file-packed-VENV]": 1.5341578560019116,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-PEX]": 2.91926618800062,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-VENV]": 1.8471880039996904,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-PEX]": 2.4762497569990956,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-VENV]": 1.4624570190007944,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-PEX]": 2.505386177001128,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-VENV]": 1.477513154002736,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-PEX]": 3.0023281010016944,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-VENV]": 1.925014912003462,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-PEX]": 9.998109599997406,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-VENV]": 8.713186652999866,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-PEX]": 10.696803767999882,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-VENV]": 9.445602506000796,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-PEX]": 10.645255245999579,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-VENV]": 9.284564317000331,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-PEX]": 10.270537862999845,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-VENV]": 9.553530439998212,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-PEX]": 10.632966373997988,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-VENV]": 10.693150471999616,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-PEX]": 10.685446358000263,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-VENV]": 11.024888863001252,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-PEX]": 10.04825978199915,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-VENV]": 10.139231049997761,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-PEX]": 10.538559303997317,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-VENV]": 9.165854201999537,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-PEX]": 11.648447814000974,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-VENV]": 9.346619057998396,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-PEX]": 10.016400737998993,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-VENV]": 9.17031452500305,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-PEX]": 12.12045441599912,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-VENV]": 10.634487475997958,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-PEX]": 11.025582174001102,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-VENV]": 12.452981870997974,
"tests/integration/test_integration.py::test_setup_interpreter_constraint": 7.39661695399991,
"tests/integration/test_integration.py::test_setup_python": 6.8394724689987925,
"tests/integration/test_integration.py::test_setup_python_direct_markers": 6.464429350999126,
"tests/integration/test_integration.py::test_setup_python_multiple_direct_markers": 7.763441285002045,
"tests/integration/test_integration.py::test_setup_python_multiple_transitive_markers": 8.23339779899834,
"tests/integration/test_integration.py::test_setup_python_path": 11.502553612997872,
"tests/integration/test_integration.py::test_tmpdir_absolute": 1.2403648720010096,
"tests/integration/test_integration.py::test_tmpdir_dne": 0.4032405230027507,
"tests/integration/test_integration.py::test_tmpdir_file": 0.41332447199965827,
"tests/integration/test_integration.py::test_trusted_host_handling": 2.3701726269991923,
"tests/integration/test_integration.py::test_unzip_mode": 3.8726287689987657,
"tests/integration/test_integration.py::test_venv_mode": 4.329350182999406,
"tests/integration/test_interpreter.py::test_boot_identification_leak": 3.726239412000723,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_honored_without_ppp_or_pp": 3.217687880000085,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py2": 3.530232604000048,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py3": 1.5417889749987808,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_pex_python_path_precedence_over_pex_python": 3.309435539000333,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_constraint_option": 3.4497587449986895,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_multiple_constraint_options": 3.316109976001826,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_pex_python_path": 2.638974312998471,
"tests/integration/test_interpreter_selection.py::test_interpreter_selection_using_os_environ_for_bootstrap_reexec": 27.868656680997447,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_and_pex_python_but_no_constraints": 2.0855432899988955,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_only": 2.0231907299985323,
"tests/integration/test_interpreter_selection.py::test_pex_python": 7.769025091998628,
"tests/integration/test_interpreter_selection.py::test_plain_pex_exec_no_ppp_no_pp_no_constraints": 2.0450089990008564,
"tests/integration/test_issue_1017.py::test_resolve_python_requires_full_version": 4.153773509002349,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-PEX]": 1.6245308219986327,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-VENV]": 1.554699669000911,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-PEX]": 1.613122023998585,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-VENV]": 1.6871995080018678,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-PEX]": 1.5850685090008483,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-VENV]": 1.583848919997763,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-PEX]": 1.5781583080006385,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-VENV]": 1.639617956998336,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-PEX]": 1.8298839139988559,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-VENV]": 1.5877131299985194,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-PEX]": 1.6676515609997296,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-VENV]": 1.587759311998525,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-PEX]": 1.814003749999756,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-VENV]": 1.6777783819998149,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-PEX]": 1.7568084489994362,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-VENV]": 2.3249963970010867,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-PEX]": 1.6398834100018576,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-VENV]": 1.5952232840008946,
"tests/integration/test_issue_1025.py::test_extras_isolation": 8.205191725000986,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[pyvenv]": 17.620260742000028,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[virtualenv-16.7.10]": 12.549803175998022,
"tests/integration/test_issue_1179.py::test_pip_2020_resolver_engaged": 9.852999937720597e-05,
"tests/integration/test_issue_1201.py::test_old_requires_metadata_used_for_requires_python": 3.3817993530010426,
"tests/integration/test_issue_1202.py::test_prefer_binary": 2.9095525730026566,
"tests/integration/test_issue_1218.py::test_venv_mode_dir_hash_includes_all_pex_info_metadata": 8.54539994179504e-05,
"tests/integration/test_issue_1225.py::test_venv_mode_pex_path": 11.7348122170024,
"tests/integration/test_issue_1232.py::test_isolated_pex_zip": 47.74937270600094,
"tests/integration/test_issue_1302.py::test_pex_repository_pep503": 5.61319039800037,
"tests/integration/test_issue_1316.py::test_resolve_cyclic_dependency_graph": 16.70484582899917,
"tests/integration/test_issue_1336.py::test_pip_leak": 5.30287956400025,
"tests/integration/test_issue_1422.py::test_unconstrained_universal_venv_pex": 4.139335758998641,
"tests/integration/test_issue_1447.py::test_layout_identification": 4.019398920998356,
"tests/integration/test_issue_1479.py::test_unicode_script_shebang_rewrite_docutils": 11.69369900700076,
"tests/integration/test_issue_1520.py::test_hermetic_console_scripts": 10.81361878000098,
"tests/integration/test_issue_1537.py::test_rel_cert_path": 4.528158285002064,
"tests/integration/test_issue_1540.py::test_derive_consistent_shebang_platforms": 2.240441023997846,
"tests/integration/test_issue_1550.py::test_duplicate_requirements_issues_1550": 2.5466638569996576,
"tests/integration/test_issue_1560.py::test_build_isolation[2.7.18]": 8.934662417999789,
"tests/integration/test_issue_1560.py::test_build_isolation[3.10.7]": 8.564963112001351,
"tests/integration/test_issue_1560.py::test_build_isolation[3.11.13]": 8.274018378999244,
"tests/integration/test_issue_1560.py::test_build_isolation[3.9.13]": 8.900699794998218,
"tests/integration/test_issue_1560.py::test_pep_517_for_legacy_project": 12.908230740998988,
"tests/integration/test_issue_1560.py::test_pep_517_for_pep_517_project": 4.636899939214345e-05,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-VENV]": 22.405895073001375,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-ZIPAPP]": 35.45571447399743,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-VENV]": 3.7995482690002973,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-ZIPAPP]": 4.12760113800141,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-VENV]": 34.95492036699943,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-ZIPAPP]": 31.742293786999653,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-VENV]": 2.8036456369991356,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-ZIPAPP]": 3.811163018001025,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-VENV]": 26.04291370899955,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-ZIPAPP]": 23.029756795998765,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-VENV]": 2.632606053000927,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-ZIPAPP]": 3.851713963998918,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-VENV]": 28.383079053000984,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-ZIPAPP]": 23.462150891999045,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-VENV]": 2.7126821900001232,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-ZIPAPP]": 4.152908193000258,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[VENV]": 31.424888141000338,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[ZIPAPP]": 26.292799369999557,
"tests/integration/test_issue_157.py::test_pex_info_command_json": 4.065088690002085,
"tests/integration/test_issue_157.py::test_pex_info_command_loose_venv_pex_directory": 2.3727024419986265,
"tests/integration/test_issue_157.py::test_pex_info_command_packed_pex_directory": 4.037341221997849,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_file": 4.066430433000278,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_venv": 4.495606714001042,
"tests/integration/test_issue_157.py::test_pex_info_command_venv_pex_file": 3.0761812460004876,
"tests/integration/test_issue_157.py::test_pex_with_deps[VENV]": 10.685718332999386,
"tests/integration/test_issue_157.py::test_pex_with_deps[ZIPAPP]": 11.981627296001534,
"tests/integration/test_issue_1597.py::test_platform_abbreviated": 6.018766061999486,
"tests/integration/test_issue_1597.py::test_platform_complete": 11.519670579999001,
"tests/integration/test_issue_1598.py::test_mount_respects_env": 42.36601584199889,
"tests/integration/test_issue_1656.py::test_mixed_pex_root": 6.189899977471214e-05,
"tests/integration/test_issue_1656.py::test_new_venv_tool_vs_old_pex": 5.6619001043145545e-05,
"tests/integration/test_issue_1656.py::test_old_venv_tool_vs_new_pex": 6.045599911885802e-05,
"tests/integration/test_issue_1683.py::test_requirements_pex": 10.632326876000661,
"tests/integration/test_issue_1726.py::test_check_install_issue_1726": 18.28007050400265,
"tests/integration/test_issue_1730.py::test_check_install_issue_1730": 6.574399958481081e-05,
"tests/integration/test_issue_1802.py::test_stderr_not_torn_down": 2.543465119000757,
"tests/integration/test_issue_1809.py::test_excepthook_scrubbing": 5.0042001021211036e-05,
"tests/integration/test_issue_1817.py::test_sdist_for_project_universal": 0.0001117489991884213,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_native_extensions": 9.927899918693583e-05,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_pep517_build": 9.76410010480322e-05,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[VENV]": 2.0233061779999844,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[ZIPAPP]": 4.750043296999138,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[fallback]": 2.397418082000513,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[false]": 2.673512519999349,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[prefer]": 2.282467426997755,
"tests/integration/test_issue_1856.py::test_os_name_spoofing": 1.3848256490000495,
"tests/integration/test_issue_1861.py::test_confounding_site_packages_directory": 11.7216158859992,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[fallback]": 4.380345847997887,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[false]": 5.7083198739983345,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[prefer]": 5.845017851997909,
"tests/integration/test_issue_1872.py::test_pep_518_venv_pex_env_scrubbing": 66.63195731400083,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-.whl file]": 1.1099613619990123,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-installed wheel chroot]": 0.897841662999781,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-.whl file]": 0.9045671600015339,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-installed wheel chroot]": 0.8996305710024899,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-.whl file]": 0.9490613330017368,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-installed wheel chroot]": 0.9932920939972973,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-.whl file]": 1.0381827330020315,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-installed wheel chroot]": 0.9180237220007257,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-.whl file]": 0.8969207520003692,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-installed wheel chroot]": 0.8938410899972951,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-.whl file]": 0.9940243569981249,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-installed wheel chroot]": 0.969711477000601,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-.whl file]": 0.9158104550006101,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-installed wheel chroot]": 0.8899356160000025,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-.whl file]": 0.8699837499989371,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-installed wheel chroot]": 0.8898414110008162,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-.whl file]": 1.0198604539982625,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-installed wheel chroot]": 0.9506793440014008,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-.whl file]": 0.8929543379999814,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-installed wheel chroot]": 0.8808275910014345,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-.whl file]": 1.036298014998465,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-installed wheel chroot]": 0.8328213970016805,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-.whl file]": 1.035571289001382,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-installed wheel chroot]": 0.9328832840001269,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-.whl file]": 1.0030326870019053,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-installed wheel chroot]": 1.0312764460013568,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-.whl file]": 1.061767074999807,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-installed wheel chroot]": 0.9780782430007093,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-.whl file]": 1.0602573760006635,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-installed wheel chroot]": 1.2371416159985529,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-.whl file]": 0.9525453269998252,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-installed wheel chroot]": 1.0353109169991512,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-.whl file]": 0.9894950080015406,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-installed wheel chroot]": 1.0532984349974868,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-.whl file]": 1.1420636420007213,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-installed wheel chroot]": 1.1188547709989507,
"tests/integration/test_issue_1933.py::test_musllinux_wheels_resolved": 18.71619294499942,
"tests/integration/test_issue_1936.py::test_empty_pex_path": 6.155113032000372,
"tests/integration/test_issue_1949.py::test_resolve_arbitrary_equality": 13.682706483998118,
"tests/integration/test_issue_1995.py::test_packaging": 30.13694209300047,
"tests/integration/test_issue_2001.py::test_compile_error_as_warning": 3.4073959039997135,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[--sh-boot]": 4.802992655000708,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[__main__.py boot]": 5.6474076780014,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.2]": 17.564924443000564,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.3.1]": 2.2922224680005456,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.3]": 2.2700124050006707,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[25.0.1]": 2.0776250749986502,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[25.0]": 2.242668398001115,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[25.1.1]": 2.415632325999468,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[25.1]": 2.4220538339995983,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-loose]": 4.970147161000568,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-packed]": 6.136495536000439,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-zipapp]": 6.586234196000078,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-loose]": 4.055830552997577,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-packed]": 6.500215972999285,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-zipapp]": 6.360806197999409,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-loose]": 4.205851678998442,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-packed]": 5.094624675000887,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-zipapp]": 5.335281902000133,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-loose]": 3.684535340000366,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-packed]": 5.000918327999898,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-zipapp]": 4.973276008000539,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-loose]": 4.137512613997387,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-packed]": 5.030710695999005,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-zipapp]": 5.293422999999166,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-loose]": 3.6824137349995,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-packed]": 4.981057211998632,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-zipapp]": 5.490303516000495,
"tests/integration/test_issue_2038.py::test_wheel_file_url_dep": 0.00010393400043540169,
"tests/integration/test_issue_2073.py::test_lock_create_foreign_platform_yolo_cross_build": 11.017955461000383,
"tests/integration/test_issue_2073.py::test_lock_resolve_foreign_platform_yolo_cross_build": 10.746917898000902,
"tests/integration/test_issue_2073.py::test_standard_resolve_foreign_platform_yolo_cross_build": 12.668109590000313,
"tests/integration/test_issue_2087.py::test_long_wheel_names": 9.187978587002362,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-loose]": 9.82096543699845,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-packed]": 11.791653877999124,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-zipapp]": 11.260776138002257,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-loose]": 10.388886333999835,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-packed]": 11.048120772000402,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-zipapp]": 10.77037016000213,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_build_pex": 6.897579727999982,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_lock": 7.859213747000467,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_build_pex": 1.195462335999764,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_lock": 1.287679892999222,
"tests/integration/test_issue_2134.py::test_add_module_in_package": 0.5834833120006806,
"tests/integration/test_issue_2134.py::test_add_module_offset": 0.5861216940011218,
"tests/integration/test_issue_2134.py::test_add_package_offset": 0.575494370999877,
"tests/integration/test_issue_2134.py::test_add_sub_package": 0.5531656730017858,
"tests/integration/test_issue_2134.py::test_add_sub_package_mixed": 0.5949150760006887,
"tests/integration/test_issue_2134.py::test_add_sub_package_pep_420": 0.6023300560009375,
"tests/integration/test_issue_2134.py::test_add_top_level_module": 0.571940767000342,
"tests/integration/test_issue_2134.py::test_add_top_level_package": 0.6046421579994785,
"tests/integration/test_issue_2134.py::test_overlap": 0.5763721359980991,
"tests/integration/test_issue_2183.py::test_lambdex_with_incompatible_attrs": 5.907299964746926e-05,
"tests/integration/test_issue_2186.py::test_default_resolve_no_warning": 3.0578990200010594,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_error": 0.422607747001166,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_warning": 2.9354339159999654,
"tests/integration/test_issue_2203.py::test_read_only_venv": 36.693021229000806,
"tests/integration/test_issue_2235.py::test_standard_library_is_included": 9.895666155000072,
"tests/integration/test_issue_2249.py::test_inspect[PEX-SH_BOOT]": 4.22847083600027,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV-SH_BOOT]": 1.8965924980002455,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV]": 3.0829041230008443,
"tests/integration/test_issue_2249.py::test_inspect[PEX-ZIPAPP]": 5.098270745998889,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-SH_BOOT]": 11.607310510000389,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV-SH_BOOT]": 9.659419222998622,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV]": 10.210986365998906,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-ZIPAPP]": 11.632885326998803,
"tests/integration/test_issue_2324.py::test_update_sdists_not_updated": 8.326099850819446e-05,
"tests/integration/test_issue_2343.py::test_no_build_no_wheel_honored_pex": 7.21184995099793,
"tests/integration/test_issue_2343.py::test_only_build_honored_lock": 4.537867925999308,
"tests/integration/test_issue_2343.py::test_only_build_honored_pex": 4.163009311001588,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_lock": 2.196856922999359,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_pex": 7.956011534999561,
"tests/integration/test_issue_2348.py::test_find_links_url_escaping": 48.60485947599955,
"tests/integration/test_issue_2355.py::test_ssl_context": 13.33345511099833,
"tests/integration/test_issue_2389.py::test_lock_use_no_build_wheel": 4.186106085999199,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-loose]": 8.234767349000322,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-packed]": 8.64761813199766,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-zipapp]": 8.731294009998237,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-loose]": 9.01834523099933,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-packed]": 8.870064227998228,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-zipapp]": 9.249175725002715,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-loose]": 9.295299798999622,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-packed]": 9.390220990000671,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-zipapp]": 9.047377646998939,
"tests/integration/test_issue_2395.py::test_download_incompatible_python": 10.518120841999917,
"tests/integration/test_issue_2410.py::test_pex_with_editable": 3.450653713000065,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_exact": 7.616699986101594e-05,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock": 4.894400080956984e-05,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock_inlined_requirements": 5.7700999605003744e-05,
"tests/integration/test_issue_2413.py::test_bdist_pex_under_tox": 32.28762337199987,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:no]": 0.2830345069978648,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:upgraded]": 4.419111169001553,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:yes]": 4.341883768998741,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:no]": 0.0007869659966672771,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:upgraded]": 5.736637586998768,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:yes]": 5.155413847000091,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:no]": 0.001107342000977951,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:upgraded]": 6.5770616970003175,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:yes]": 5.649692371001947,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:no]": 0.0012408289985614829,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:upgraded]": 4.864240027000051,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:yes]": 5.013153473000784,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:no]": 0.0006443659985961858,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:upgraded]": 5.9896327139977075,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:yes]": 5.426870093997422,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:no]": 0.0010947469982056646,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:upgraded]": 6.027872148997631,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:yes]": 6.4704623320012615,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:no]": 0.0015430530002049636,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:upgraded]": 4.741497022998374,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:yes]": 4.037818778999281,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:no]": 0.0006412559996533673,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:upgraded]": 6.386752878999687,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:yes]": 5.915273744998558,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:no]": 0.0010134589992958354,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:upgraded]": 6.240914839998368,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:yes]": 5.947314814000492,
"tests/integration/test_issue_2415.py::test_gevent_monkeypatch": 5.5106998843257315e-05,
"tests/integration/test_issue_2432.py::test_lock_use_no_build_wheel": 12.84234100699905,
"tests/integration/test_issue_2441.py::test_invalid_metadata_error_messages_under_old_pip": 9.43689992709551e-05,
"tests/integration/test_issue_2572.py::test_symlinked_home": 13.349588475999553,
"tests/integration/test_issue_2706.py::test_extras_from_dup_root_reqs": 19.350412207999398,
"tests/integration/test_issue_2739.py::test_tar_bz2": 14.271730428999945,
"tests/integration/test_issue_2819.py::test_tmp_dir_leak": 11.473015219000445,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-SH_BOOT-packed]": 10.978221412002313,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-SH_BOOT-zipapp]": 10.882808767000824,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-VENV-SH_BOOT-packed]": 10.706753074000517,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-VENV-SH_BOOT-zipapp]": 10.884037069999977,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-VENV-packed]": 10.74312004100102,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-VENV-zipapp]": 10.647585975000766,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-ZIPAPP-packed]": 11.26821500099868,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[module-ZIPAPP-zipapp]": 11.80475430000115,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-SH_BOOT-packed]": 17.167130157999054,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-SH_BOOT-zipapp]": 16.627053163998426,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-VENV-SH_BOOT-packed]": 16.643444842000463,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-VENV-SH_BOOT-zipapp]": 16.269221346999984,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-VENV-packed]": 16.943793027998254,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-VENV-zipapp]": 17.71132300300087,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-ZIPAPP-packed]": 16.53211016899695,
"tests/integration/test_issue_2822.py::test_tmp_pex_root[script-ZIPAPP-zipapp]": 16.425774078999893,
"tests/integration/test_issue_298.py::test_confounding_encoding": 0.663134333999551,
"tests/integration/test_issue_434.py::test_entry_point_targeting": 9.66897445900031,
"tests/integration/test_issue_455.py::test_exclude": 8.69472105099885,
"tests/integration/test_issue_539.py::test_abi3_resolution": 5.306999992171768e-05,
"tests/integration/test_issue_598.py::test_force_local_implicit_ns_packages": 3.748580307999873,
"tests/integration/test_issue_661.py::test_devendoring_required": 14.439649642999939,
"tests/integration/test_issue_729.py::test_undeclared_setuptools_import_on_pex_path": 8.477499977743719e-05,
"tests/integration/test_issue_736.py::test_requirement_setup_py_with_extras": 4.009873760998744,
"tests/integration/test_issue_745.py::test_extras_isolation": 7.164540847999888,
"tests/integration/test_issue_749.py::test_pkg_resource_early_import_on_pex_path": 4.395977969001251,
"tests/integration/test_issue_898.py::test_top_level_requirements_requires_python_env_markers": 4.355105801001628,
"tests/integration/test_issue_899.py::test_top_level_environment_markers": 3.58446275300048,
"tests/integration/test_issue_940.py::test_resolve_arbitrary_equality": 8.151000110956375e-05,
"tests/integration/test_issue_996.py::test_resolve_local_platform": 7.98925343099836,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.1.1]": 27.697907511001176,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.1.2]": 30.11417813099979,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.1]": 26.509984259000703,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.2]": 29.19927759299935,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.3.1]": 30.267565972997545,
"tests/integration/test_keyring_support.py::test_import_provider[False-24.3]": 28.705001403001006,
"tests/integration/test_keyring_support.py::test_import_provider[False-25.0.1]": 27.31524386199999,
"tests/integration/test_keyring_support.py::test_import_provider[False-25.0]": 28.597512826998354,
"tests/integration/test_keyring_support.py::test_import_provider[False-25.1.1]": 31.004757218001032,
"tests/integration/test_keyring_support.py::test_import_provider[False-25.1]": 28.404410250999717,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.1.1]": 27.85976018800102,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.1.2]": 30.02997979000247,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.1]": 27.38427982400026,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.2]": 28.859613801001615,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.3.1]": 27.254599721998602,
"tests/integration/test_keyring_support.py::test_import_provider[True-24.3]": 26.79105450700081,
"tests/integration/test_keyring_support.py::test_import_provider[True-25.0.1]": 27.684904178002398,
"tests/integration/test_keyring_support.py::test_import_provider[True-25.0]": 27.9238511500007,
"tests/integration/test_keyring_support.py::test_import_provider[True-25.1.1]": 29.62727948200154,
"tests/integration/test_keyring_support.py::test_import_provider[True-25.1]": 27.425573951999468,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.1.1]": 12.255134732002261,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.1.2]": 12.412198418001935,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.1]": 18.658885335999003,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.2]": 12.753141141000015,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.3.1]": 13.712867566999194,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-24.3]": 12.801525356000639,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-25.0.1]": 12.948110856999847,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-25.0]": 13.131937619999007,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-25.1.1]": 12.556733444998827,
"tests/integration/test_keyring_support.py::test_subprocess_provider[False-25.1]": 12.454421441001614,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.1.1]": 12.1970537899997,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.1.2]": 12.22915155100236,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.1]": 19.00822882200191,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.2]": 12.325417213000037,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.3.1]": 13.799485355000797,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-24.3]": 12.808157600000413,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-25.0.1]": 12.689687722000599,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-25.0]": 13.124955445999149,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-25.1.1]": 12.460875491000479,
"tests/integration/test_keyring_support.py::test_subprocess_provider[True-25.1]": 12.53674348900131,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-PEX]": 14.488748317999125,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-VENV]": 11.916822031000265,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-PEX]": 15.006883325999297,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-VENV]": 12.564962055999786,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-PEX]": 14.237109631001658,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-VENV]": 12.423786174997076,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-PEX]": 11.456612109999696,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-VENV]": 11.068403306999244,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-PEX]": 15.975691014999029,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-VENV]": 12.983306121001078,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-PEX]": 13.29608106699743,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-VENV]": 12.156159464000666,
"tests/integration/test_lock_resolver.py::test_corrupt_artifact": 11.231045250000534,
"tests/integration/test_lock_resolver.py::test_empty_lock_issue_1659": 1.66735762099961,
"tests/integration/test_lock_resolver.py::test_issue_1413_portable_find_links": 9.48527708200163,
"tests/integration/test_lock_resolver.py::test_issue_1717_transitive_extras": 20.35104377099742,
"tests/integration/test_lock_resolver.py::test_multiplatform": 9.939593068998875,
"tests/integration/test_lock_resolver.py::test_resolve_wheel_files": 6.249214601000858,
"tests/integration/test_lock_resolver.py::test_strict_basic": 2.4398633599976165,
"tests/integration/test_lock_resolver.py::test_subset": 3.017466417999458,
"tests/integration/test_lock_resolver.py::test_unavailable_artifacts": 10.12979574199926,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-no-transitive-deps]": 1.203512108000723,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-transitive-deps]": 1.3357466620000196,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-no-transitive-deps]": 1.2214997350001795,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-transitive-deps]": 1.439734543002487,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-no-transitive-deps]": 1.2631708570024784,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-transitive-deps]": 1.3507729989978543,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-no-transitive-deps]": 1.3147110189984232,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-transitive-deps]": 1.285478730998875,
"tests/integration/test_no_pre_install_wheels.py::test_no_pre_install_wheels": 3.5553372349986603,
"tests/integration/test_overrides.py::test_illegal_override": 5.4589001592830755e-05,
"tests/integration/test_overrides.py::test_lock_sync_override": 6.002899863233324e-05,
"tests/integration/test_overrides.py::test_override": 2.9227022979994217,
"tests/integration/test_overrides.py::test_pex_repository_override": 2.8039789120011847,
"tests/integration/test_overrides.py::test_pre_resolved_dists_override": 5.077153971998996,
"tests/integration/test_pep_427.py::test_install_scripts": 1.2366988439989655,
"tests/integration/test_pep_427.py::test_install_wheel_interpreter": 5.854199751000124,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_ic_min_compatible_build_time_hole": 5.52298050599893,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_no_ic": 8.249038935999124,
"tests/integration/test_pex_bootstrapper.py::test_boot_resolve_fail": 2.3623831079985393,
"tests/integration/test_pex_bootstrapper.py::test_cached_venv_interpreter_paths": 1.5353456609991554,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_namespace_packages": 8.556805973001246,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_short_link": 14.463131293001425,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_site_packages_copies": 13.607452293999813,
"tests/integration/test_pex_entry_points.py::test_entry_point": 5.163889889001439,
"tests/integration/test_pex_entry_points.py::test_executable": 1.544780312999137,
"tests/integration/test_pex_entry_points.py::test_script": 9.013355244000195,
"tests/integration/test_pex_entry_points.py::test_style_mutex": 1.3444825440019486,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-loose]": 25.63506701300139,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-packed]": 26.5828130050013,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-zipapp]": 30.153761682999175,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-loose]": 23.792008868002085,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-packed]": 28.89774676700108,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-zipapp]": 26.410010626999792,
"tests/integration/test_reexec.py::test_pex_no_reexec_constraints_match_current": 2.2356713419994776,
"tests/integration/test_reexec.py::test_pex_no_reexec_no_constraints": 1.4905821359989204,
"tests/integration/test_reexec.py::test_pex_re_exec_failure": 0.00030800300010014325,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python": 2.0239619670010143,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path": 2.0047420829996554,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path_min_py_version_selected": 1.5665915089994087,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_match_current_pythonpath_present": 2.1347487740004,
"tests/integration/test_reexec.py::test_pex_reexec_no_constraints_pythonpath_present": 1.6614601390010648,
"tests/integration/test_reproducible.py::test_reproducible_build_bdist_requirements": 6.301900066318922e-05,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_dependency": 28.469035121999696,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_source": 46.66459747800036,
"tests/integration/test_reproducible.py::test_reproducible_build_m_flag": 9.713167164998595,
"tests/integration/test_reproducible.py::test_reproducible_build_no_args": 9.862969875997806,
"tests/integration/test_reproducible.py::test_reproducible_build_python_flag": 9.712927216001844,
"tests/integration/test_reproducible.py::test_reproducible_build_python_shebang_flag": 7.057937325000239,
"tests/integration/test_reproducible.py::test_reproducible_build_sdist_requirements": 28.55086681099965,
"tests/integration/test_script_metadata.py::test_dependencies_additive": 5.9518963599985,
"tests/integration/test_script_metadata.py::test_dependencies_conflicting": 1.0956396879973909,
"tests/integration/test_script_metadata.py::test_no_script_metadata": 3.073908284000936,
"tests/integration/test_script_metadata.py::test_nominal": 7.508450959001493,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[1-editor]": 0.001093205997676705,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[1-nominal]": 0.001630146000024979,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[1-vim]": 0.000780059999669902,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[2-editor]": 0.0007330909993470414,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[2-nominal]": 0.0007250590024341363,
"tests/integration/test_script_metadata.py::test_script_encoding_bad[2-vim]": 0.0008043020006880397,
"tests/integration/test_script_metadata.py::test_script_encoding_default": 0.00046219299838412553,
"tests/integration/test_script_metadata.py::test_targets_additive": 4.601508522000586,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-UNZIP]": 9.86409628599904,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-VENV]": 9.065472924999995,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-UNZIP]": 10.088969569000255,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-VENV]": 9.728265650002868,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-UNZIP]": 10.48391747200003,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-VENV]": 9.872090938997644,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-UNZIP]": 8.894904189999579,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-VENV]": 9.022285691999059,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-UNZIP]": 10.166259136998633,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-VENV]": 9.842674046998582,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-UNZIP]": 10.397871330998896,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-VENV]": 10.239887497000382,
"tests/integration/test_sh_boot.py::test_argv0[loose-VENV (--sh-boot)]": 0.9974995619995752,
"tests/integration/test_sh_boot.py::test_argv0[loose-VENV]": 2.4096421529975487,
"tests/integration/test_sh_boot.py::test_argv0[loose-ZIPAPP (--sh-boot)]": 2.32066926600055,
"tests/integration/test_sh_boot.py::test_argv0[loose-ZIPAPP]": 2.3619295380012773,
"tests/integration/test_sh_boot.py::test_argv0[packed-VENV (--sh-boot)]": 1.0323592889981228,
"tests/integration/test_sh_boot.py::test_argv0[packed-VENV]": 1.1726835260014923,
"tests/integration/test_sh_boot.py::test_argv0[packed-ZIPAPP (--sh-boot)]": 2.380738077999922,
"tests/integration/test_sh_boot.py::test_argv0[packed-ZIPAPP]": 2.7652000869984477,
"tests/integration/test_sh_boot.py::test_argv0[zipapp-VENV (--sh-boot)]": 1.1824955970005249,
"tests/integration/test_sh_boot.py::test_argv0[zipapp-VENV]": 1.331780720000097,
"tests/integration/test_sh_boot.py::test_argv0[zipapp-ZIPAPP (--sh-boot)]": 2.515125279000131,
"tests/integration/test_sh_boot.py::test_argv0[zipapp-ZIPAPP]": 3.250914988002478,
"tests/integration/test_sh_boot.py::test_execute[venv]": 2.2564055589991767,
"tests/integration/test_sh_boot.py::test_execute[zipapp]": 1.9873431249980058,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[ash (via busybox)]": 2.0605969710031786,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[bash]": 1.899636467000164,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[dash]": 1.8742870219994074,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python2.7]": 1.4235785139990185,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.10]": 1.6368372580000141,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.11]": 1.655744412999411,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.13]": 1.9862816620006924,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.14]": 2.1925771530004567,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.9]": 1.7377003479996347,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[sh]": 1.9516458599991893,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[zsh]": 2.0126445860005333,
"tests/integration/test_sh_boot.py::test_issue_1782[loose-VENV (--sh-boot)]": 22.684661535000487,
"tests/integration/test_sh_boot.py::test_issue_1782[loose-VENV]": 24.093579402000614,
"tests/integration/test_sh_boot.py::test_issue_1782[loose-ZIPAPP (--sh-boot)]": 27.95094558100027,
"tests/integration/test_sh_boot.py::test_issue_1782[loose-ZIPAPP]": 24.824884034000206,
"tests/integration/test_sh_boot.py::test_issue_1782[packed-VENV (--sh-boot)]": 24.371707195001363,
"tests/integration/test_sh_boot.py::test_issue_1782[packed-VENV]": 26.675371352001093,
"tests/integration/test_sh_boot.py::test_issue_1782[packed-ZIPAPP (--sh-boot)]": 33.309743231999164,
"tests/integration/test_sh_boot.py::test_issue_1782[packed-ZIPAPP]": 26.127617988000566,
"tests/integration/test_sh_boot.py::test_issue_1782[zipapp-VENV (--sh-boot)]": 31.041930839999623,
"tests/integration/test_sh_boot.py::test_issue_1782[zipapp-VENV]": 23.424700518000463,
"tests/integration/test_sh_boot.py::test_issue_1782[zipapp-ZIPAPP (--sh-boot)]": 23.551764158999504,
"tests/integration/test_sh_boot.py::test_issue_1782[zipapp-ZIPAPP]": 33.00185986900033,
"tests/integration/test_sh_boot.py::test_issue_1881[venv]": 3.0495394530007616,
"tests/integration/test_sh_boot.py::test_issue_1881[zipapp]": 4.162736797999969,
"tests/integration/test_sh_boot.py::test_issue_2726_pex_tools[VENV (--sh-boot)]": 4.1737204090004525,
"tests/integration/test_sh_boot.py::test_issue_2726_pex_tools[VENV]": 4.205584167000779,
"tests/integration/test_sh_boot.py::test_issue_2726_pex_tools[ZIPAPP (--sh-boot)]": 3.90534333100004,
"tests/integration/test_sh_boot.py::test_issue_2726_pex_tools[ZIPAPP]": 4.3600071930013655,
"tests/integration/test_sh_boot.py::test_python_shebang_respected": 1.3754820410013053,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_lock_local_project": 15.857171191999441,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_resolve": 9.92217753299883,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV (--sh-boot)]": 1.6290631249994476,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV]": 1.728313685998728,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP (--sh-boot)]": 3.0315442959981738,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP]": 3.3175666269999056,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-NoStripPexEnv]": 1.7964816139992763,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-StripPexEnv]": 1.8014174359996105,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-NoStripPexEnv]": 2.160406213002716,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-StripPexEnv]": 2.248094404998483,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-NoStripPexEnv]": 2.695155736999368,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-StripPexEnv]": 2.631177196999488,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-NoStripPexEnv]": 1.4615861300007964,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-StripPexEnv]": 1.3798041580012068,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-NoStripPexEnv]": 1.9049985069996183,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-StripPexEnv]": 1.9173271339986968,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-NoStripPexEnv]": 1.725304576999406,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-StripPexEnv]": 1.719334957000683,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_empty_pex": 8.338119484002164,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_both_conflict": 14.40765907399873,