-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
.test_timings
980 lines (980 loc) · 105 KB
/
.test_timings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
{
"tests/integration/build_system/test_issue_2063.py::test_build_system_no_build_backend": 21.64748710200365,
"tests/integration/build_system/test_issue_2125.py::test_get_requires_for_build_wheel": 10.178017180005554,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_pyproject_toml": 9.586022678995505,
"tests/integration/build_system/test_pep_517.py::test_build_sdist_setup_py": 2.5786598049890017,
"tests/integration/build_system/test_pep_518.py::test_load_build_system_pyproject_custom_repos": 5.998089054002776,
"tests/integration/cli/commands/test_export.py::test_export_multiple_artifacts": 0.4075044429919217,
"tests/integration/cli/commands/test_export.py::test_export_no_hashes": 0.43184917500184383,
"tests/integration/cli/commands/test_export.py::test_export_normalizes_name_but_not_version": 0.5062501999927917,
"tests/integration/cli/commands/test_export.py::test_export_respects_target": 0.9752087580127409,
"tests/integration/cli/commands/test_export.py::test_export_single_artifact": 0.41892902298422996,
"tests/integration/cli/commands/test_export.py::test_export_sort_by": 0.9726128420152236,
"tests/integration/cli/commands/test_export.py::test_export_vcs_and_local_project_requirements_issue_2416": 0.45084457100892905,
"tests/integration/cli/commands/test_export_subset.py::test_full": 0.9188992429844802,
"tests/integration/cli/commands/test_export_subset.py::test_subset": 0.39132894900103565,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_all": 0.9101536389935063,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default": 0.4434495669993339,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_combined": 0.3868814270099392,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_markers": 0.40312814501521643,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_tags": 0.48567814800480846,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_default_verbose": 0.4048823830089532,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_distributions": 8.169739054996171,
"tests/integration/cli/commands/test_interpreter_inspect.py::test_inspect_interpreter_selection": 1.3250665630039293,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_create": 2.997875283996109,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_export": 2.3039304060075665,
"tests/integration/cli/commands/test_issue_1413.py::test_find_links_update": 0.8410885830089683,
"tests/integration/cli/commands/test_issue_1665.py::test_lock_black": 7.820800015018904,
"tests/integration/cli/commands/test_issue_1667.py::test_interpreter_constraints_range_coverage": 27.994161067006644,
"tests/integration/cli/commands/test_issue_1688.py::test_multiplatform_sdist": 8.423555179004325,
"tests/integration/cli/commands/test_issue_1711.py::test_backtrack_links_preserved": 12.470261812995886,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_sdist_requires_python_different_from_current": 8.084670042997459,
"tests/integration/cli/commands/test_issue_1734.py::test_lock_create_universal_interpreter_constraint_unsatisfiable": 0.3475501730135875,
"tests/integration/cli/commands/test_issue_1741.py::test_prereleases": 11.617652258995804,
"tests/integration/cli/commands/test_issue_1801.py::test_preserve_pip_download_log": 0.888756268992438,
"tests/integration/cli/commands/test_issue_1821.py::test_issue_1821": 52.69194594999135,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[sources]": 0.3989420840080129,
"tests/integration/cli/commands/test_issue_1821.py::test_non_universal_target_system_unsupported[strict]": 0.39260451500013005,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_platform_specific": 12.34182685399719,
"tests/integration/cli/commands/test_issue_1821.py::test_target_system_universal": 7.018711632001214,
"tests/integration/cli/commands/test_issue_2050.py::test_lock_uncompilable_sdist": 4.056194619988673,
"tests/integration/cli/commands/test_issue_2050.py::test_pep_517_prepare_metadata_for_build_wheel_fallback": 16.077692623992334,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [PEP-508]]": 14.342338879025192,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Full-Create Lock [Pip Proprietary]]": 13.743578182999045,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 14.249209575995337,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 13.663694678980391,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 13.115216121004778,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_archive_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 13.71221700400929,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [PEP-508]]": 19.35582561699266,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Full-Create Lock [Pip Proprietary]]": 20.206985693992465,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [PEP-508]]": 21.673696611993364,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [PEP-508]-Create Lock [Pip Proprietary]]": 19.629043284003274,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [PEP-508]]": 20.393256934999954,
"tests/integration/cli/commands/test_issue_2057.py::test_lock_create_local_project_direct_reference[Subset [Pip Proprietary]-Create Lock [Pip Proprietary]]": 20.921478049989673,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [PEP-508]]": 2.3665412290138192,
"tests/integration/cli/commands/test_issue_2057.py::test_pex_archive_direct_reference[Create Pex [Pip Proprietary]]": 2.5087741289898986,
"tests/integration/cli/commands/test_issue_2059.py::test_pypy_impl_tag_handling": 4.294439984994824,
"tests/integration/cli/commands/test_issue_2098.py::test_missing_download_lock_analysis_handling": 60.09132451600453,
"tests/integration/cli/commands/test_issue_2211.py::test_backtracking[20.3.4-patched]": 33.18146110000089,
"tests/integration/cli/commands/test_issue_2268.py::test_abi_none_locking[pip-2020-resolver]": 4.178940012992825,
"tests/integration/cli/commands/test_issue_2268.py::test_abi_none_locking[pip-legacy-resolver]": 5.032251380995149,
"tests/integration/cli/commands/test_issue_2313.py::test_venv_site_packages_copies": 7.5450220280035865,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.2]": 0.014016686007380486,
"tests/integration/cli/commands/test_issue_2414.py::test_redirects_dont_stomp_original_index_urls[23.3.1]": 0.01902530700317584,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.2]": 6.501197780991788,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.3.1]": 6.378986777999671,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[23.3.2]": 3.5286997410148615,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.0]": 3.393220534984721,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.1]": 3.669360145999235,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1.2]": 3.641348349992768,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.1]": 3.757945582983666,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_new_pip[24.2]": 3.546747836007853,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[20.3.4-patched]": 5.330528349019005,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.2.2]": 9.93418232499971,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.3.1]": 10.073590027997852,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[22.3]": 10.507823885986,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.0.1]": 10.430713432011544,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.0]": 10.180780680006137,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1.1]": 9.521966433007037,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1.2]": 9.833157929009758,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_old_pip[23.1]": 9.84868324600393,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[20.3.4-patched]": 2.541057740992983,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.2.2]": 3.0540976939810207,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.3.1]": 3.0686137809825595,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[22.3]": 2.9742044839949813,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.0.1]": 3.1316367219988024,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.0]": 2.9321057019988075,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1.1]": 3.3459402859880356,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1.2]": 3.211030270002084,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.1]": 3.135451816007844,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.2]": 3.192318550994969,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.3.1]": 3.3500288729846943,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[23.3.2]": 6.807937402991229,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.0]": 5.837602198007517,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.1]": 5.688864263007417,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1.2]": 5.87278036600037,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.1]": 5.973544141990715,
"tests/integration/cli/commands/test_issue_2519.py::test_sync_version_mismatch_prefer_binary_all_pips[24.2]": 5.7271406700019725,
"tests/integration/cli/commands/test_local_project_lock.py::test_fingerprint_stability": 34.63248023898632,
"tests/integration/cli/commands/test_local_project_lock.py::test_path_mappings": 11.168659257993568,
"tests/integration/cli/commands/test_lock.py::test_create": 2.439223333989503,
"tests/integration/cli/commands/test_lock.py::test_create_local": 32.1445935429947,
"tests/integration/cli/commands/test_lock.py::test_create_style": 15.514037515982636,
"tests/integration/cli/commands/test_lock.py::test_create_universal_platform_check": 19.35456373199122,
"tests/integration/cli/commands/test_lock.py::test_create_universal_python_unsupported": 0.37396125501254573,
"tests/integration/cli/commands/test_lock.py::test_create_vcs": 17.382989973993972,
"tests/integration/cli/commands/test_lock.py::test_excludes_pep517_build_requirements_issue_1565": 9.43689231701137,
"tests/integration/cli/commands/test_lock.py::test_universal_lock[pip-2020-resolver]": 6.347514590001083,
"tests/integration/cli/commands/test_lock.py::test_universal_lock[pip-legacy-resolver]": 7.549316828008159,
"tests/integration/cli/commands/test_lock.py::test_update_add_impossible": 4.368343644993729,
"tests/integration/cli/commands/test_lock.py::test_update_noop": 1.966246385985869,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run": 2.0521951420087134,
"tests/integration/cli/commands/test_lock.py::test_update_noop_dry_run_check": 2.071313897991786,
"tests/integration/cli/commands/test_lock.py::test_update_partial": 3.372352227990632,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add": 2.112441022982239,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run": 2.0283699539868394,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_dry_run_check": 2.4581164109986275,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_add_transitive": 3.200590029999148,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_closure_shrink": 1.3350666289770743,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_downgrade": 2.148257886990905,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_impossible": 4.39491223199002,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_mixed_dry_run": 2.3032766460091807,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade": 2.1457026630087057,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run": 2.3332155300013255,
"tests/integration/cli/commands/test_lock.py::test_update_targeted_upgrade_dry_run_check": 2.0030164100026013,
"tests/integration/cli/commands/test_lock_foreign_platform_sdist.py::test_lock_foreign_platform_sdist": 25.418951733998256,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_project_lock": 39.98585253000783,
"tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py::test_reproducibility_hostile_vcs_lock": 25.92568850099633,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_netrc_issue_1753": 13.556651794991922,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_authenticated_lock_url_issue_1753": 10.951156857001479,
"tests/integration/cli/commands/test_lock_resolve_auth.py::test_bad_netrc_issue_1762": 6.9458885119966,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_add": 0.8562632079992909,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_complex": 0.9187286989908898,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_configuration": 0.8883089230075711,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_extras": 9.752703702019062,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create": 0.8731055480020586,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_lock_create_equivalence": 1.724716754994006,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_create_venv": 1.1328311269899132,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_implicit_lock_create_venv_create_run": 1.0722861800022656,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_noop": 0.9544809639919549,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_remove": 0.3878800710081123,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_sources": 2.0551867640024284,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_strict_to_strict": 2.301195950989495,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_universal_to_universal": 4.113623163997545,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_update": 1.0219623250013683,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_add": 1.9220419680059422,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_complex": 1.6560291450005025,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_create": 1.1885803640179802,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_dry_run_update": 6.623245406997739,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_noop": 1.8058939250040567,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_remove": 1.2428948229935486,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run": 6.728685663998476,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_no_retain_pip_preinstalled": 6.276058370000101,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_no_pip_preinstalled": 22.166987054995843,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_pip_preinstalled": 6.8308607609942555,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--no-retain-pip]": 7.928164283992373,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[--retain-pip]": 7.8509998110093875,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_run_retain_user_pip[default]": 8.222465998012922,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_transitive_to_direct_and_vice_versa": 1.647553065995453,
"tests/integration/cli/commands/test_lock_sync.py::test_sync_venv_update": 1.6625849700067192,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_added": 5.815866709992406,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_artifacts_removed": 7.49523976900673,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_corrupted": 6.155400850009755,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run": 6.3717973539896775,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_dry_run_path_mapping": 5.844769734991132,
"tests/integration/cli/commands/test_lock_update.py::test_lock_update_repo_migration_nominal": 6.03116704999411,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_delete_complex": 0.483127836996573,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_conflict": 1.0817398829967715,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_invalid": 0.43111208199115936,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_nominal": 0.3681824210216291,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_noop": 0.4295787279988872,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_delete_req_only": 0.44739401899278164,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_downgrade": 0.9729932889895281,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_invalid": 6.5290775729954476,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_mixed": 0.958181321999291,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_nominal": 0.9822478319983929,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace": 0.9403786249895347,
"tests/integration/cli/commands/test_lock_update_issues_2332_2334.py::test_lock_update_replace_invalid": 0.41241890798846725,
"tests/integration/cli/commands/test_vcs_lock.py::test_subdir": 8.294760042015696,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_direct_reference": 8.199378525983775,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_equivalence": 6.973988706013188,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_fingerprint_stability": 9.634444269002415,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_pip_proprietary": 7.873937212003511,
"tests/integration/cli/commands/test_vcs_lock.py::test_vcs_transitive": 8.116831270002876,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat-zipped]": 2.131663580003078,
"tests/integration/cli/commands/test_venv_create.py::test_flat[flat]": 2.083374552981695,
"tests/integration/cli/commands/test_venv_create.py::test_flat_empty": 0.5167350309930043,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_empty": 0.4297655590053182,
"tests/integration/cli/commands/test_venv_create.py::test_flat_zipped_prefix": 0.4868874859821517,
"tests/integration/cli/commands/test_venv_create.py::test_foreign_target": 2.2758799199946225,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_flat": 1.3635835039895028,
"tests/integration/cli/commands/test_venv_create.py::test_pex_scope_venv": 2.3062493820034433,
"tests/integration/cli/commands/test_venv_create.py::test_venv": 7.3883682990126545,
"tests/integration/cli/commands/test_venv_create.py::test_venv_empty": 0.7260215730057098,
"tests/integration/cli/commands/test_venv_create.py::test_venv_pip": 5.206947429018328,
"tests/integration/cli/commands/test_venv_create.py::test_venv_update_target_mismatch": 2.972731815985753,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_pex_venv": 3.4776199470215943,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-2.7.18]": 4.6913704160106136,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=False-3.10.7]": 6.844388994999463,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-2.7.18]": 4.90451993199531,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_non_pex[system_site_packages=True-3.10.7]": 6.559677550991182,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=False]": 3.8658211279980605,
"tests/integration/cli/commands/test_venv_inspect.py::test_inspect_venv_virtualenv[system_site_packages=True]": 3.942744408006547,
"tests/integration/cli/commands/test_venv_inspect.py::test_no_python": 0.40720956098812167,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_dir": 0.42142579999926966,
"tests/integration/cli/commands/test_venv_inspect.py::test_not_venv_interpreter": 0.454911844979506,
"tests/integration/resolve/pep_691/test_api.py::test_http_error": 0.38408769899979234,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_content_type": 0.0020902520045638084,
"tests/integration/resolve/pep_691/test_api.py::test_invalid_json": 0.14281275098619517,
"tests/integration/resolve/pep_691/test_api.py::test_valid[application/vnd.pypi.simple.v1+json]": 0.37509870700887404,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_local_project_requirement": 13.817959519001306,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_nominal": 2.3729105290112784,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_offline": 4.363827330991626,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_project_requirement": 6.172759668988874,
"tests/integration/resolve/test_issue_1907.py::test_pre_resolved_dists_subset": 2.307883456000127,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-2020-resolver-direct-reference]": 8.478900417685509e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-2020-resolver-pip-proprietary]": 6.159899930935353e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-legacy-resolver-direct-reference]": 0.00010139099322259426,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[20.3.4-patched-pip-legacy-resolver-pip-proprietary]": 7.018000178504735e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-2020-resolver-direct-reference]": 6.786099402233958e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-2020-resolver-pip-proprietary]": 6.0044010751880705e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-legacy-resolver-direct-reference]": 0.00010757999552879483,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.2.2-pip-legacy-resolver-pip-proprietary]": 9.995400614570826e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-2020-resolver-direct-reference]": 6.739598757121712e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-2020-resolver-pip-proprietary]": 5.875399801880121e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-legacy-resolver-direct-reference]": 6.363699503708631e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3-pip-legacy-resolver-pip-proprietary]": 6.206099351402372e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-2020-resolver-direct-reference]": 7.90049962233752e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-2020-resolver-pip-proprietary]": 7.949500286486e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-legacy-resolver-direct-reference]": 0.00010541600931901485,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[22.3.1-pip-legacy-resolver-pip-proprietary]": 7.602499681524932e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-2020-resolver-direct-reference]": 0.00011056099901907146,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-2020-resolver-pip-proprietary]": 8.705399523023516e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-legacy-resolver-direct-reference]": 7.905400707386434e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0-pip-legacy-resolver-pip-proprietary]": 0.00013674898946192116,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-2020-resolver-direct-reference]": 0.00012702500680461526,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-2020-resolver-pip-proprietary]": 5.671300459653139e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-legacy-resolver-direct-reference]": 8.492699998896569e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.0.1-pip-legacy-resolver-pip-proprietary]": 9.793699427973479e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-2020-resolver-direct-reference]": 8.095799421425909e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-2020-resolver-pip-proprietary]": 8.231599349528551e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-legacy-resolver-direct-reference]": 8.001099922694266e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1-pip-legacy-resolver-pip-proprietary]": 8.476899529341608e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-2020-resolver-direct-reference]": 0.0003708459989866242,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-2020-resolver-pip-proprietary]": 8.53060046210885e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-legacy-resolver-direct-reference]": 8.073599019553512e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.1-pip-legacy-resolver-pip-proprietary]": 8.536998939234763e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-2020-resolver-direct-reference]": 7.273998926393688e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-2020-resolver-pip-proprietary]": 7.192599878180772e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-legacy-resolver-direct-reference]": 0.000165433986694552,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.1.2-pip-legacy-resolver-pip-proprietary]": 5.650600360240787e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.2-pip-2020-resolver-direct-reference]": 4.765100311487913e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.2-pip-2020-resolver-pip-proprietary]": 7.263901352416724e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.1-pip-2020-resolver-direct-reference]": 5.998300912324339e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.1-pip-2020-resolver-pip-proprietary]": 9.691999002825469e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.2-pip-2020-resolver-direct-reference]": 7.958999776747078e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[23.3.2-pip-2020-resolver-pip-proprietary]": 7.186800939962268e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.0-pip-2020-resolver-direct-reference]": 5.470900214277208e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.0-pip-2020-resolver-pip-proprietary]": 6.162599311210215e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-direct-reference]": 7.924198871478438e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1-pip-2020-resolver-pip-proprietary]": 7.646299491170794e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-direct-reference]": 7.712599472142756e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.1-pip-2020-resolver-pip-proprietary]": 8.147500921040773e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-direct-reference]": 7.894799637142569e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.1.2-pip-2020-resolver-pip-proprietary]": 8.84100008988753e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-direct-reference]": 7.22050026524812e-05,
"tests/integration/resolve/test_issue_1918.py::test_redacted_requirement_handling[24.2-pip-2020-resolver-pip-proprietary]": 8.836899360176176e-05,
"tests/integration/resolve/test_issue_2092.py::test_vcs_respects_target": 41.683708751996164,
"tests/integration/resolve/test_issue_2412.py::test_invalid_project": 0.7773042550106766,
"tests/integration/resolve/test_issue_2412.py::test_locked_project": 28.756409713998437,
"tests/integration/resolve/test_issue_2532.py::test_resolved_wheel_tag_platform_mismatch_warns": 35.15538069601462,
"tests/integration/resolve/test_issue_2568.py::test_independent_logs_for_independent_runs": 2.120373865007423,
"tests/integration/scie/test_discussion_2516.py::test_discussion_2516_op": 6.7192460429942,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-eager]": 1.6429948860168224,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-loose-lazy]": 1.650655788005679,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-eager]": 1.87803230699501,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-packed-lazy]": 1.6419886730145663,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-eager]": 2.549048514003516,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-loose-lazy]": 2.4261520149884745,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-eager]": 2.6695268350013066,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-packed-lazy]": 2.6604546140006278,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-eager]": 2.8249168659967836,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-sh-boot-zipapp-lazy]": 2.695527554024011,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-eager]": 2.88091442300356,
"tests/integration/scie/test_pex_scie.py::test_basic[VENV-zipapp-lazy]": 2.616265379008837,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-eager]": 1.865957176007214,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-loose-lazy]": 1.8051086320047034,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-eager]": 2.496172958984971,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-packed-lazy]": 2.6752819700050168,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-eager]": 2.51960373899783,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-loose-lazy]": 2.7789317190035945,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-eager]": 1.9352639069984434,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-packed-lazy]": 1.8379048409842653,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-eager]": 2.7531730299961055,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-sh-boot-zipapp-lazy]": 2.6946343809977407,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-eager]": 2.755991416008328,
"tests/integration/scie/test_pex_scie.py::test_basic[ZIPAPP-zipapp-lazy]": 1.6583540630090283,
"tests/integration/scie/test_pex_scie.py::test_custom_lazy_urls": 4.97274836699944,
"tests/integration/scie/test_pex_scie.py::test_hashes": 2.8453768589970423,
"tests/integration/scie/test_pex_scie.py::test_multiple_platforms": 8.217877304996364,
"tests/integration/scie/test_pex_scie.py::test_pbs_stripped": 4.946432232012739,
"tests/integration/scie/test_pex_scie.py::test_pex_pex_scie": 11.027682656989782,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[VENV]": 3.1080171229987172,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_args[ZIPAPP]": 3.8757262940198416,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[VENV]": 2.965091689999099,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_env[ZIPAPP]": 4.782507505995454,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[VENV]": 3.033068925011321,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_script_inject_python_args[ZIPAPP]": 3.965295646994491,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_distribution": 3.62742631699075,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_add_script": 4.122868466991349,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[VENV]": 3.003269953012932,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_all[ZIPAPP]": 4.474235731991939,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_distribution": 3.527634938014671,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_console_scripts_remove_script": 2.9924005290085915,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_point_injections": 3.8152689690032275,
"tests/integration/scie/test_pex_scie.py::test_scie_busybox_module_entry_points": 3.559621808017255,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_file_suffix": 1.2446529009903315,
"tests/integration/scie/test_pex_scie.py::test_scie_name_style_platform_parent_dir": 0.9323138969921274,
"tests/integration/scie/test_pex_scie.py::test_scie_only": 2.553603476000717,
"tests/integration/scie/test_pex_scie.py::test_script_not_found": 1.3039570569962962,
"tests/integration/scie/test_pex_scie.py::test_specified_interpreter": 2.9726603089948185,
"tests/integration/scie/test_pex_scie.py::test_specified_science_binary": 14.084286959987367,
"tests/integration/test_downloads.py::test_issue_1849_download_foreign_artifact": 0.44686519000970293,
"tests/integration/test_downloads.py::test_issue_1849_fingerprint_foreign_artifact": 0.5376908480102429,
"tests/integration/test_excludes.py::test_exclude": 15.663907515991013,
"tests/integration/test_excludes.py::test_exclude_deep[20.3.4-patched-legacy]": 12.77906717901351,
"tests/integration/test_excludes.py::test_exclude_deep[20.3.4-patched-resolvelib]": 12.989865452997037,
"tests/integration/test_excludes.py::test_exclude_deep[22.2.2-legacy]": 15.411424708989216,
"tests/integration/test_excludes.py::test_exclude_deep[22.2.2-resolvelib]": 16.33897225400142,
"tests/integration/test_excludes.py::test_exclude_deep[22.3-legacy]": 15.427958597007091,
"tests/integration/test_excludes.py::test_exclude_deep[22.3-resolvelib]": 14.895321581992903,
"tests/integration/test_excludes.py::test_exclude_deep[22.3.1-legacy]": 15.556123576010577,
"tests/integration/test_excludes.py::test_exclude_deep[22.3.1-resolvelib]": 18.065365113012376,
"tests/integration/test_excludes.py::test_exclude_deep[23.0-legacy]": 14.96238786498725,
"tests/integration/test_excludes.py::test_exclude_deep[23.0-resolvelib]": 15.38702239000122,
"tests/integration/test_excludes.py::test_exclude_deep[23.0.1-legacy]": 14.784616727978573,
"tests/integration/test_excludes.py::test_exclude_deep[23.0.1-resolvelib]": 15.070518647989957,
"tests/integration/test_excludes.py::test_exclude_deep[23.1-legacy]": 13.806932969979243,
"tests/integration/test_excludes.py::test_exclude_deep[23.1-resolvelib]": 15.374400701999548,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.1-legacy]": 14.651472878016648,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.1-resolvelib]": 14.654499527998269,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.2-legacy]": 15.933034349989612,
"tests/integration/test_excludes.py::test_exclude_deep[23.1.2-resolvelib]": 16.733239843000774,
"tests/integration/test_excludes.py::test_exclude_deep[23.2-resolvelib]": 15.103833614979521,
"tests/integration/test_excludes.py::test_exclude_deep[23.3.1-resolvelib]": 15.661053129006177,
"tests/integration/test_excludes.py::test_exclude_deep[23.3.2-resolvelib]": 15.196052005994716,
"tests/integration/test_excludes.py::test_exclude_deep[24.0-resolvelib]": 15.054720628002542,
"tests/integration/test_excludes.py::test_exclude_deep[24.1-resolvelib]": 16.210255105004762,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.1-resolvelib]": 14.911159817012958,
"tests/integration/test_excludes.py::test_exclude_deep[24.1.2-resolvelib]": 16.32101129401417,
"tests/integration/test_excludes.py::test_exclude_deep[24.2-resolvelib]": 15.078788719998556,
"tests/integration/test_excludes.py::test_lock_exclude": 26.048334188002627,
"tests/integration/test_excludes.py::test_pre_resolved_dists_exclude": 19.366257007000968,
"tests/integration/test_excludes.py::test_requirements_pex_exclude": 10.796351649987628,
"tests/integration/test_executuon_mode_venv.py::test_custom_prompt": 1.5130311850080034,
"tests/integration/test_inject_env_and_args.py::test_complex[VENV]": 5.0957170450128615,
"tests/integration/test_inject_env_and_args.py::test_complex[ZIPAPP]": 8.431369831989286,
"tests/integration/test_inject_env_and_args.py::test_inject_args[VENV]": 3.9171630649943836,
"tests/integration/test_inject_env_and_args.py::test_inject_args[ZIPAPP]": 10.087657486001262,
"tests/integration/test_inject_env_and_args.py::test_inject_env[VENV]": 1.7046978050202597,
"tests/integration/test_inject_env_and_args.py::test_inject_env[ZIPAPP]": 4.519834958977299,
"tests/integration/test_inject_env_and_args.py::test_inject_env_invalid": 0.37332338001579046,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[VENV]": 7.541000377386808e-05,
"tests/integration/test_inject_env_and_args.py::test_pyuwsgi[ZIPAPP]": 6.823899457231164e-05,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-VENV]": 2.301017519988818,
"tests/integration/test_inject_python_args.py::test_inject_python_args[PYTHON-ZIPAPP]": 5.0721010680135805,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-VENV]": 2.255180044012377,
"tests/integration/test_inject_python_args.py::test_inject_python_args[SH_BOOT-ZIPAPP]": 5.003637030997197,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-VENV]": 4.622388288000366,
"tests/integration/test_inject_python_args.py::test_issue_2422[PYTHON-ZIPAPP]": 9.164354399006697,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-VENV]": 4.8868933570047375,
"tests/integration/test_inject_python_args.py::test_issue_2422[SH_BOOT-ZIPAPP]": 8.233601891988656,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-VENV]": 5.008990792004624,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[PYTHON-ZIPAPP]": 10.269306688991492,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-VENV]": 5.078587470998173,
"tests/integration/test_inject_python_args.py::test_python_args_passthrough[SH_BOOT-ZIPAPP]": 9.605860005001887,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-PEX]": 1.6007441469992045,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-loose-VENV]": 1.0456062909943284,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-PEX]": 1.952036626986228,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-packed-VENV]": 0.9752320369880181,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-PEX]": 2.4286361560079968,
"tests/integration/test_integration.py::test_binary_scripts[.whl file-zipapp-VENV]": 1.976184145998559,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-PEX]": 1.6657036310061812,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-loose-VENV]": 1.2028691500163404,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-PEX]": 1.9757536069955677,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-packed-VENV]": 1.0778146920056315,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-PEX]": 2.7711165329965297,
"tests/integration/test_integration.py::test_binary_scripts[installed wheel chroot-zipapp-VENV]": 2.1362358209880767,
"tests/integration/test_integration.py::test_cache_disable": 4.288115671006381,
"tests/integration/test_integration.py::test_console_script_from_pex_path": 3.375044960019295,
"tests/integration/test_integration.py::test_constraint_file_from_url": 2.2692277659953106,
"tests/integration/test_integration.py::test_cross_platform_abi_targeting_behavior_exact": 2.747843566001393,
"tests/integration/test_integration.py::test_disable_cache": 2.3148453650064766,
"tests/integration/test_integration.py::test_emit_warnings_default": 2.5857773239840753,
"tests/integration/test_integration.py::test_entry_point_exit_code": 2.868995440992876,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-loose]": 1.6051272280019475,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-packed]": 1.6194950369826984,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[.whl file-zipapp]": 1.7890630139881978,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.6610115849907743,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-packed]": 1.5195985889877193,
"tests/integration/test_integration.py::test_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 1.7970849959965562,
"tests/integration/test_integration.py::test_inherit_path_backwards_compatibility": 5.803433952998603,
"tests/integration/test_integration.py::test_inherit_path_fallback": 5.788678664001054,
"tests/integration/test_integration.py::test_inherit_path_prefer": 5.375623461004579,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-loose]": 1.674668939987896,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-packed]": 1.474438396980986,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[.whl file-zipapp]": 1.6060952749830903,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-loose]": 1.5479169680038467,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-packed]": 1.4763472510094289,
"tests/integration/test_integration.py::test_invalid_entry_point_verification_3rdparty[installed wheel chroot-zipapp]": 1.5198722209897824,
"tests/integration/test_integration.py::test_invalid_macosx_platform_tag": 9.145500371232629e-05,
"tests/integration/test_integration.py::test_ipython_appnope_env_markers": 7.290099165402353e-05,
"tests/integration/test_integration.py::test_multiplatform_entrypoint": 2.691826956011937,
"tests/integration/test_integration.py::test_no_emit_warnings_2": 2.48688489801134,
"tests/integration/test_integration.py::test_no_emit_warnings_emit_env_override": 2.304451671996503,
"tests/integration/test_integration.py::test_no_emit_warnings_verbose_override": 2.1667491080006585,
"tests/integration/test_integration.py::test_pex_cache_dir_and_pex_root": 2.934773214990855,
"tests/integration/test_integration.py::test_pex_console_script_custom_setuptools_useable": 4.619524543988518,
"tests/integration/test_integration.py::test_pex_execute": 1.2404889030149207,
"tests/integration/test_integration.py::test_pex_exit_code_propagation": 2.9168330690299626,
"tests/integration/test_integration.py::test_pex_interpreter": 1.029858449997846,
"tests/integration/test_integration.py::test_pex_interpreter_execute_custom_setuptools_useable": 2.719503785017878,
"tests/integration/test_integration.py::test_pex_interpreter_interact_custom_setuptools_useable": 2.652989483991405,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_linux_msgpack": 20.816162407994852,
"tests/integration/test_integration.py::test_pex_manylinux_and_tag_selection_lxml_osx": 10.692981515006977,
"tests/integration/test_integration.py::test_pex_manylinux_runtime": 6.762699922546744e-05,
"tests/integration/test_integration.py::test_pex_multi_resolve": 12.71430133100148,
"tests/integration/test_integration.py::test_pex_multi_resolve_1": 9.647007418010617,
"tests/integration/test_integration.py::test_pex_multi_resolve_2": 9.365851470007328,
"tests/integration/test_integration.py::test_pex_path_arg": 14.705867226002738,
"tests/integration/test_integration.py::test_pex_path_in_pex_info_and_env": 13.308137601998169,
"tests/integration/test_integration.py::test_pex_python_symlink": 1.6867642589932075,
"tests/integration/test_integration.py::test_pex_raise": 1.136875594020239,
"tests/integration/test_integration.py::test_pex_repl_built": 5.121369533997495,
"tests/integration/test_integration.py::test_pex_repl_cli": 3.206886016021599,
"tests/integration/test_integration.py::test_pex_repl_history[PEX]": 2.0477938189869747,
"tests/integration/test_integration.py::test_pex_repl_history[VENV]": 1.5745433150004828,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[PEX]": 2.2356649990106234,
"tests/integration/test_integration.py::test_pex_repl_tab_complete[VENV]": 1.6732556310016662,
"tests/integration/test_integration.py::test_pex_resource_bundling": 2.590003587989486,
"tests/integration/test_integration.py::test_pex_root_build": 4.274776616002782,
"tests/integration/test_integration.py::test_pex_root_run": 16.60588067000208,
"tests/integration/test_integration.py::test_pex_run_strip_env": 3.70077441300964,
"tests/integration/test_integration.py::test_pex_source_bundling": 1.4245145449967822,
"tests/integration/test_integration.py::test_pex_source_bundling_pep420": 1.1112970340036554,
"tests/integration/test_integration.py::test_pip_issues_9420_workaround": 2.1788064970023697,
"tests/integration/test_integration.py::test_require_hashes": 6.236324946992681,
"tests/integration/test_integration.py::test_requirement_file_from_url": 3.711447632013005,
"tests/integration/test_integration.py::test_requirements_network_configuration": 1.338739812010317,
"tests/integration/test_integration.py::test_seed[.whl file-loose-PEX]": 2.1920662940101465,
"tests/integration/test_integration.py::test_seed[.whl file-loose-VENV]": 1.396415128998342,
"tests/integration/test_integration.py::test_seed[.whl file-packed-PEX]": 2.687199342995882,
"tests/integration/test_integration.py::test_seed[.whl file-packed-VENV]": 1.3514889030193444,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-PEX]": 2.724801820004359,
"tests/integration/test_integration.py::test_seed[.whl file-zipapp-VENV]": 1.7584941100212745,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-PEX]": 2.2048059540247777,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-loose-VENV]": 1.3174049829976866,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-PEX]": 2.393236692994833,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-packed-VENV]": 1.284261515000253,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-PEX]": 2.907886419998249,
"tests/integration/test_integration.py::test_seed[installed wheel chroot-zipapp-VENV]": 1.696498460994917,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-PEX]": 4.5784350669855485,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-loose-VENV]": 3.7406228840118274,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-PEX]": 5.689348664003774,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-packed-VENV]": 3.6786416480026674,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-PEX]": 4.661975213995902,
"tests/integration/test_integration.py::test_seed_verbose[Direct-.whl file-zipapp-VENV]": 3.6303926249966025,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-PEX]": 4.14859835698735,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-loose-VENV]": 3.5141266279970296,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-PEX]": 4.490104092998081,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-packed-VENV]": 4.862313763005659,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-PEX]": 5.016701724001905,
"tests/integration/test_integration.py::test_seed_verbose[Direct-installed wheel chroot-zipapp-VENV]": 3.472054965008283,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-PEX]": 4.1761630620167125,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-loose-VENV]": 3.6206136319960933,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-PEX]": 4.625242750989855,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-packed-VENV]": 3.351004258991452,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-PEX]": 4.633702906983672,
"tests/integration/test_integration.py::test_seed_verbose[Python-.whl file-zipapp-VENV]": 3.4821937110100407,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-PEX]": 4.506959063000977,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-loose-VENV]": 3.776905587001238,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-PEX]": 4.821955050996621,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-packed-VENV]": 3.68455750697467,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-PEX]": 4.718006014998537,
"tests/integration/test_integration.py::test_seed_verbose[Python-installed wheel chroot-zipapp-VENV]": 4.596566777006956,
"tests/integration/test_integration.py::test_setup_interpreter_constraint": 4.046055354992859,
"tests/integration/test_integration.py::test_setup_python": 3.8948134490055963,
"tests/integration/test_integration.py::test_setup_python_direct_markers": 3.7717699900094885,
"tests/integration/test_integration.py::test_setup_python_multiple_direct_markers": 6.836699074017815,
"tests/integration/test_integration.py::test_setup_python_multiple_transitive_markers": 7.844804620996001,
"tests/integration/test_integration.py::test_setup_python_path": 5.363295735005522,
"tests/integration/test_integration.py::test_tmpdir_absolute": 1.0265819310006918,
"tests/integration/test_integration.py::test_tmpdir_dne": 0.38466362000326626,
"tests/integration/test_integration.py::test_tmpdir_file": 0.34262201499950606,
"tests/integration/test_integration.py::test_trusted_host_handling": 2.418728340024245,
"tests/integration/test_integration.py::test_unzip_mode": 3.17748406699684,
"tests/integration/test_integration.py::test_venv_mode": 4.81939433599473,
"tests/integration/test_interpreter.py::test_boot_identification_leak": 3.4968698380107526,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_honored_without_ppp_or_pp": 2.3096049660089193,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py2": 4.069551578999381,
"tests/integration/test_interpreter_selection.py::test_interpreter_constraints_to_pex_info_py3": 1.8898930939903948,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_pex_python_path_precedence_over_pex_python": 2.841892036012723,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_constraint_option": 4.064457906977623,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_multiple_constraint_options": 3.9229401070042513,
"tests/integration/test_interpreter_selection.py::test_interpreter_resolution_with_pex_python_path": 2.2854304159845924,
"tests/integration/test_interpreter_selection.py::test_interpreter_selection_using_os_environ_for_bootstrap_reexec": 14.366158297998481,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_and_pex_python_but_no_constraints": 2.190150223003002,
"tests/integration/test_interpreter_selection.py::test_pex_exec_with_pex_python_path_only": 1.9863295239920262,
"tests/integration/test_interpreter_selection.py::test_pex_python": 5.704819135979051,
"tests/integration/test_interpreter_selection.py::test_plain_pex_exec_no_ppp_no_pp_no_constraints": 1.9972501279989956,
"tests/integration/test_issue_1017.py::test_resolve_python_requires_full_version": 5.50589423198835,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-PEX]": 1.571504957988509,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-loose-VENV]": 1.4448239280027337,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-PEX]": 1.512299485009862,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-packed-VENV]": 1.6937508299888577,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-PEX]": 1.3490388350037392,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-function-zipapp-VENV]": 1.6106079169985605,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-PEX]": 1.470741826982703,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-loose-VENV]": 1.4227082780271303,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-PEX]": 1.3374773469840875,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-packed-VENV]": 1.3377293869998539,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-PEX]": 1.4054219929967076,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[ep-module-zipapp-VENV]": 1.3480839269905118,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-PEX]": 1.491847996992874,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-loose-VENV]": 1.3299222859932343,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-PEX]": 2.1534082120197127,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-packed-VENV]": 2.361113001985359,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-PEX]": 2.4740367470221827,
"tests/integration/test_issue_1018.py::test_execute_module_alter_sys[no-ep-zipapp-VENV]": 1.9119926919956924,
"tests/integration/test_issue_1025.py::test_extras_isolation": 9.384199308013194,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[pyvenv]": 22.120386570008122,
"tests/integration/test_issue_1031.py::test_setuptools_isolation_with_system_site_packages[virtualenv-16.7.10]": 13.920244338019984,
"tests/integration/test_issue_1179.py::test_pip_2020_resolver_engaged": 12.274970525977551,
"tests/integration/test_issue_1201.py::test_old_requires_metadata_used_for_requires_python": 1.9265853659890126,
"tests/integration/test_issue_1202.py::test_prefer_binary": 3.424291134986561,
"tests/integration/test_issue_1218.py::test_venv_mode_dir_hash_includes_all_pex_info_metadata": 8.997831806991599,
"tests/integration/test_issue_1225.py::test_venv_mode_pex_path": 10.037557189993095,
"tests/integration/test_issue_1232.py::test_isolated_pex_zip": 37.014922396003385,
"tests/integration/test_issue_1302.py::test_pex_repository_pep503": 5.058029148014612,
"tests/integration/test_issue_1316.py::test_resolve_cyclic_dependency_graph": 3.91321541700745,
"tests/integration/test_issue_1336.py::test_pip_leak": 5.820885168999666,
"tests/integration/test_issue_1422.py::test_unconstrained_universal_venv_pex": 8.218724972000928,
"tests/integration/test_issue_1447.py::test_layout_identification": 3.4423213969857898,
"tests/integration/test_issue_1479.py::test_unicode_script_shebang_rewrite_docutils": 4.547878191006021,
"tests/integration/test_issue_1520.py::test_hermetic_console_scripts": 4.787902733005467,
"tests/integration/test_issue_1537.py::test_rel_cert_path": 3.2110853799968027,
"tests/integration/test_issue_1540.py::test_derive_consistent_shebang_platforms": 1.7526160029956372,
"tests/integration/test_issue_1550.py::test_duplicate_requirements_issues_1550": 2.2294152939866763,
"tests/integration/test_issue_1560.py::test_build_isolation[2.7.18]": 22.548266626996337,
"tests/integration/test_issue_1560.py::test_build_isolation[3.10.7]": 18.36321720200067,
"tests/integration/test_issue_1560.py::test_build_isolation[3.8.10]": 18.476467595013673,
"tests/integration/test_issue_1560.py::test_build_isolation[3.9.13]": 18.416958565998357,
"tests/integration/test_issue_1560.py::test_pep_517_for_legacy_project": 14.310594191993005,
"tests/integration/test_issue_1560.py::test_pep_517_for_pep_517_project": 4.264238510993891,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-VENV]": 12.510402820989839,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-scie-ZIPAPP]": 10.963617720990442,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-VENV]": 2.080187625993858,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[FORCE_COLOR-traditional-ZIPAPP]": 4.075237287019263,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-VENV]": 11.65754722901329,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-scie-ZIPAPP]": 13.037901513991528,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-VENV]": 2.3816993340151384,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[IS_TTY-traditional-ZIPAPP]": 3.434102172002895,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-VENV]": 11.507433741004206,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-scie-ZIPAPP]": 11.041653900989331,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-VENV]": 2.3854710509913275,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[NO_COLOR-traditional-ZIPAPP]": 3.704727694988833,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-VENV]": 11.180142664015875,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-scie-ZIPAPP]": 11.344676486987737,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-VENV]": 2.4725483619840816,
"tests/integration/test_issue_157.py::test_empty_pex_no_args[TERM=dumb-traditional-ZIPAPP]": 3.647574826987693,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[VENV]": 13.396924779008259,
"tests/integration/test_issue_157.py::test_pex_cli_no_args[ZIPAPP]": 14.661703746998683,
"tests/integration/test_issue_157.py::test_pex_info_command_json": 3.754288793017622,
"tests/integration/test_issue_157.py::test_pex_info_command_loose_venv_pex_directory": 2.072956318006618,
"tests/integration/test_issue_157.py::test_pex_info_command_packed_pex_directory": 4.326752136999858,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_file": 3.3060691020073136,
"tests/integration/test_issue_157.py::test_pex_info_command_pex_venv": 4.334957279002992,
"tests/integration/test_issue_157.py::test_pex_info_command_venv_pex_file": 2.5837044500076445,
"tests/integration/test_issue_157.py::test_pex_with_deps[VENV]": 3.999567103004665,
"tests/integration/test_issue_157.py::test_pex_with_deps[ZIPAPP]": 4.754396384974825,
"tests/integration/test_issue_1597.py::test_platform_abbreviated": 6.919428533990867,
"tests/integration/test_issue_1597.py::test_platform_complete": 7.926232976009487,
"tests/integration/test_issue_1598.py::test_mount_respects_env": 21.7772279750061,
"tests/integration/test_issue_1656.py::test_mixed_pex_root": 0.00024156399013008922,
"tests/integration/test_issue_1656.py::test_new_venv_tool_vs_old_pex": 7.148498843889683e-05,
"tests/integration/test_issue_1656.py::test_old_venv_tool_vs_new_pex": 7.257900142576545e-05,
"tests/integration/test_issue_1683.py::test_requirements_pex": 4.3241128850058885,
"tests/integration/test_issue_1726.py::test_check_install_issue_1726": 15.529556547990069,
"tests/integration/test_issue_1730.py::test_check_install_issue_1730": 9.684100223239511e-05,
"tests/integration/test_issue_1802.py::test_stderr_not_torn_down": 2.0521239709923975,
"tests/integration/test_issue_1809.py::test_excepthook_scrubbing": 8.233020876999944,
"tests/integration/test_issue_1817.py::test_sdist_for_project_universal": 10.588807538995752,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_native_extensions": 24.906538497001748,
"tests/integration/test_issue_1817.py::test_sdist_for_project_with_pep517_build": 228.59130565199303,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[VENV]": 1.6789297769864788,
"tests/integration/test_issue_1825.py::test_pex_run_extra_sys_path[ZIPAPP]": 4.391613191997749,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[fallback]": 1.902157917007571,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[false]": 2.362774855006137,
"tests/integration/test_issue_1825.py::test_pex_run_inherit_path_and_extra_sys_path[prefer]": 1.9820653029892128,
"tests/integration/test_issue_1856.py::test_os_name_spoofing": 0.9248607999907108,
"tests/integration/test_issue_1861.py::test_confounding_site_packages_directory": 5.905016881006304,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[fallback]": 3.502901992003899,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[false]": 4.5018005310121225,
"tests/integration/test_issue_1870.py::test_inherit_path_pex_info[prefer]": 3.746574724005768,
"tests/integration/test_issue_1872.py::test_pep_518_venv_pex_env_scrubbing": 31.935884858001373,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-.whl file]": 0.705453091984964,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-loose-installed wheel chroot]": 0.9162969459866872,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-.whl file]": 0.7626712140045129,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-packed-installed wheel chroot]": 0.7732995310070692,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-.whl file]": 0.9970658539823489,
"tests/integration/test_issue_1879.py::test_overwrite[loose-.whl file-zipapp-installed wheel chroot]": 0.8919948219845537,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-.whl file]": 0.75245199802157,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-loose-installed wheel chroot]": 0.995904151990544,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-.whl file]": 0.8494351229892345,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-packed-installed wheel chroot]": 0.808686342992587,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-.whl file]": 0.9463568050123286,
"tests/integration/test_issue_1879.py::test_overwrite[loose-installed wheel chroot-zipapp-installed wheel chroot]": 0.9233026580041042,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-.whl file]": 0.6991566920041805,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-loose-installed wheel chroot]": 0.890053668001201,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-.whl file]": 0.7860933559859404,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-packed-installed wheel chroot]": 0.8259891979832901,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-.whl file]": 0.8274890449974919,
"tests/integration/test_issue_1879.py::test_overwrite[packed-.whl file-zipapp-installed wheel chroot]": 0.7749272569926688,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-.whl file]": 0.7329422420152696,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-loose-installed wheel chroot]": 0.6896457100083353,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-.whl file]": 0.9100422469928162,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-packed-installed wheel chroot]": 0.7013500629982445,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-.whl file]": 0.8442600410198793,
"tests/integration/test_issue_1879.py::test_overwrite[packed-installed wheel chroot-zipapp-installed wheel chroot]": 0.8663594820100116,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-.whl file]": 0.8499503350030864,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-loose-installed wheel chroot]": 0.8944515889888862,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-.whl file]": 0.8920982769923285,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-packed-installed wheel chroot]": 1.0430463760130806,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-.whl file]": 0.9590300909912912,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-.whl file-zipapp-installed wheel chroot]": 0.8533620329835685,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-.whl file]": 1.0437617440038593,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-loose-installed wheel chroot]": 0.8792159229924437,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-.whl file]": 1.0085933560185367,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-packed-installed wheel chroot]": 1.1181440710060997,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-.whl file]": 0.9176710209867451,
"tests/integration/test_issue_1879.py::test_overwrite[zipapp-installed wheel chroot-zipapp-installed wheel chroot]": 1.1660270650027087,
"tests/integration/test_issue_1933.py::test_musllinux_wheels_resolved": 18.301826477996656,
"tests/integration/test_issue_1936.py::test_empty_pex_path": 5.4204673019849,
"tests/integration/test_issue_1949.py::test_resolve_arbitrary_equality": 7.020961442991393,
"tests/integration/test_issue_1995.py::test_packaging": 16.963979919979465,
"tests/integration/test_issue_2001.py::test_compile_error_as_warning": 2.9520507470006123,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[--sh-boot]": 4.403922063007485,
"tests/integration/test_issue_2006.py::test_symlink_preserved_in_argv0[__main__.py boot]": 4.557296464001411,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[20.3.4-patched]": 7.715805059022387,
"tests/integration/test_issue_2017.py::test_statically_linked_musl_libc_cpython_support[24.2]": 4.244377727998653,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-loose]": 4.522405594019801,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-packed]": 5.475783620000584,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-.whl file-zipapp]": 6.344851819012547,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-loose]": 3.0513340559991775,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-packed]": 4.67187041901343,
"tests/integration/test_issue_2023.py::test_unpack_robustness[UNZIP-installed wheel chroot-zipapp]": 4.934221985007753,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-loose]": 3.521973932001856,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-packed]": 4.225005486005102,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-.whl file-zipapp]": 4.2223180219880305,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-loose]": 3.051274209006806,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-packed]": 3.874511618996621,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (copies)-installed wheel chroot-zipapp]": 3.835783383998205,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-loose]": 3.1997498640121194,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-packed]": 4.019055659009609,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-.whl file-zipapp]": 3.9817730030044913,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-loose]": 2.9512803649849957,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-packed]": 3.862706143016112,
"tests/integration/test_issue_2023.py::test_unpack_robustness[VENV (symlinks)-installed wheel chroot-zipapp]": 3.6967710809985874,
"tests/integration/test_issue_2038.py::test_wheel_file_url_dep": 42.59131526699639,
"tests/integration/test_issue_2073.py::test_lock_create_foreign_platform_yolo_cross_build": 3.802453190990491,
"tests/integration/test_issue_2073.py::test_lock_resolve_foreign_platform_yolo_cross_build": 5.768278693998582,
"tests/integration/test_issue_2073.py::test_standard_resolve_foreign_platform_yolo_cross_build": 7.364043326000683,
"tests/integration/test_issue_2087.py::test_long_wheel_names": 4.312799545004964,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-loose]": 4.477637741001672,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-packed]": 4.99038398299308,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--no-venv-site-packages-copies-zipapp]": 5.25481773300271,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-loose]": 3.9497711280127987,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-packed]": 4.7058527230110485,
"tests/integration/test_issue_2088.py::test_venv_symlink_site_packages[--venv-site-packages-copies-zipapp]": 4.786925930995494,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_build_pex": 9.281859841998084,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_dist_failure_lock": 10.521293623009115,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_build_pex": 1.016266550985165,
"tests/integration/test_issue_2113.py::test_metadata_gen_from_local_project_failure_lock": 1.0828845899814041,
"tests/integration/test_issue_2134.py::test_add_module_in_package": 0.4870002300158376,
"tests/integration/test_issue_2134.py::test_add_module_offset": 0.48962413298431784,
"tests/integration/test_issue_2134.py::test_add_package_offset": 0.4933331390056992,
"tests/integration/test_issue_2134.py::test_add_sub_package": 0.5458336740121013,
"tests/integration/test_issue_2134.py::test_add_sub_package_mixed": 0.4830908339936286,
"tests/integration/test_issue_2134.py::test_add_sub_package_pep_420": 0.4578728279884672,
"tests/integration/test_issue_2134.py::test_add_top_level_module": 0.5114865659998031,
"tests/integration/test_issue_2134.py::test_add_top_level_package": 0.5284715330053587,
"tests/integration/test_issue_2134.py::test_overlap": 0.423609502002364,
"tests/integration/test_issue_2183.py::test_lambdex_with_incompatible_attrs": 6.11335183600022,
"tests/integration/test_issue_2186.py::test_default_resolve_no_warning": 1.726098651997745,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_error": 0.00015203299699351192,
"tests/integration/test_issue_2186.py::test_incompatible_resolve_warning": 8.902400441002101e-05,
"tests/integration/test_issue_2203.py::test_read_only_venv": 20.0878226729983,
"tests/integration/test_issue_2235.py::test_standard_library_is_included": 3.1663097830023617,
"tests/integration/test_issue_2249.py::test_inspect[PEX-SH_BOOT]": 3.5723463079921203,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV-SH_BOOT]": 1.618510567001067,
"tests/integration/test_issue_2249.py::test_inspect[PEX-VENV]": 2.3877309689851245,
"tests/integration/test_issue_2249.py::test_inspect[PEX-ZIPAPP]": 4.387883780000266,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-SH_BOOT]": 8.667028277006466,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV-SH_BOOT]": 8.179471189025207,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-VENV]": 8.629043110995553,
"tests/integration/test_issue_2249.py::test_inspect[SCIE-ZIPAPP]": 8.013585303007858,
"tests/integration/test_issue_2324.py::test_update_sdists_not_updated": 5.643388844997389,
"tests/integration/test_issue_2343.py::test_no_build_no_wheel_honored_pex": 11.471781960004591,
"tests/integration/test_issue_2343.py::test_only_build_honored_lock": 4.016305490993545,
"tests/integration/test_issue_2343.py::test_only_build_honored_pex": 2.6989130809961352,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_lock": 1.7809708709828556,
"tests/integration/test_issue_2343.py::test_only_wheel_honored_pex": 2.72093620900705,
"tests/integration/test_issue_2348.py::test_find_links_url_escaping": 42.955481543016504,
"tests/integration/test_issue_2355.py::test_ssl_context": 11.689079782008776,
"tests/integration/test_issue_2389.py::test_lock_use_no_build_wheel": 4.552432504002354,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-loose]": 6.01943996900809,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-packed]": 5.690735983007471,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[loose-zipapp]": 5.8444605479890015,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-loose]": 6.429723036009818,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-packed]": 7.48042353100027,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[packed-zipapp]": 6.25400163399172,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-loose]": 6.683320315001765,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-packed]": 6.279740190992015,
"tests/integration/test_issue_2391.py::test_requirements_pex_wheel_type_mismatch[zipapp-zipapp]": 6.722019246997661,
"tests/integration/test_issue_2395.py::test_download_incompatible_python": 9.603197498028749,
"tests/integration/test_issue_2410.py::test_pex_with_editable": 2.919547033015988,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_exact": 32.19315988100425,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock": 36.071065677009756,
"tests/integration/test_issue_2412.py::test_bdist_pex_locked_issue_2412_repro_pex_lock_inlined_requirements": 40.16567575899535,
"tests/integration/test_issue_2413.py::test_bdist_pex_under_tox": 17.397162353998283,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:no]": 0.29171444701205473,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:upgraded]": 6.248605751985451,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:no-pip:yes]": 4.418835331001901,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:no]": 0.0008826979901641607,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:upgraded]": 8.228071655001258,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:upgraded-pip:yes]": 7.222712314018281,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:no]": 0.001797573990188539,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:upgraded]": 6.0129981599748135,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:no-setuptools:yes-pip:yes]": 4.660316693014465,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:no]": 0.0006732080219080672,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:upgraded]": 6.405387190985493,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:no-pip:yes]": 5.44326790899504,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:no]": 0.0007400169997708872,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:upgraded]": 7.897258871991653,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:upgraded-pip:yes]": 6.701133946990012,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:no]": 0.0011340350029058754,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:upgraded]": 6.354636801013839,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:upgraded-setuptools:yes-pip:yes]": 5.337469103993499,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:no]": 0.0010253729997202754,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:upgraded]": 6.6979608809924684,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:no-pip:yes]": 5.137198366981465,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:no]": 0.0010941049986286089,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:upgraded]": 8.23218937999627,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:upgraded-pip:yes]": 7.314075671005412,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:no]": 0.001690921009867452,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:upgraded]": 6.876331556995865,
"tests/integration/test_issue_2413.py::test_venv_with_installs[wheel:yes-setuptools:yes-pip:yes]": 5.479520505978144,
"tests/integration/test_issue_2415.py::test_gevent_monkeypatch": 11.915143805992557,
"tests/integration/test_issue_2432.py::test_lock_use_no_build_wheel": 6.670450739009539,
"tests/integration/test_issue_2441.py::test_invalid_metadata_error_messages_under_old_pip": 1.3164652100094827,
"tests/integration/test_issue_2572.py::test_symlinked_home": 7.681798290985171,
"tests/integration/test_issue_2739.py::test_tar_bz2": 8.212734877000912,
"tests/integration/test_issue_298.py::test_confounding_encoding": 1.6493751700036228,
"tests/integration/test_issue_434.py::test_entry_point_targeting": 3.7908132759912405,
"tests/integration/test_issue_455.py::test_exclude": 13.077578237003763,
"tests/integration/test_issue_539.py::test_abi3_resolution": 8.876400534063578e-05,
"tests/integration/test_issue_598.py::test_force_local_implicit_ns_packages": 2.2343010819895426,
"tests/integration/test_issue_661.py::test_devendoring_required": 4.249795373994857,
"tests/integration/test_issue_729.py::test_undeclared_setuptools_import_on_pex_path": 16.854094269001507,
"tests/integration/test_issue_736.py::test_requirement_setup_py_with_extras": 3.8590615059947595,
"tests/integration/test_issue_745.py::test_extras_isolation": 9.813168584005325,
"tests/integration/test_issue_749.py::test_pkg_resource_early_import_on_pex_path": 5.244767912998213,
"tests/integration/test_issue_898.py::test_top_level_requirements_requires_python_env_markers": 3.0659248219890287,
"tests/integration/test_issue_899.py::test_top_level_environment_markers": 2.5588299200171605,
"tests/integration/test_issue_940.py::test_resolve_arbitrary_equality": 8.350522356995498,
"tests/integration/test_issue_996.py::test_resolve_local_platform": 7.67880215299374,
"tests/integration/test_keyring_support.py::test_import_provider[23.1.1]": 12.198856544986484,
"tests/integration/test_keyring_support.py::test_import_provider[23.1.2]": 13.345154442024068,
"tests/integration/test_keyring_support.py::test_import_provider[23.1]": 12.351840274990536,
"tests/integration/test_keyring_support.py::test_import_provider[23.2]": 12.879415656017954,
"tests/integration/test_keyring_support.py::test_import_provider[23.3.1]": 13.076769193998189,
"tests/integration/test_keyring_support.py::test_import_provider[23.3.2]": 12.856388254003832,
"tests/integration/test_keyring_support.py::test_import_provider[24.0]": 12.558537017001072,
"tests/integration/test_keyring_support.py::test_import_provider[24.1.1]": 11.742247344023781,
"tests/integration/test_keyring_support.py::test_import_provider[24.1.2]": 11.661238510976546,
"tests/integration/test_keyring_support.py::test_import_provider[24.1]": 12.286003869012347,
"tests/integration/test_keyring_support.py::test_import_provider[24.2]": 11.701894106983673,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1.1]": 9.153808850998757,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1.2]": 9.420146391988965,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.1]": 9.981712830020115,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.2]": 18.535700186010217,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.3.1]": 9.125959218014032,
"tests/integration/test_keyring_support.py::test_subprocess_provider[23.3.2]": 9.466933220988722,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.0]": 9.820031672003097,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1.1]": 9.055745920006302,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1.2]": 9.492941552001867,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.1]": 9.649893673995393,
"tests/integration/test_keyring_support.py::test_subprocess_provider[24.2]": 9.283296934998361,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-PEX]": 6.1199031740106875,
"tests/integration/test_layout.py::test_resiliency[.whl file-loose-VENV]": 5.4260737230069935,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-PEX]": 7.285379470980843,
"tests/integration/test_layout.py::test_resiliency[.whl file-packed-VENV]": 5.5469234570045955,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-PEX]": 7.950648756988812,
"tests/integration/test_layout.py::test_resiliency[.whl file-zipapp-VENV]": 5.5509857469878625,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-PEX]": 5.165448472005664,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-loose-VENV]": 4.560632492997684,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-PEX]": 7.535045181008172,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-packed-VENV]": 5.5828514249878936,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-PEX]": 9.187649088009493,
"tests/integration/test_layout.py::test_resiliency[installed wheel chroot-zipapp-VENV]": 5.517118206014857,
"tests/integration/test_lock_resolver.py::test_corrupt_artifact": 5.679771339986473,
"tests/integration/test_lock_resolver.py::test_empty_lock_issue_1659": 1.3959774429968093,
"tests/integration/test_lock_resolver.py::test_issue_1413_portable_find_links": 7.2397839140030555,
"tests/integration/test_lock_resolver.py::test_issue_1717_transitive_extras": 14.804964331997326,
"tests/integration/test_lock_resolver.py::test_multiplatform": 7.071355916981702,
"tests/integration/test_lock_resolver.py::test_resolve_wheel_files": 3.5970621480082627,
"tests/integration/test_lock_resolver.py::test_strict_basic": 2.2758608120057033,
"tests/integration/test_lock_resolver.py::test_subset": 1.2306564280006569,
"tests/integration/test_lock_resolver.py::test_unavailable_artifacts": 4.604437574991607,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-no-transitive-deps]": 0.9469737479957985,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-float-transitive-deps]": 1.5408275060035521,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-no-transitive-deps]": 1.0523396820062771,
"tests/integration/test_locked_resolve.py::test_lock_single_target[sources-pinned-transitive-deps]": 1.215741161009646,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-no-transitive-deps]": 1.0735831790079828,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-float-transitive-deps]": 1.4167408749926835,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-no-transitive-deps]": 1.1253781669802265,
"tests/integration/test_locked_resolve.py::test_lock_single_target[strict-pinned-transitive-deps]": 1.2863886740087764,
"tests/integration/test_no_pre_install_wheels.py::test_no_pre_install_wheels": 2.0816812670091167,
"tests/integration/test_overrides.py::test_illegal_override": 1.336228399988613,
"tests/integration/test_overrides.py::test_lock_sync_override": 13.201098589997855,
"tests/integration/test_overrides.py::test_override": 2.1833032489957986,
"tests/integration/test_overrides.py::test_pex_repository_override": 2.7077246400003787,
"tests/integration/test_overrides.py::test_pre_resolved_dists_override": 4.187362876007683,
"tests/integration/test_pep_427.py::test_install_scripts": 1.037987499992596,
"tests/integration/test_pep_427.py::test_install_wheel_interpreter": 6.677190578004229,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_ic_min_compatible_build_time_hole": 2.452388495003106,
"tests/integration/test_pex_bootstrapper.py::test_boot_compatible_issue_1020_no_ic": 4.941386052014423,
"tests/integration/test_pex_bootstrapper.py::test_boot_resolve_fail": 2.014431939998758,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_namespace_packages": 5.848931553991861,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_short_link": 13.331294487012201,
"tests/integration/test_pex_bootstrapper.py::test_ensure_venv_site_packages_copies": 5.829976917011663,
"tests/integration/test_pex_entry_points.py::test_entry_point": 4.115402875992004,
"tests/integration/test_pex_entry_points.py::test_executable": 1.4275658990081865,
"tests/integration/test_pex_entry_points.py::test_script": 7.230459461017745,
"tests/integration/test_pex_entry_points.py::test_style_mutex": 1.1478024270036258,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-loose]": 12.904033027007245,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-packed]": 14.868739750992972,
"tests/integration/test_pex_import.py::test_import_from_pex[UNZIPPED-zipapp]": 15.89048591098981,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-loose]": 12.85190617799526,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-packed]": 16.222284925999702,
"tests/integration/test_pex_import.py::test_import_from_pex[VENV-zipapp]": 17.760682136009564,
"tests/integration/test_reexec.py::test_pex_no_reexec_constraints_match_current": 1.7561272210150491,
"tests/integration/test_reexec.py::test_pex_no_reexec_no_constraints": 1.3189553049887763,
"tests/integration/test_reexec.py::test_pex_re_exec_failure": 0.00019869599782396108,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python": 1.827802840998629,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path": 1.6316955649817828,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_dont_match_current_pex_python_path_min_py_version_selected": 1.5441345559956972,
"tests/integration/test_reexec.py::test_pex_reexec_constraints_match_current_pythonpath_present": 1.6901425370015204,
"tests/integration/test_reexec.py::test_pex_reexec_no_constraints_pythonpath_present": 1.444959374013706,
"tests/integration/test_reproducible.py::test_reproducible_build_bdist_requirements": 8.502700075041503e-05,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_dependency": 21.10360165599559,
"tests/integration/test_reproducible.py::test_reproducible_build_c_flag_from_source": 17.23855171899777,
"tests/integration/test_reproducible.py::test_reproducible_build_m_flag": 9.779539025985287,
"tests/integration/test_reproducible.py::test_reproducible_build_no_args": 9.641876164008863,
"tests/integration/test_reproducible.py::test_reproducible_build_python_flag": 9.397970966994762,
"tests/integration/test_reproducible.py::test_reproducible_build_python_shebang_flag": 6.849328587006312,
"tests/integration/test_reproducible.py::test_reproducible_build_sdist_requirements": 18.790721577985096,
"tests/integration/test_script_metadata.py::test_dependencies_additive": 3.2820871160074603,
"tests/integration/test_script_metadata.py::test_dependencies_conflicting": 1.08831107300648,
"tests/integration/test_script_metadata.py::test_no_script_metadata": 2.550529210973764,
"tests/integration/test_script_metadata.py::test_nominal": 9.777173192007467,
"tests/integration/test_script_metadata.py::test_targets_additive": 3.184749127001851,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-UNZIP]": 2.838410070995451,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-loose-VENV]": 4.415502080009901,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-UNZIP]": 3.3673114020057255,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-packed-VENV]": 3.288231728001847,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-UNZIP]": 3.368838577021961,
"tests/integration/test_setproctitle.py::test_setproctitle[.whl file-zipapp-VENV]": 3.43904971498705,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-UNZIP]": 2.68261443101801,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-loose-VENV]": 3.0109822360100225,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-UNZIP]": 3.3236155540071195,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-packed-VENV]": 3.102067387997522,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-UNZIP]": 3.696723364992067,
"tests/integration/test_setproctitle.py::test_setproctitle[installed wheel chroot-zipapp-VENV]": 3.4736114340194035,
"tests/integration/test_sh_boot.py::test_argv0[VENV (--sh-boot)]": 3.246499765999033,
"tests/integration/test_sh_boot.py::test_argv0[VENV]": 1.2235276860010345,
"tests/integration/test_sh_boot.py::test_argv0[ZIPAPP (--sh-boot)]": 2.3486668260011356,
"tests/integration/test_sh_boot.py::test_argv0[ZIPAPP]": 2.8629880609951215,
"tests/integration/test_sh_boot.py::test_execute[venv]": 1.6235166619881056,
"tests/integration/test_sh_boot.py::test_execute[zipapp]": 2.0095903529872885,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[bash]": 1.8061738060059724,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[dash]": 1.8068131629843265,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python2.7]": 1.819804637998459,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.10]": 1.5959648569987621,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.8]": 1.619398656010162,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python3.9]": 1.5693427859951044,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[python]": 2.180577410996193,
"tests/integration/test_sh_boot.py::test_execute_via_interpreter[sh]": 1.8719342069962295,
"tests/integration/test_sh_boot.py::test_issue_1782[VENV (--sh-boot)]": 12.92540695000207,
"tests/integration/test_sh_boot.py::test_issue_1782[VENV]": 12.696209228990483,
"tests/integration/test_sh_boot.py::test_issue_1782[ZIPAPP (--sh-boot)]": 13.571664176997729,
"tests/integration/test_sh_boot.py::test_issue_1782[ZIPAPP]": 15.453747384992312,
"tests/integration/test_sh_boot.py::test_issue_1881[venv]": 2.428625329004717,
"tests/integration/test_sh_boot.py::test_issue_1881[zipapp]": 3.397344596014591,
"tests/integration/test_sh_boot.py::test_python_shebang_respected": 1.0351985519955633,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_lock_local_project": 9.912903463002294,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_buildtime_resolve": 3.905733503997908,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV (--sh-boot)]": 1.4393414259975543,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[VENV]": 1.484356361994287,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP (--sh-boot)]": 2.8972429349960294,
"tests/integration/test_shebang_length_limit.py::test_shebang_length_limit_runtime[ZIPAPP]": 3.7756000390072586,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-NoStripPexEnv]": 1.719250390000525,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-loose-StripPexEnv]": 1.6773791240120772,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-NoStripPexEnv]": 2.0018180520128226,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-packed-StripPexEnv]": 1.9899582040088717,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-NoStripPexEnv]": 2.483010739000747,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[UNZIP-zipapp-StripPexEnv]": 2.3731760490190936,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-NoStripPexEnv]": 1.0903148369980045,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-loose-StripPexEnv]": 1.1744743960007327,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-NoStripPexEnv]": 1.7212618570047198,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-packed-StripPexEnv]": 2.1364135280018672,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-NoStripPexEnv]": 1.5863949620106723,
"tests/integration/test_variables.py::test_pex_variable_always_defined_at_runtime[VENV-zipapp-StripPexEnv]": 1.6235491449915571,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_empty_pex": 10.582414071002859,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_both_conflict": 19.26324064900109,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_no_conflicts": 8.050992246993701,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_pip_conflict": 16.83759156402084,
"tests/integration/tools/commands/test_issue_2105.py::test_pip_pex_setuptools_conflict": 14.340019237992237,
"tests/integration/tools/commands/test_venv.py::test_collisions": 6.557057439989876,
"tests/integration/tools/commands/test_venv.py::test_collisions_mergeable_issue_1570": 6.067431335002766,
"tests/integration/tools/commands/test_venv.py::test_non_hermetic_issue_2004": 6.357180469989544,
"tests/integration/tools/commands/test_venv.py::test_scope_issue_1631": 9.222698547979235,
"tests/integration/tools/commands/test_venv.py::test_site_packages_copies": 5.794635067999479,
"tests/integration/venv_ITs/test_install_wheel_multiple_site_packages_dirs.py::test_installed_wheels": 21.727880960985203,
"tests/integration/venv_ITs/test_install_wheel_multiple_site_packages_dirs.py::test_wheel_files": 18.445107940991875,
"tests/integration/venv_ITs/test_issue_1630.py::test_data_files": 8.844805089014699,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_conflicting": 11.343006775001413,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[venv (site-packages copies)]": 8.917600038010278,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[venv (site-packages symlinks)]": 8.620451177004725,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_collision_non_conflicting[zipapp]": 9.411977854993893,
"tests/integration/venv_ITs/test_issue_1637.py::test_pex_path_dedup": 8.966653522991692,
"tests/integration/venv_ITs/test_issue_1641.py::test_missing_data_dir_entries[venv (site-packages copies)]": 7.200900290627033e-05,
"tests/integration/venv_ITs/test_issue_1641.py::test_missing_data_dir_entries[zipapp]": 7.299099524971098e-05,
"tests/integration/venv_ITs/test_issue_1668.py::test_venv_runtime_env_vars_ignored_during_create_nested": 15.212557939987164,
"tests/integration/venv_ITs/test_issue_1668.py::test_venv_runtime_env_vars_ignored_during_create_top_level": 16.13851514500857,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[- (<code> from STDIN)-VENV]": 1.2138704010139918,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[- (<code> from STDIN)-ZIPAPP]": 3.173725950997323,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-c <code>-VENV]": 1.233140563010238,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-c <code>-ZIPAPP]": 3.2307576530147344,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-m <module>-VENV]": 1.2626200079976115,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[-m <module>-ZIPAPP]": 3.2085399179923115,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<dir>-VENV]": 1.2624232539965305,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<dir>-ZIPAPP]": 3.176346595020732,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<python file>-VENV]": 1.2681123089860193,
"tests/integration/venv_ITs/test_issue_1745.py::test_interpreter_mode_python_options[<python file>-ZIPAPP]": 3.2123693979956442,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_pex3_venv": 4.965455817000475,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_pex_tools": 5.299076140014222,
"tests/integration/venv_ITs/test_issue_1973.py::test_system_site_packages_venv_pex": 6.891706980022718,
"tests/integration/venv_ITs/test_issue_2065.py::test_venv_pex_script_non_hermetic[--sh-boot]": 7.6084600430040155,
"tests/integration/venv_ITs/test_issue_2065.py::test_venv_pex_script_non_hermetic[__main__.py boot]": 7.348453400991275,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-venv (site-packages copies)]": 7.197837526007788,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-venv (site-packages symlinks)]": 7.327250841000932,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[loose-zipapp]": 7.332684639011859,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-venv (site-packages copies)]": 7.787852035005926,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-venv (site-packages symlinks)]": 7.867554689000826,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[packed-zipapp]": 8.159660550008994,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-venv (site-packages copies)]": 7.769812603990431,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-venv (site-packages symlinks)]": 7.800440921986592,
"tests/integration/venv_ITs/test_issue_2160.py::test_ns_package_split_across_sources_and_deps[zipapp-zipapp]": 8.0998170679959,
"tests/integration/venv_ITs/test_issue_2248.py::test_repl_python_options[VENV]": 3.342684092000127,
"tests/integration/venv_ITs/test_issue_2248.py::test_repl_python_options[ZIPAPP]": 5.174150077000377,
"tests/integration/venv_ITs/test_virtualenv.py::test_enclosing": 0.2397804410138633,
"tests/integration/venv_ITs/test_virtualenv.py::test_invalid": 0.21413205498538446,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions[2.7.18]": 5.550269977000426,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions[3.10.7]": 5.308575237984769,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions[3.8.10]": 6.762847296980908,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions[3.9.13]": 5.462821198991151,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions_setuptools_not_leaked": 0.2303111780056497,
"tests/integration/venv_ITs/test_virtualenv.py::test_iter_distributions_spaces": 3.7299606969900196,
"tests/integration/venv_ITs/test_virtualenv.py::test_multiple_site_packages_dirs": 6.668610388005618
}