forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
macOS.json
2005 lines (2005 loc) · 182 KB
/
macOS.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"conda/auxlib/__init__.py::_Null:0": 0.009226347113002182,
"conda/auxlib/collection.py::AttrDict:0": 0.006492393904243816,
"conda/auxlib/collection.py::first:0": 0.0034505029362647674,
"conda/auxlib/ish.py::find_or_none:0": 0.004647830063478262,
"conda/auxlib/type_coercion.py::boolify:0": 0.003603446345345229,
"conda/auxlib/type_coercion.py::listify:0": 0.003887108305822301,
"conda/auxlib/type_coercion.py::numberify:0": 0.004523040839590185,
"conda/auxlib/type_coercion.py::typify:0": 0.004374262831254658,
"conda/cli/python_api.py::run_command:0": 29.522854949379383,
"conda/common/path.py::ensure_pad:0": 0.0031249001854746846,
"conda/common/path.py::is_package_file:0": 0.003398097887018268,
"conda/common/path.py::is_private_env_name:0": 0.0028759099190737145,
"conda/common/path.py::is_private_env_path:0": 0.0026479571825898675,
"conda/common/path.py::paths_equal:0": 0.003976919064764417,
"conda/common/path.py::strip_pkg_extension:0": 0.0028015534776334437,
"conda/common/serialize.py::yaml_safe_load:0": 0.00400727884335144,
"conda/common/signals.py::get_signal_name:0": 0.003222024127930384,
"conda/common/url.py::is_ip_address:0": 0.0017107090529400256,
"conda/common/url.py::is_ipv4_address:0": 0.0032418851542678267,
"conda/common/url.py::is_ipv6_address:0": 0.0015905357345293602,
"conda/common/url.py::is_url:0": 0.0033361633440715617,
"conda/common/url.py::maybe_add_auth:0": 0.0030936894759304285,
"conda/common/url.py::split_anaconda_token:0": 0.004219686225566463,
"conda/common/url.py::split_platform:0": 0.0052752113528721665,
"conda/common/url.py::split_scheme_auth_token:0": 0.002908094656685094,
"conda/common/url.py::strip_scheme:0": 0.0030018675733051374,
"conda/common/url.py::url_to_s3_info:0": 0.003827281671757802,
"conda/gateways/connection/adapters/ftp.py::get_status_code_from_code_response:0": 0.0029191819816310137,
"conda/gateways/disk/update.py::rename_context:0": 0.0019061067620138531,
"conda/lock.py::touch:0": 0.0034245497720361362,
"conda/models/match_spec.py::MatchSpec:0": 0.0057210021536593094,
"conda/models/match_spec.py::_parse_legacy_dist:0": 0.003075516849301505,
"conda/models/match_spec.py::_parse_version_plus_build:0": 0.0038806661831342778,
"conda/models/version.py::VersionOrder:0": 0.0013682671779977776,
"conda/models/version.py::treeify:0": 0.00327299302186839,
"conda/models/version.py::untreeify:0": 0.0031371156811613467,
"conda/plugins/hookspec.py::CondaSpecs.conda_solvers:0": 0.001806135908887198,
"conda/plugins/hookspec.py::CondaSpecs.conda_subcommands:0": 0.0006632800525967486,
"conda/plugins/hookspec.py::CondaSpecs.conda_virtual_packages:0": 0.0012844582281699604,
"conda/utils.py::human_bytes:0": 0.013832247396585274,
"tests/base/test_constants.py::test_ChannelPriority": 0.002730716608553195,
"tests/base/test_constants.py::test_null_is_falsey": 0.0029171178446711346,
"tests/base/test_context.py::ContextCustomRcTests::test_aggressive_update_packages": 0.03353878495520021,
"tests/base/test_context.py::ContextCustomRcTests::test_channel_priority": 0.021643149071920033,
"tests/base/test_context.py::ContextCustomRcTests::test_channel_settings": 0.03002641034906627,
"tests/base/test_context.py::ContextCustomRcTests::test_channels_defaults": 0.021880772728611178,
"tests/base/test_context.py::ContextCustomRcTests::test_channels_defaults_condarc": 0.02814009943166574,
"tests/base/test_context.py::ContextCustomRcTests::test_client_ssl_cert": 0.038551066790058194,
"tests/base/test_context.py::ContextCustomRcTests::test_clobber_enum": 0.03383086232315018,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_bld_path": 0.04185146299650659,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_build_root_dir": 0.024750871853983804,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_envs_path": 0.051681191901312304,
"tests/base/test_context.py::ContextCustomRcTests::test_context_parameter_map": 0.029281095707690837,
"tests/base/test_context.py::ContextCustomRcTests::test_context_parameters_have_descriptions": 0.058136802932521,
"tests/base/test_context.py::ContextCustomRcTests::test_custom_multichannels": 0.025902431283940937,
"tests/base/test_context.py::ContextCustomRcTests::test_default_target_is_root_prefix": 0.026529299661607986,
"tests/base/test_context.py::ContextCustomRcTests::test_expandvars": 0.07757164581741381,
"tests/base/test_context.py::ContextCustomRcTests::test_local_build_root_custom_rc": 0.027156922629348972,
"tests/base/test_context.py::ContextCustomRcTests::test_migrated_custom_channels": 0.027994728323474542,
"tests/base/test_context.py::ContextCustomRcTests::test_old_channel_alias": 0.0324624605525447,
"tests/base/test_context.py::ContextCustomRcTests::test_proxy_servers": 0.03370372954201293,
"tests/base/test_context.py::ContextCustomRcTests::test_restore_free_channel": 0.03527097897396036,
"tests/base/test_context.py::ContextCustomRcTests::test_signing_metadata_url_base": 0.04228889782108338,
"tests/base/test_context.py::ContextCustomRcTests::test_signing_metadata_url_base_empty_default_channels": 0.043521260243776026,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_channels_cli_adding_defaults_no_condarc": 0.03434992347187899,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_channels_cli_condarc": 0.03149584301108734,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_different_channels_cli_condarc": 0.03248911013328018,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_same_channels_cli_as_in_condarc": 0.032621427647456694,
"tests/base/test_context.py::ContextCustomRcTests::test_target_prefix": 0.054451332765662955,
"tests/base/test_context.py::ContextCustomRcTests::test_threads": 0.03272663270917768,
"tests/base/test_context.py::ContextDefaultRcTests::test_local_build_root_default_rc": 0.0017804115558085714,
"tests/base/test_context.py::ContextDefaultRcTests::test_subdirs": 0.0030454161143858645,
"tests/base/test_context.py::test_aggressive_update_packages": 0.05815984954335297,
"tests/base/test_context.py::test_channel_priority": 0.05759806489774121,
"tests/base/test_context.py::test_channel_settings": 0.05654845675787772,
"tests/base/test_context.py::test_channels_defaults": 0.05495437136197027,
"tests/base/test_context.py::test_channels_defaults_condarc": 0.05645986152326762,
"tests/base/test_context.py::test_client_ssl_cert": 0.09386550957474589,
"tests/base/test_context.py::test_clobber_enum": 0.05287915007295671,
"tests/base/test_context.py::test_conda_bld_path": 0.08097304409078025,
"tests/base/test_context.py::test_conda_build_root_dir": 0.05639554141543708,
"tests/base/test_context.py::test_conda_envs_path": 0.10303268951099787,
"tests/base/test_context.py::test_context_parameter_map": 0.05313881043891866,
"tests/base/test_context.py::test_context_parameters_have_descriptions": 0.12395583968958544,
"tests/base/test_context.py::test_custom_multichannels": 0.06071668750681122,
"tests/base/test_context.py::test_default_target_is_root_prefix": 0.057769947014482605,
"tests/base/test_context.py::test_expandvars": 0.14256955196582324,
"tests/base/test_context.py::test_local_build_root_custom_rc": 0.05778261468795479,
"tests/base/test_context.py::test_local_build_root_default_rc": 0.025736267340871692,
"tests/base/test_context.py::test_migrated_custom_channels": 0.06848608008257173,
"tests/base/test_context.py::test_old_channel_alias": 0.05546958243209242,
"tests/base/test_context.py::test_proxy_servers": 0.05436981094903274,
"tests/base/test_context.py::test_restore_free_channel": 0.06782814110443079,
"tests/base/test_context.py::test_signing_metadata_url_base": 0.09153936436352761,
"tests/base/test_context.py::test_signing_metadata_url_base_empty_default_channels": 0.0842497829749058,
"tests/base/test_context.py::test_specify_channels_cli_adding_defaults_no_condarc": 0.05693417273456443,
"tests/base/test_context.py::test_specify_channels_cli_condarc": 0.058017702479652364,
"tests/base/test_context.py::test_specify_different_channels_cli_condarc": 0.06072453652463102,
"tests/base/test_context.py::test_specify_same_channels_cli_as_in_condarc": 0.059058026066831006,
"tests/base/test_context.py::test_subdirs": 0.004493737514666314,
"tests/base/test_context.py::test_target_prefix": 0.12050561312709607,
"tests/base/test_context.py::test_threads": 0.06392861173140964,
"tests/base/test_context.py::test_validate_prefix_name[base-False-mock_return_values2-expected2]": 0.004778731911222233,
"tests/base/test_context.py::test_validate_prefix_name[env-name-False-mock_return_values0-expected0]": 0.006029991685714133,
"tests/base/test_context.py::test_validate_prefix_name[not/allow#characters:in-path-False-mock_return_values1-expected1]": 0.005143333147159321,
"tests/cli/test_cli_install.py::test_find_conflicts_called_once": 46.20084137587791,
"tests/cli/test_cli_install.py::test_pre_link_message": 10.191218619997542,
"tests/cli/test_common.py::test_always_yes": 0.0005367984816311187,
"tests/cli/test_common.py::test_check_non_admin_enabled_false": 0.005234879699671071,
"tests/cli/test_common.py::test_check_non_admin_enabled_true": 0.005088009746470966,
"tests/cli/test_common.py::test_confirm_dry_run_exit": 0.004666282339982938,
"tests/cli/test_common.py::test_confirm_yn_always_yes": 0.0040805336440067124,
"tests/cli/test_common.py::test_confirm_yn_dry_run_exit": 0.005454254787660938,
"tests/cli/test_common.py::test_confirm_yn_no": 0.005985505462010554,
"tests/cli/test_common.py::test_confirm_yn_yes": 0.0045293084368881135,
"tests/cli/test_common.py::test_dry_run_exit": 0.0003979870456432671,
"tests/cli/test_common.py::test_is_active_prefix[-False]": 0.004118291028288678,
"tests/cli/test_common.py::test_is_active_prefix[active_prefix-True]": 0.0023674222356888735,
"tests/cli/test_conda_argparse.py::test_cli_args_as_list": 0.0920231897234435,
"tests/cli/test_conda_argparse.py::test_cli_args_as_strings": 0.11985666979974892,
"tests/cli/test_conda_argparse.py::test_list_through_python_api": 3.928796699200981,
"tests/cli/test_conda_argparse.py::test_parser_basics": 0.04242739810799095,
"tests/cli/test_config.py::test_add_invalid_key": 0.105099322312924,
"tests/cli/test_config.py::test_add_key": 0.1254639199932238,
"tests/cli/test_config.py::test_channels_add_duplicate": 0.12545853591397407,
"tests/cli/test_config.py::test_channels_add_empty": 0.12261937081815044,
"tests/cli/test_config.py::test_channels_add_empty_with_defaults": 0.10638707169374156,
"tests/cli/test_config.py::test_channels_append": 0.13050961535968514,
"tests/cli/test_config.py::test_channels_append_duplicate": 0.1353116733810231,
"tests/cli/test_config.py::test_channels_prepend": 0.12452970063229044,
"tests/cli/test_config.py::test_channels_prepend_duplicate": 0.13220801388597775,
"tests/cli/test_config.py::test_channels_remove": 0.12736631677769,
"tests/cli/test_config.py::test_channels_remove_duplicate": 0.2103273082410924,
"tests/cli/test_config.py::test_create_condarc_on_set": 0.11412457826798039,
"tests/cli/test_config.py::test_custom_multichannels_add": 0.11201344022823563,
"tests/cli/test_config.py::test_custom_multichannels_add_duplicate": 0.11820467972075532,
"tests/cli/test_config.py::test_custom_multichannels_append": 0.10276164321295715,
"tests/cli/test_config.py::test_custom_multichannels_append_duplicate": 0.12642133855678944,
"tests/cli/test_config.py::test_custom_multichannels_prepend": 0.11139149827760053,
"tests/cli/test_config.py::test_custom_multichannels_prepend_duplicate": 0.12053622913208877,
"tests/cli/test_config.py::test_get_all": 0.1322400050406562,
"tests/cli/test_config.py::test_get_all_inc_maps": 0.13933396109679214,
"tests/cli/test_config.py::test_get_boolean_value": 0.125316841153193,
"tests/cli/test_config.py::test_get_channels_list": 0.12305408009783879,
"tests/cli/test_config.py::test_get_invalid_key": 0.11933088234874202,
"tests/cli/test_config.py::test_get_map_full": 0.13498943182558526,
"tests/cli/test_config.py::test_get_map_subkey[conda_build.cache_dir-/tmp/conda-bld]": 0.1277548973191662,
"tests/cli/test_config.py::test_get_map_subkey[proxy_servers.http-1.2.3.4:5678]": 0.12326425156726535,
"tests/cli/test_config.py::test_get_multiple_keys": 0.1256950767801139,
"tests/cli/test_config.py::test_get_multiple_keys_incl_map_full": 0.13694155371883496,
"tests/cli/test_config.py::test_get_multiple_keys_incl_map_subkey": 0.13217694027051796,
"tests/cli/test_config.py::test_get_string_value": 0.1328619136149152,
"tests/cli/test_config.py::test_get_unconfigured_key": 0.12229171717081849,
"tests/cli/test_config.py::test_invalid_yaml": 0.10279039974597201,
"tests/cli/test_config.py::test_remove_key": 0.1225453282012007,
"tests/cli/test_config.py::test_remove_key_duplicate": 0.20437333753614398,
"tests/cli/test_config.py::test_remove_unconfigured_key": 0.11530669908371642,
"tests/cli/test_config.py::test_set_and_get_bool": 0.21589709881687624,
"tests/cli/test_config.py::test_set_check_types[always_yes-false-False]": 0.1050949980778102,
"tests/cli/test_config.py::test_set_check_types[always_yes-no-False]": 0.10971222089270162,
"tests/cli/test_config.py::test_set_check_types[always_yes-true-True]": 0.11463117751250541,
"tests/cli/test_config.py::test_set_check_types[always_yes-yes-True]": 0.1107013840296928,
"tests/cli/test_config.py::test_set_check_types[channel_alias-https://repo.example.com-https://repo.example.com]": 0.10600376339714364,
"tests/cli/test_config.py::test_set_check_types[proxy_servers.http-1.2.3.4:5678-py_value5]": 0.10949873070432387,
"tests/cli/test_config.py::test_set_invalid_key": 0.11009362614233092,
"tests/cli/test_config.py::test_set_key": 0.12062896931524418,
"tests/cli/test_config.py::test_set_map_key[conda_build.cache_dir-/tmp/conda-bld-/var/tmp/build]": 0.12616829753050338,
"tests/cli/test_config.py::test_set_map_key[conda_build.error_overlinking-true-false]": 0.0010116232207007466,
"tests/cli/test_config.py::test_set_map_key[proxy_servers.http-1.2.3.4:5678-4.3.2.1:9876]": 0.12253893188560457,
"tests/cli/test_config.py::test_set_rc_without_user_rc": 0.12115777957591016,
"tests/cli/test_config.py::test_set_unconfigured_key": 0.12521879965716223,
"tests/cli/test_config.py::test_show_sorts_keys": 0.21973640135315292,
"tests/cli/test_config.py::test_ssl_verify_default": 0.006454733887312676,
"tests/cli/test_config.py::test_ssl_verify_set_bool": 0.11579005499292676,
"tests/cli/test_config.py::test_ssl_verify_set_filename": 0.11079909148055844,
"tests/cli/test_config.py::test_ssl_verify_set_truststore": 0.11987111475429418,
"tests/cli/test_find_commands.py::test_find_commands": 0.03980162338836096,
"tests/cli/test_find_commands.py::test_find_executable": 0.007655167701781906,
"tests/cli/test_main.py::test_main": 0.067966124306021,
"tests/cli/test_main_clean.py::test_clean_all": 3.6044783289482893,
"tests/cli/test_main_clean.py::test_clean_all[False]": 23.449966763647346,
"tests/cli/test_main_clean.py::test_clean_all[True]": 54.97939557047596,
"tests/cli/test_main_clean.py::test_clean_all_mock_lstat[False]": 33.19746358192435,
"tests/cli/test_main_clean.py::test_clean_all_mock_lstat[True]": 36.64832075364987,
"tests/cli/test_main_clean.py::test_clean_and_packages": 53.7682048340396,
"tests/cli/test_main_clean.py::test_clean_force_pkgs_dirs": 14.905317614974091,
"tests/cli/test_main_clean.py::test_clean_index_cache": 13.257001558333153,
"tests/cli/test_main_clean.py::test_clean_logfiles": 9.750983873968776,
"tests/cli/test_main_clean.py::test_clean_tarballs": 5.842821228102987,
"tests/cli/test_main_clean.py::test_clean_tempfiles": 4.651434271503833,
"tests/cli/test_main_clean.py::test_get_size": 0.006815137315679105,
"tests/cli/test_main_clean.py::test_get_size_None": 0.0022067990242304763,
"tests/cli/test_main_clean.py::test_get_size_list": 0.0020246874121858504,
"tests/cli/test_main_compare.py::test_compare": 0.1270591961951508,
"tests/cli/test_main_config.py::test_config_get_missing[get]": 0.13647206820383836,
"tests/cli/test_main_config.py::test_config_get_missing[key]": 0.13541693185207251,
"tests/cli/test_main_config.py::test_config_get_missing[unknown]": 0.14217891902703003,
"tests/cli/test_main_config.py::test_config_get_system[get]": 0.1397022229296795,
"tests/cli/test_main_config.py::test_config_get_system[key]": 0.15187934114355117,
"tests/cli/test_main_config.py::test_config_get_system[unknown]": 0.14473320021767525,
"tests/cli/test_main_config.py::test_config_get_user[get]": 0.14101858996200622,
"tests/cli/test_main_config.py::test_config_get_user[key]": 0.13958254454372968,
"tests/cli/test_main_config.py::test_config_get_user[unknown]": 0.1381568241772115,
"tests/cli/test_main_config.py::test_config_show_sources_json": 0.13355580940632109,
"tests/cli/test_main_info.py::test_info": 0.5909481093464971,
"tests/cli/test_main_info.py::test_info_conda_json": 23.2076797187709,
"tests/cli/test_main_info.py::test_info_json": 0.19007332708447533,
"tests/cli/test_main_info.py::test_info_root": 0.24641109879650175,
"tests/cli/test_main_info.py::test_info_unsafe_channels": 0.2600061537670962,
"tests/cli/test_main_list.py::test_list": 2.588587289111984,
"tests/cli/test_main_list.py::test_list_json": 0.753256164588712,
"tests/cli/test_main_list.py::test_list_package": 0.13546233417944464,
"tests/cli/test_main_list.py::test_list_reverse": 34.823482833762675,
"tests/cli/test_main_list.py::test_list_revisions": 0.36940217173981116,
"tests/cli/test_main_notices.py::test_cache_names_appear_as_expected": 0.06801815143082454,
"tests/cli/test_main_notices.py::test_main_notices[200]": 0.047366599776790065,
"tests/cli/test_main_notices.py::test_main_notices[404]": 0.12779236199596083,
"tests/cli/test_main_notices.py::test_main_notices_handles_bad_expired_at_field": 0.047300294698833255,
"tests/cli/test_main_notices.py::test_main_notices_help": 0.032550712693407265,
"tests/cli/test_main_notices.py::test_main_notices_reads_from_cache": 0.0493511547032826,
"tests/cli/test_main_notices.py::test_main_notices_reads_from_expired_cache": 0.05044269462736552,
"tests/cli/test_main_notices.py::test_notices_appear_once_when_running_decorated_commands": 0.6272913084396422,
"tests/cli/test_main_notices.py::test_notices_cannot_read_cache_files": 0.10351004094504389,
"tests/cli/test_main_notices.py::test_notices_does_not_interrupt_command_on_failure": 0.2505640363721388,
"tests/cli/test_main_notices.py::test_notices_work_with_s3_channel": 0.12785518985400962,
"tests/cli/test_main_rename.py::test_cannot_rename_active_env_by_name": 0.5402031048662261,
"tests/cli/test_main_rename.py::test_cannot_rename_base_env_by_name": 0.26874262967360724,
"tests/cli/test_main_rename.py::test_cannot_rename_base_env_by_path": 0.22691580738863149,
"tests/cli/test_main_rename.py::test_rename_by_name_name_already_exists_error": 0.4117511519674854,
"tests/cli/test_main_rename.py::test_rename_by_name_success": 0.6597572140408933,
"tests/cli/test_main_rename.py::test_rename_by_path_path_already_exists_error": 0.4098647762514159,
"tests/cli/test_main_rename.py::test_rename_by_path_success": 0.46130280423913256,
"tests/cli/test_main_rename.py::test_rename_with_dry_run": 0.5945804782092754,
"tests/cli/test_main_rename.py::test_rename_with_force": 0.8314185541971898,
"tests/cli/test_main_rename.py::test_rename_with_force_and_dry_run": 0.5425663224539354,
"tests/cli/test_main_rename.py::test_rename_with_force_with_errors": 0.7907859776420114,
"tests/cli/test_main_rename.py::test_rename_with_force_with_errors_prefix": 0.29988295609830457,
"tests/cli/test_main_run.py::test_run_readonly_env": 2.586636418026604,
"tests/cli/test_main_run.py::test_run_returns_int": 3.00955398466862,
"tests/cli/test_main_run.py::test_run_returns_nonzero_errorlevel": 2.608322686730128,
"tests/cli/test_main_run.py::test_run_returns_zero_errorlevel": 2.5086125545883666,
"tests/cli/test_main_run.py::test_run_uncaptured": 2.6342140172886053,
"tests/cli/test_main_search.py::test_search_0": 1.4343595039128236,
"tests/cli/test_main_search.py::test_search_1": 0.3715852032008583,
"tests/cli/test_main_search.py::test_search_2[exact]": 2.5314309644805117,
"tests/cli/test_main_search.py::test_search_2[wildcard]": 2.1054493568519224,
"tests/cli/test_main_search.py::test_search_3": 10.051187550605333,
"tests/cli/test_main_search.py::test_search_4": 0.37151746833995336,
"tests/cli/test_main_search.py::test_search_5": 6.5026869941080445,
"tests/cli/test_main_search.py::test_search_envs": 1.8571684563997184,
"tests/cli/test_main_search.py::test_search_envs_info": 0.6861473340787013,
"tests/cli/test_main_search.py::test_search_envs_json": 2.003474134742644,
"tests/cli/test_subcommands.py::test_clean": 1.0220236518876706,
"tests/cli/test_subcommands.py::test_compare": 0.2935466250301199,
"tests/cli/test_subcommands.py::test_config": 0.12853077858180906,
"tests/cli/test_subcommands.py::test_create": 0.17625232395632548,
"tests/cli/test_subcommands.py::test_doctor": 8.375496882593747,
"tests/cli/test_subcommands.py::test_env_config_vars": 0.31367334782206996,
"tests/cli/test_subcommands.py::test_env_create": 7.306172209494524,
"tests/cli/test_subcommands.py::test_env_export": 0.9340996812698728,
"tests/cli/test_subcommands.py::test_env_list": 0.17677923176599078,
"tests/cli/test_subcommands.py::test_env_remove": 0.2931903713490159,
"tests/cli/test_subcommands.py::test_env_update": 0.561231144814462,
"tests/cli/test_subcommands.py::test_info": 0.12259095806570015,
"tests/cli/test_subcommands.py::test_info_json": 0.4365898721937248,
"tests/cli/test_subcommands.py::test_init": 0.15254674450712605,
"tests/cli/test_subcommands.py::test_install": 0.5808780988636358,
"tests/cli/test_subcommands.py::test_list": 1.375134767917712,
"tests/cli/test_subcommands.py::test_notices": 0.2791621996178508,
"tests/cli/test_subcommands.py::test_package": 0.27180054371381673,
"tests/cli/test_subcommands.py::test_remove[remove]": 0.37982814860185676,
"tests/cli/test_subcommands.py::test_remove[uninstall]": 0.34194951577400595,
"tests/cli/test_subcommands.py::test_remove_all_json[remove]": 0.40424349973734025,
"tests/cli/test_subcommands.py::test_remove_all_json[uninstall]": 0.38217963501961494,
"tests/cli/test_subcommands.py::test_rename": 0.3416222577749584,
"tests/cli/test_subcommands.py::test_run": 3.164501742437089,
"tests/cli/test_subcommands.py::test_search": 17.734135340190026,
"tests/cli/test_subcommands.py::test_update[update]": 1.3857675554931483,
"tests/cli/test_subcommands.py::test_update[upgrade]": 6.288029221171059,
"tests/common/os/test_windows.py::test_is_admin_on_windows": 0.003954078668091843,
"tests/common/pkg_formats/test_python.py::test_basepydist_load_requires_provides_file": 0.005717579420126118,
"tests/common/pkg_formats/test_python.py::test_basepydist_parse_entries_file_data": 0.002590324008106419,
"tests/common/pkg_formats/test_python.py::test_basepydist_parse_requires_file_data": 0.0029003655182868893,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths": 0.0059097284206571,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths_no_paths": 0.0024622434424536937,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths_uppercase_algorithm": 0.0033959529999947335,
"tests/common/pkg_formats/test_python.py::test_evaluate_marker": 0.0031071952517956873,
"tests/common/pkg_formats/test_python.py::test_get_default_marker_context": 0.0022428017499495855,
"tests/common/pkg_formats/test_python.py::test_get_dist_file_from_egg_link": 0.009658284964700704,
"tests/common/pkg_formats/test_python.py::test_get_dist_requirements": 0.0069310567557864695,
"tests/common/pkg_formats/test_python.py::test_get_entry_points": 0.006245238597065614,
"tests/common/pkg_formats/test_python.py::test_get_extra_provides": 0.00710219729109688,
"tests/common/pkg_formats/test_python.py::test_get_python_distribution_info": 0.0007400032673259136,
"tests/common/pkg_formats/test_python.py::test_get_site_packages_anchor_files": 0.005478571081795718,
"tests/common/pkg_formats/test_python.py::test_metadata": 0.008400437633429817,
"tests/common/pkg_formats/test_python.py::test_metadata_keys": 0.0021515752685814615,
"tests/common/pkg_formats/test_python.py::test_metadata_process_path": 0.005949619615063871,
"tests/common/pkg_formats/test_python.py::test_metadata_read_metadata": 0.008939397733937595,
"tests/common/pkg_formats/test_python.py::test_norm_package_name": 0.002839050121932208,
"tests/common/pkg_formats/test_python.py::test_norm_package_version": 0.0030108060649148474,
"tests/common/pkg_formats/test_python.py::test_parse_specification": 0.009257151735856211,
"tests/common/pkg_formats/test_python.py::test_pydist_check_files": 0.007906310989321442,
"tests/common/pkg_formats/test_python.py::test_pypi_name_to_conda_name": 0.0023910748244466823,
"tests/common/pkg_formats/test_python.py::test_python_dist_egg_fpath": 0.005268956665705614,
"tests/common/pkg_formats/test_python.py::test_python_dist_egg_path": 0.005010099821206496,
"tests/common/pkg_formats/test_python.py::test_python_dist_info": 0.006592188157845402,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies": 0.006523742243657362,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies_2": 0.005113014444138835,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies_3": 0.005622444050107894,
"tests/common/pkg_formats/test_python.py::test_split_spec": 0.0031696832363296086,
"tests/common/test_configuration.py::ConfigurationTests::test_commented_map_parameter": 0.003067991800152058,
"tests/common/test_configuration.py::ConfigurationTests::test_config_resets": 0.002130391710409922,
"tests/common/test_configuration.py::ConfigurationTests::test_cross_parameter_validation": 0.000927736841959792,
"tests/common/test_configuration.py::ConfigurationTests::test_default_values": 0.001302695294837814,
"tests/common/test_configuration.py::ConfigurationTests::test_empty_map_parameter": 0.00470140382384903,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config": 0.0016071548167620711,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_alias": 0.0014024396280333377,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_empty_sequence": 0.001501515771734565,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_no_split_sequence": 0.0016720442901368665,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_split_sequence": 0.002191434425941787,
"tests/common/test_configuration.py::ConfigurationTests::test_expanded_variables": 0.005908774091252339,
"tests/common/test_configuration.py::ConfigurationTests::test_important_primitive_map_merges": 0.07466701086810448,
"tests/common/test_configuration.py::ConfigurationTests::test_invalid_map_parameter": 0.0012859297246600669,
"tests/common/test_configuration.py::ConfigurationTests::test_invalid_seq_parameter": 0.0011558490480521064,
"tests/common/test_configuration.py::ConfigurationTests::test_list_merges": 0.07221426896488285,
"tests/common/test_configuration.py::ConfigurationTests::test_load_raw_configs": 0.044359767586322235,
"tests/common/test_configuration.py::ConfigurationTests::test_map_parameter_must_be_map": 0.0028862705340020845,
"tests/common/test_configuration.py::ConfigurationTests::test_nested": 0.01380779328334932,
"tests/common/test_configuration.py::ConfigurationTests::test_object": 0.010188938191080911,
"tests/common/test_configuration.py::ConfigurationTests::test_parameter": 0.0009516557119768745,
"tests/common/test_configuration.py::ConfigurationTests::test_simple_merges_and_caching": 0.01577670183178656,
"tests/common/test_configuration.py::ConfigurationTests::test_validate_all": 0.011599592960607466,
"tests/common/test_configuration.py::ConfigurationTests::test_validation": 0.012229778774272964,
"tests/common/test_configuration.py::test_commented_map_parameter": 0.004779503648210749,
"tests/common/test_configuration.py::test_config_resets": 0.0036173849603434046,
"tests/common/test_configuration.py::test_cross_parameter_validation": 0.002167384333925561,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$$/suffix]": 0.0026024257870436965,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$/suffix]": 0.002267756086374246,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$1/suffix]": 0.0023689072324607186,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$MISSING/suffix]": 0.0024289469743601633,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$VARIABLE/suffix]": 0.0027275303603633253,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${1}/suffix]": 0.0022002904568478652,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${MISSING}/suffix]": 0.003910263795723896,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${VARIABLE}/suffix]": 0.0028640479899808367,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${}/suffix]": 0.0022975605132751647,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%%/suffix]": 0.00214866426678975,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%/suffix]": 0.0025215073286900622,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%1%/suffix]": 0.002142663774860556,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%1/suffix]": 0.0022432463728121917,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%MISSING%/suffix]": 0.002228985823673795,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%VARIABLE%/suffix]": 0.0007672700233118992,
"tests/common/test_configuration.py::test_default_values": 0.0026276577657272085,
"tests/common/test_configuration.py::test_empty_map_parameter": 0.007783373498222645,
"tests/common/test_configuration.py::test_env_var_config": 0.0028253296108757204,
"tests/common/test_configuration.py::test_env_var_config_alias": 0.002916201809654333,
"tests/common/test_configuration.py::test_env_var_config_empty_sequence": 0.0026885740489835702,
"tests/common/test_configuration.py::test_env_var_config_no_split_sequence": 0.0028198863821203546,
"tests/common/test_configuration.py::test_env_var_config_split_sequence": 0.0028056677108490133,
"tests/common/test_configuration.py::test_expanded_variables": 0.011733050548447903,
"tests/common/test_configuration.py::test_important_primitive_map_merges": 0.13193672317809788,
"tests/common/test_configuration.py::test_invalid_map_parameter": 0.0027855690211342726,
"tests/common/test_configuration.py::test_invalid_seq_parameter": 0.002148050587134683,
"tests/common/test_configuration.py::test_list_merges": 0.11783629096492122,
"tests/common/test_configuration.py::test_load_raw_configs": 0.04635089812044705,
"tests/common/test_configuration.py::test_map_parameter_must_be_map": 0.0037634989129980453,
"tests/common/test_configuration.py::test_nested": 0.024497396063710368,
"tests/common/test_configuration.py::test_object": 0.016967321456816568,
"tests/common/test_configuration.py::test_parameter": 0.0036868235683364878,
"tests/common/test_configuration.py::test_parameter_flag": 0.0022270512367297698,
"tests/common/test_configuration.py::test_pretty_list": 0.002479188388994424,
"tests/common/test_configuration.py::test_raise_errors": 0.0020643788481642246,
"tests/common/test_configuration.py::test_simple_merges_and_caching": 0.028281124184771446,
"tests/common/test_configuration.py::test_validate_all": 0.020727951510931313,
"tests/common/test_configuration.py::test_validation": 0.019383269910267304,
"tests/common/test_io.py::test_attach_stderr_handler": 0.00344964714326016,
"tests/common/test_io.py::test_captured": 0.0028395161994821147,
"tests/common/test_iterators.py::test_interleave": 0.0072664276805357204,
"tests/common/test_iterators.py::test_unpacking_for_merge": 0.023180609444500722,
"tests/common/test_iterators.py::test_unpacking_for_merge_with": 0.011123389060104297,
"tests/common/test_path.py::test_get_major_minor_version_no_dot": 0.0020301417636360555,
"tests/common/test_path.py::test_missing_pyc_files_27": 0.0020488497176323547,
"tests/common/test_path.py::test_missing_pyc_files_34": 0.0021991884140633807,
"tests/common/test_path.py::test_missing_pyc_files_35": 0.002114344549935083,
"tests/common/test_path.py::test_url_to_path_unix": 0.0026489617424059883,
"tests/common/test_path.py::test_url_to_path_windows_local": 0.002854802750643752,
"tests/common/test_path.py::test_url_to_path_windows_unc": 0.00251656121434077,
"tests/common/test_path.py::test_win_path_backout": 0.002147720917629647,
"tests/common/test_url.py::test_add_username_and_pass_to_url": 0.002598127218389453,
"tests/common/test_url.py::test_is_ip_address": 0.001952083685500811,
"tests/common/test_url.py::test_is_ipv6_address": 0.0019631893700891427,
"tests/common/test_url.py::test_is_url": 0.002784984286202792,
"tests/common/test_url.py::test_maybe_add_auth": 0.0024418112204149765,
"tests/common/test_url.py::test_split_scheme_auth_token": 0.0020293651222675494,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj0-http://conda.io/path/to/somewhere]": 0.002719498256450918,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj1-https://user:[email protected]/path/to/somewhere]": 0.002620731702058378,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj2-file:///opt/happy/path]": 0.0034174754629684653,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj3-file:///path/to/something.txt]": 0.002160980949967326,
"tests/common/test_url.py::test_url_to_s3_info": 0.001987826050698687,
"tests/common/test_url.py::test_urlparse[192.168.1.1:8080/path/to/resource-exp_url_obj0]": 0.002688074273004352,
"tests/common/test_url.py::test_urlparse[file:///opt/happy/path-exp_url_obj2]": 0.002293399905690832,
"tests/common/test_url.py::test_urlparse[https://conda.io/happy/path-exp_url_obj1]": 0.002712822568776795,
"tests/common/test_url.py::test_urlparse[https://u:[email protected]/t/x1029384756/more/path-exp_url_obj3]": 0.0028546682703830374,
"tests/common/test_yaml.py::test_dump": 0.008494251981174749,
"tests/common/test_yaml.py::test_map": 0.0031264865534863483,
"tests/common/test_yaml.py::test_seq_simple": 0.0035793556110364014,
"tests/common/test_yaml.py::test_yaml_complex": 0.018697479856521825,
"tests/conda_env/specs/test_binstar.py::test_binstar_not_installed": 0.0028500330707470784,
"tests/conda_env/specs/test_binstar.py::test_download_environment": 0.00731117434602283,
"tests/conda_env/specs/test_binstar.py::test_environment_version_sorting": 0.014040330705168497,
"tests/conda_env/specs/test_binstar.py::test_invalid_name": 0.010652998014459444,
"tests/conda_env/specs/test_binstar.py::test_name_not_present": 0.013612421523384809,
"tests/conda_env/specs/test_binstar.py::test_package_not_exist": 0.004898144061154032,
"tests/conda_env/specs/test_binstar.py::test_package_without_environment_file": 0.0641300885015855,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_environment": 0.0026039059272315594,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_no_environment_file": 0.0017264698697345281,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_no_name": 0.001906624515160529,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_req_file_and_name": 0.0021020692000108324,
"tests/conda_env/specs/test_requirements.py::test_environment": 0.002798214394119375,
"tests/conda_env/specs/test_requirements.py::test_no_environment_file": 0.0018984772730385859,
"tests/conda_env/specs/test_requirements.py::test_no_name": 0.0021972546811643355,
"tests/conda_env/specs/test_requirements.py::test_req_file_and_name": 0.0019208544178569574,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_environment_file_exist": 0.0025749069485036876,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_filename": 0.0034748817151220622,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_get_environment": 0.002506330033340494,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_no_environment_file": 0.0021797407848222258,
"tests/conda_env/specs/test_yaml_file.py::test_environment_file_exist": 0.0034891565268004503,
"tests/conda_env/specs/test_yaml_file.py::test_filename": 0.003474033607850695,
"tests/conda_env/specs/test_yaml_file.py::test_get_environment": 0.002523731650395621,
"tests/conda_env/specs/test_yaml_file.py::test_no_environment_file": 0.002152825462090854,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_empty_file": 0.30687684944601745,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_http": 59.22495479661957,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_no_existent_file": 0.32758495365938617,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_no_existent_file_with_name": 0.5233390927250875,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_no_file": 0.28965455282073116,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_dry_run_json": 3.802116571668078,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_dry_run_yaml": 3.5045197136095245,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env": 14.09916122319579,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_json_output": 14.83187275660253,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_with_conda_and_pip_json_output": 24.11128828770302,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_with_variables": 7.517413623019154,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_remote_env": 15.195125408598502,
"tests/conda_env/test_cli.py::IntegrationTests::test_name": 12.775729296028345,
"tests/conda_env/test_cli.py::IntegrationTests::test_pip_error_is_propagated": 16.273196337354456,
"tests/conda_env/test_cli.py::IntegrationTests::test_remove_dry_run": 7.904768083556515,
"tests/conda_env/test_cli.py::IntegrationTests::test_set_unset_env_vars": 8.151306677026831,
"tests/conda_env/test_cli.py::IntegrationTests::test_set_unset_env_vars_env_no_exist": 6.44372428975546,
"tests/conda_env/test_cli.py::IntegrationTests::test_update": 10.380111663076816,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_json_output": 19.523159899435985,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_no_action_json_output": 19.850927480698022,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_only_pip_json_output": 20.357529060718267,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export": 14.585046595528727,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export_json": 10.849143757516595,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export_with_variables": 2.2098499622996575,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_export_multi_channel": 14.627213854749774,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_invalid_extensions": 0.05242039408268114,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_list": 0.8064816177051194,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_non_existent_file": 0.05098988952439367,
"tests/conda_env/test_cli.py::test_conda_env_create_empty_file": 1.1983260623318068,
"tests/conda_env/test_cli.py::test_conda_env_create_http": 124.76437162134961,
"tests/conda_env/test_cli.py::test_conda_env_create_no_existent_file": 1.1813942060302702,
"tests/conda_env/test_cli.py::test_conda_env_create_no_existent_file_with_name": 1.3348694843242175,
"tests/conda_env/test_cli.py::test_conda_env_create_no_file": 1.1246555721476195,
"tests/conda_env/test_cli.py::test_create_dry_run_json": 8.559998967172163,
"tests/conda_env/test_cli.py::test_create_dry_run_yaml": 8.790404315532346,
"tests/conda_env/test_cli.py::test_create_valid_env": 23.668836838622003,
"tests/conda_env/test_cli.py::test_create_valid_env_json_output": 23.224240414099516,
"tests/conda_env/test_cli.py::test_create_valid_env_with_conda_and_pip_json_output": 31.935882420946946,
"tests/conda_env/test_cli.py::test_create_valid_env_with_variables": 19.38617744471868,
"tests/conda_env/test_cli.py::test_create_valid_remote_env": 23.788880430011854,
"tests/conda_env/test_cli.py::test_env_export": 23.426518663345377,
"tests/conda_env/test_cli.py::test_env_export_json": 10.340139447079395,
"tests/conda_env/test_cli.py::test_env_export_with_variables": 16.59459965920893,
"tests/conda_env/test_cli.py::test_export_multi_channel": 24.987638010172656,
"tests/conda_env/test_cli.py::test_invalid_extensions": 0.1889540456522763,
"tests/conda_env/test_cli.py::test_list": 2.203637105297681,
"tests/conda_env/test_cli.py::test_name": 21.196223711184498,
"tests/conda_env/test_cli.py::test_non_existent_file": 0.1973296573352341,
"tests/conda_env/test_cli.py::test_pip_error_is_propagated": 27.634672308187973,
"tests/conda_env/test_cli.py::test_remove_dry_run": 13.872121982414246,
"tests/conda_env/test_cli.py::test_set_unset_env_vars": 10.627984547248847,
"tests/conda_env/test_cli.py::test_set_unset_env_vars_env_no_exist": 9.964204126095614,
"tests/conda_env/test_cli.py::test_update": 31.742607897352375,
"tests/conda_env/test_cli.py::test_update_env_json_output": 35.799914177238406,
"tests/conda_env/test_cli.py::test_update_env_no_action_json_output": 33.96475374674753,
"tests/conda_env/test_cli.py::test_update_env_only_pip_json_output": 35.4943056658287,
"tests/conda_env/test_create.py::IntegrationTests::test_create_advanced_pip": 0.927895222517159,
"tests/conda_env/test_create.py::IntegrationTests::test_create_empty_env": 20.808439903921613,
"tests/conda_env/test_create.py::IntegrationTests::test_create_env_default_packages": 104.59432373706827,
"tests/conda_env/test_create.py::IntegrationTests::test_create_env_no_default_packages": 54.380296351107084,
"tests/conda_env/test_create.py::IntegrationTests::test_create_host_port": 0.0007084994121385896,
"tests/conda_env/test_create.py::IntegrationTests::test_create_update": 19.29477504774389,
"tests/conda_env/test_create.py::test_create_advanced_pip": 85.66116684107956,
"tests/conda_env/test_create.py::test_create_empty_env": 6.077934712109949,
"tests/conda_env/test_create.py::test_create_env_default_packages": 574.8646279846321,
"tests/conda_env/test_create.py::test_create_env_no_default_packages": 122.39503779506347,
"tests/conda_env/test_create.py::test_create_host_port": 0.0018183179645721711,
"tests/conda_env/test_create.py::test_create_update": 38.67827512113448,
"tests/conda_env/test_create.py::test_create_update_remote_env_file": 40.73582094992014,
"tests/conda_env/test_create.py::test_fail_to_create_env_in_dir_with_colon": 0.10630599499463188,
"tests/conda_env/test_env.py::DirectoryTestCase::test_has_dependencies": 0.006200714165044616,
"tests/conda_env/test_env.py::DirectoryTestCase::test_has_expected_name": 0.0029041961486509942,
"tests/conda_env/test_env.py::DirectoryTestCase::test_returns_env_object": 0.0027464289837489373,
"tests/conda_env/test_env.py::EnvironmentSaveTestCase::test_creates_file_on_save": 0.0067445072801315025,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_add_channels": 0.0011610909597269494,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_args_are_wildcarded": 0.001171013540625113,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_builds_spec_from_line_raw_dependency": 0.0014336219083553876,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_can_add_dependencies_to_environment": 0.00443260375362153,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_channels_are_provided_by_kwarg": 0.001226293350999831,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_channels_default_to_empty_list": 0.0010494052063125053,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_dependencies_are_empty_by_default": 0.0011422999493187784,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_dependencies_update_after_adding": 0.003231145406889354,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_empty_filename_by_default": 0.0009772282073235085,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_empty_name_by_default": 0.0008819733764361473,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_filename_if_provided": 0.0011932842691769632,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_name_if_provided": 0.0011460418794837569,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_invalid_keys": 0.003977180036170823,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_other_tips_of_dependencies_are_supported": 0.001097725888786672,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_parses_dependencies_from_raw_file": 0.002709078532470439,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_remove_channels": 0.0009943095006315307,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_dict_returns_dictionary_of_data": 0.0012374439639370285,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_dict_returns_just_name_if_only_thing_present": 0.0010001149266006734,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_returns_proper_yaml": 0.0024245148678730703,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_returns_yaml_parseable_string": 0.005223442174252929,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_takes_stream": 0.0022211197407921283,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_valid_keys": 0.0051082504570769075,
"tests/conda_env/test_env.py::LoadEnvFromFileAndSaveTestCase::test": 0.02428419879920064,
"tests/conda_env/test_env.py::LoadEnvFromFileAndSaveTestCase::test_expected_default_conditions": 0.006732033100217793,
"tests/conda_env/test_env.py::SaveExistingEnvTestCase::test_create_advanced_pip": 0.6988693187826415,
"tests/conda_env/test_env.py::TestFromEnvironment::test_from_history": 0.006223022147782309,
"tests/conda_env/test_env.py::from_file_TestCase::test_add_pip": 0.005949474741983369,
"tests/conda_env/test_env.py::from_file_TestCase::test_envvars": 0.008509158495317642,
"tests/conda_env/test_env.py::from_file_TestCase::test_http": 0.7910414214025029,
"tests/conda_env/test_env.py::from_file_TestCase::test_http_raises": 0.11224178874985594,
"tests/conda_env/test_env.py::from_file_TestCase::test_retains_full_filename": 0.003891939929322756,
"tests/conda_env/test_env.py::from_file_TestCase::test_returns_Environment": 0.00323791427331997,
"tests/conda_env/test_env.py::from_file_TestCase::test_with_pip": 0.004658293086116999,
"tests/conda_env/test_env.py::load_from_directory_TestCase::test_raised_exception_has_environment_yml_as_file": 0.0014154539522124954,
"tests/conda_env/test_env.py::load_from_directory_TestCase::test_raises_when_unable_to_find": 0.001192324780588609,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_has_dependencies": 0.002482009204513069,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_has_expected_name": 0.0024848157178205144,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_returns_env_object": 0.0025427209362168406,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_has_dependencies": 0.004396298187956245,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_has_expected_name": 0.004316589959464963,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_returns_env_object": 0.0036562272628323424,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_has_dependencies": 0.004017554077594572,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_has_expected_name": 0.00392219554851335,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_returns_env_object": 0.0030559304001338203,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_has_dependencies": 0.003375544986199031,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_has_expected_name": 0.0056004058970971025,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_returns_env_object": 0.005316797560377264,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_has_dependencies": 0.004016417500942958,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_has_expected_name": 0.0035187868092258364,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_returns_env_object": 0.003764335574390628,
"tests/conda_env/test_env.py::test_add_channels": 0.0021593666410432305,
"tests/conda_env/test_env.py::test_add_pip": 0.005815966743672954,
"tests/conda_env/test_env.py::test_args_are_wildcarded": 0.0021840073482536355,
"tests/conda_env/test_env.py::test_builds_spec_from_line_raw_dependency": 0.0025035700682131657,
"tests/conda_env/test_env.py::test_can_add_dependencies_to_environment": 0.005813926437883434,
"tests/conda_env/test_env.py::test_channels_are_provided_by_kwarg": 0.0018828525321403203,
"tests/conda_env/test_env.py::test_channels_default_to_empty_list": 0.00197946817598678,
"tests/conda_env/test_env.py::test_create_advanced_pip": 19.79289021541311,
"tests/conda_env/test_env.py::test_creates_file_on_save": 0.007399253690931339,
"tests/conda_env/test_env.py::test_dependencies_are_empty_by_default": 0.0020956558347045694,
"tests/conda_env/test_env.py::test_dependencies_update_after_adding": 0.004408221330883601,
"tests/conda_env/test_env.py::test_envvars": 0.006777140428535396,
"tests/conda_env/test_env.py::test_from_history": 0.0056659476129731655,
"tests/conda_env/test_env.py::test_has_empty_filename_by_default": 0.0022700364214382138,
"tests/conda_env/test_env.py::test_has_empty_name_by_default": 0.0022003956094306036,
"tests/conda_env/test_env.py::test_has_filename_if_provided": 0.0019355383489245833,
"tests/conda_env/test_env.py::test_has_name_if_provided": 0.00215633259189028,
"tests/conda_env/test_env.py::test_http": 0.17046286634669866,
"tests/conda_env/test_env.py::test_http_raises": 0.19458424144888592,
"tests/conda_env/test_env.py::test_invalid_keys": 0.005643087511862864,
"tests/conda_env/test_env.py::test_load_from_directory[example-yaml]": 0.005676632959714352,
"tests/conda_env/test_env.py::test_load_from_directory[example]": 0.004510861470620185,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar/baz/]": 0.005929075274766367,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar/baz]": 0.00473400428952141,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar]": 0.004973630630360537,
"tests/conda_env/test_env.py::test_load_from_directory_and_save": 0.014323026176030514,
"tests/conda_env/test_env.py::test_other_tips_of_dependencies_are_supported": 0.001953288576870545,
"tests/conda_env/test_env.py::test_parses_dependencies_from_raw_file": 0.0045193257142434095,
"tests/conda_env/test_env.py::test_raised_exception_has_environment_yml_as_file": 0.0037696123364201013,
"tests/conda_env/test_env.py::test_raises_when_unable_to_find": 0.003489649536358701,
"tests/conda_env/test_env.py::test_remove_channels": 0.0019522109226074332,
"tests/conda_env/test_env.py::test_retains_full_filename": 0.004928328885030629,
"tests/conda_env/test_env.py::test_returns_Environment": 0.005259845068564758,
"tests/conda_env/test_env.py::test_to_dict_returns_dictionary_of_data": 0.00345994309718353,
"tests/conda_env/test_env.py::test_to_dict_returns_just_name_if_only_thing_present": 0.002180805673888548,
"tests/conda_env/test_env.py::test_to_yaml_returns_proper_yaml": 0.004194474341834746,
"tests/conda_env/test_env.py::test_to_yaml_returns_yaml_parseable_string": 0.00796906761478632,
"tests/conda_env/test_env.py::test_to_yaml_takes_stream": 0.00458940564152213,
"tests/conda_env/test_env.py::test_valid_keys": 0.007325191272677004,
"tests/conda_env/test_env.py::test_with_pip": 0.006014618741442735,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages[Successfully installed foo bar-expected0]": 0.002835778458828888,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages[\\nCollecting attrs\\n Using cached https://files.pythonhosted.org/packages/23/96/d828354fa2dbdf216eaa7b7de0db692f12c234f7ef888cc14980ef40d1d2/attrs-19.1.0-py2.py3-none-any.whl\\nInstalling collected packages: attrs\\nSuccessfully installed attrs-19.1.0\\n-expected1]": 0.002944691582927244,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages[\\nCollecting flask\\n Using cached https://files.pythonhosted.org/packages/9b/93/628509b8d5dc749656a9641f4caf13540e2cdec85276964ff8f43bbb1d3b/Flask-1.1.1-py2.py3-none-any.whl\\nCollecting itsdangerous>=0.24 (from flask)\\n Using cached https://files.pythonhosted.org/packages/76/ae/44b03b253d6fade317f32c24d100b3b35c2239807046a4c953c7b89fa49e/itsdangerous-1.1.0-py2.py3-none-any.whl\\nCollecting click>=5.1 (from flask)\\n Using cached https://files.pythonhosted.org/packages/fa/37/45185cb5abbc30d7257104c434fe0b07e5a195a6847506c074527aa599ec/Click-7.0-py2.py3-none-any.whl\\nCollecting Werkzeug>=0.15 (from flask)\\n Using cached https://files.pythonhosted.org/packages/b7/61/c0a1adf9ad80db012ed7191af98fa05faa95fa09eceb71bb6fa8b66e6a43/Werkzeug-0.15.6-py2.py3-none-any.whl\\nCollecting Jinja2>=2.10.1 (from flask)\\n Using cached https://files.pythonhosted.org/packages/1d/e7/fd8b501e7a6dfe492a433deb7b9d833d39ca74916fa8bc63dd1a4947a671/Jinja2-2.10.1-py2.py3-none-any.whl\\nCollecting MarkupSafe>=0.23 (from Jinja2>=2.10.1->flask)\\n Using cached https://files.pythonhosted.org/packages/ce/c6/f000f1af136ef74e4a95e33785921c73595c5390403f102e9b231b065b7a/MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl\\nInstalling collected packages: itsdangerous, click, Werkzeug, MarkupSafe, Jinja2, flask\\nSuccessfully installed Jinja2-2.10.1 MarkupSafe-1.1.1 Werkzeug-0.15.6 click-7.0 flask-1.1.1 itsdangerous-1.1.0\\n-expected2]": 0.0025673231829790037,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages[\\nCollecting flask\\n Using cached https://files.pythonhosted.org/packages/9b/93/628509b8d5dc749656a9641f4caf13540e2cdec85276964ff8f43bbb1d3b/Flask-1.1.1-py2.py3-none-any.whl\\nRequirement already satisfied: Werkzeug>=0.15 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (0.15.6)\\nRequirement already satisfied: itsdangerous>=0.24 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (1.1.0)\\nRequirement already satisfied: Jinja2>=2.10.1 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (2.10.1)\\nRequirement already satisfied: click>=5.1 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (7.0)\\nRequirement already satisfied: MarkupSafe>=0.23 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from Jinja2>=2.10.1->flask) (1.1.1)\\nInstalling collected packages: flask\\nSuccessfully installed flask-1.1.1\\n-expected3]": 0.00231855443313808,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages_none[\\nRequirement already satisfied: flask in ./miniconda3/envs/fooo/lib/python3.7/site-packages (1.1.1)\\nRequirement already satisfied: itsdangerous>=0.24 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (1.1.0)\\nRequirement already satisfied: Jinja2>=2.10.1 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (2.10.1)\\nRequirement already satisfied: click>=5.1 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (7.0)\\nRequirement already satisfied: Werkzeug>=0.15 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from flask) (0.15.6)\\nRequirement already satisfied: MarkupSafe>=0.23 in ./miniconda3/envs/fooo/lib/python3.7/site-packages (from Jinja2>=2.10.1->flask) (1.1.1)\\n]": 0.00201180148169679,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages_none[]": 0.0020137401626704973,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages_none[foo]": 0.0023929934512720978,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_prefix_cli_flag": 0.02019807584440485,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_register_unregister_location_env": 0.026800713692471174,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_rewrite_environments_txt_file": 0.022081836721890003,
"tests/core/test_envs_manager.py::test_list_all_known_prefixes_with_none_values_error": 0.2229470366435689,
"tests/core/test_envs_manager.py::test_list_all_known_prefixes_with_permission_error": 0.24406117614742812,
"tests/core/test_envs_manager.py::test_prefix_cli_flag": 0.007428863508858571,
"tests/core/test_envs_manager.py::test_register_unregister_location_env": 0.01713444139426281,
"tests/core/test_envs_manager.py::test_rewrite_environments_txt_file": 0.009471655953594449,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_linux64_platform": 19.344049016068514,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_osx64_platform": 4.741138693256479,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_win64_platform": 15.257932503007591,
"tests/core/test_index.py::ReducedIndexTests::test_basic_get_reduced_index": 0.34001748349669775,
"tests/core/test_index.py::test_basic_get_reduced_index": 0.6882129237252474,
"tests/core/test_index.py::test_check_allowlist": 0.008769671825606536,
"tests/core/test_index.py::test_get_index_linux64_platform": 18.76675016359628,
"tests/core/test_index.py::test_get_index_osx64_platform": 1.7211778853641782,
"tests/core/test_index.py::test_get_index_win64_platform": 15.6582826513702,
"tests/core/test_index.py::test_supplement_index_with_system": 0.006838269753851877,
"tests/core/test_index.py::test_supplement_index_with_system_archspec": 0.004588972807459413,
"tests/core/test_index.py::test_supplement_index_with_system_cuda": 0.005692715278690019,
"tests/core/test_index.py::test_supplement_index_with_system_glibc": 0.0007573585693211992,
"tests/core/test_index.py::test_supplement_index_with_system_linux[1.2.3.4-1.2.3.4]": 0.0007148739261694963,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2-4.2]": 0.0007776864192043783,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2.0-42-generic-4.2.0]": 0.0006735427362618879,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2.1-4.2.1]": 0.0007824488071770558,
"tests/core/test_index.py::test_supplement_index_with_system_linux[5.4.89+-5.4.89]": 0.000789822617146063,
"tests/core/test_index.py::test_supplement_index_with_system_linux[5.5-rc1-5.5]": 0.0006962864866196855,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.1.a-9.1]": 0.0007942966475550865,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.1.a.2-9.1]": 0.0007136008864742732,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.a.1-0]": 0.0007140233725597755,
"tests/core/test_index.py::test_supplement_index_with_system_osx": 0.004146061729981171,
"tests/core/test_initialize.py::test__get_python_info": 0.0310620256232784,
"tests/core/test_initialize.py::test_get_python_info": 0.044961905952380934,
"tests/core/test_initialize.py::test_init_all": 1.176362994250404,
"tests/core/test_initialize.py::test_init_cmd_exe_registry": 0.0009027390885593216,
"tests/core/test_initialize.py::test_init_enable_long_path": 0.0009744005988776747,
"tests/core/test_initialize.py::test_init_sh_system": 0.03431806431887909,
"tests/core/test_initialize.py::test_init_sh_user_tcsh_unix": 0.043892324095556545,
"tests/core/test_initialize.py::test_init_sh_user_unix": 0.04939015859556391,
"tests/core/test_initialize.py::test_init_sh_user_windows": 0.0009831084615778828,
"tests/core/test_initialize.py::test_initialize_dev_bash": 0.13432458974900716,
"tests/core/test_initialize.py::test_initialize_dev_cmd_exe": 0.11150890077472923,
"tests/core/test_initialize.py::test_install_1": 0.06799278953108759,
"tests/core/test_initialize.py::test_install_conda_csh": 0.04208085712165617,
"tests/core/test_initialize.py::test_install_conda_fish": 0.042244024921568916,
"tests/core/test_initialize.py::test_install_conda_sh": 0.045639034541611015,
"tests/core/test_initialize.py::test_install_conda_xsh": 0.04048692929001463,
"tests/core/test_initialize.py::test_install_condabin_conda_bat": 0.037311423365746436,
"tests/core/test_initialize.py::test_make_entry_point": 0.04346134750558469,
"tests/core/test_initialize.py::test_make_entry_point_exe": 0.04288814104722315,
"tests/core/test_initialize.py::test_make_initialize_plan_bash_zsh": 0.06344638270494872,
"tests/core/test_initialize.py::test_make_initialize_plan_cmd_exe": 0.055159488595311994,
"tests/core/test_initialize.py::test_make_install_plan": 0.03165562029026052,
"tests/core/test_package_cache_data.py::test_ProgressiveFetchExtract_prefers_conda_v2_format": 0.03781026037837558,
"tests/core/test_package_cache_data.py::test_conda_build_alias": 0.002569969756211746,
"tests/core/test_package_cache_data.py::test_conda_pkg_in_pkg_cache_doesnt_overwrite_tar_bz2": 0.28503295487665503,
"tests/core/test_package_cache_data.py::test_cover_extract_bad_package": 0.06144260481629511,
"tests/core/test_package_cache_data.py::test_cover_fetch_not_exists": 6.202268592124042,
"tests/core/test_package_cache_data.py::test_cover_get_entry_to_link": 0.028449403020811323,
"tests/core/test_package_cache_data.py::test_cover_reverse": 0.002112487487916095,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_both_tar_bz2_and_conda_exist": 0.08031302968527662,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_both_tar_bz2_and_conda_exist_read_only": 0.1292336788905997,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_unpacked_conda_exist": 0.06871088659729346,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_cache_not_extracted": 0.3086536605741039,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_pkg_cache_doesnt_overwrite_conda_pkg": 0.33296483295478363,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_pkg_cache_used_instead_of_conda_pkg": 0.09453688276928672,
"tests/core/test_path_actions.py::PathActionsTests::test_CompileMultiPycAction_generic": 0.06374166456817827,
"tests/core/test_path_actions.py::PathActionsTests::test_CompileMultiPycAction_noarch_python": 2.332244850206684,
"tests/core/test_path_actions.py::PathActionsTests::test_CreatePythonEntryPointAction_generic": 0.030556487909121514,
"tests/core/test_path_actions.py::PathActionsTests::test_CreatePythonEntryPointAction_noarch_python": 0.03273113766269567,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_copy": 0.02326725727320876,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_directory": 0.024891599461706996,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_hardlink": 0.018255708176162063,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_softlink": 0.022133323378810275,
"tests/core/test_path_actions.py::test_CompileMultiPycAction_generic": 0.005330615692906319,
"tests/core/test_path_actions.py::test_CompileMultiPycAction_noarch_python": 2.950819064113779,
"tests/core/test_path_actions.py::test_CreatePythonEntryPointAction_generic": 0.005554508106754489,
"tests/core/test_path_actions.py::test_CreatePythonEntryPointAction_noarch_python": 0.010648497353895215,
"tests/core/test_path_actions.py::test_explode_directories": 0.005765018228065726,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_copy": 0.011052034361842952,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_directory": 0.005387075901969894,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_hardlink": 0.01270805182818796,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_softlink": 0.010706511946767774,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_spaces_in_prefix": 0.0020271494113705225,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_with_truncation_escaped_space": 0.0014978897417910959,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_with_truncation_python": 0.0011964586889118784,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_normal_shebang_spaces_in_prefix_escaped_space": 0.0011461536787176704,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_normal_shebang_spaces_in_prefix_python": 0.0016176817378838477,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_simple_shebang_no_replacement": 0.0013982063385057622,
"tests/core/test_portability.py::ReplaceShebangTests::test_shebang_regex_matches": 0.001385776292862699,
"tests/core/test_portability.py::test_escaped_prefix_replaced_only_shebang": 0.008129517547418835,
"tests/core/test_portability.py::test_replace_long_shebang_spaces_in_prefix": 0.0026020024946096934,
"tests/core/test_portability.py::test_replace_long_shebang_with_truncation_escaped_space": 0.002496493560509853,
"tests/core/test_portability.py::test_replace_long_shebang_with_truncation_python": 0.0023359540576821033,
"tests/core/test_portability.py::test_replace_normal_shebang_spaces_in_prefix_escaped_space": 0.0021335512849978574,
"tests/core/test_portability.py::test_replace_normal_shebang_spaces_in_prefix_python": 0.0020332932496207137,
"tests/core/test_portability.py::test_replace_simple_shebang_no_replacement": 0.002204653478576346,
"tests/core/test_portability.py::test_shebang_regex_matches": 0.0022144662426759375,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_get_environment_env_vars": 0.0191506761677264,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_set_unset_environment_env_vars": 0.0249036366609663,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_set_unset_environment_env_vars_no_exist": 0.023141407068318545,
"tests/core/test_prefix_data.py::test_corrupt_json_conda_meta_json": 0.0027668302587944425,
"tests/core/test_prefix_data.py::test_corrupt_unicode_conda_meta_json": 0.004445137837059226,
"tests/core/test_prefix_data.py::test_get_conda_anchor_files_and_records": 0.003335357317220589,
"tests/core/test_prefix_data.py::test_get_environment_env_vars": 0.27043368129696205,
"tests/core/test_prefix_data.py::test_pip_interop_osx": 1.8633296668240604,
"tests/core/test_prefix_data.py::test_pip_interop_windows": 1.2046505147712239,
"tests/core/test_prefix_data.py::test_set_unset_environment_env_vars": 0.17911611841263064,
"tests/core/test_prefix_data.py::test_set_unset_environment_env_vars_no_exist": 0.1721139675332397,
"tests/core/test_solve.py::test_aggressive_update_packages": 7.519421307803527,
"tests/core/test_solve.py::test_auto_update_conda": 5.390622432426422,
"tests/core/test_solve.py::test_broken_install": 7.754256138718396,
"tests/core/test_solve.py::test_channel_priority_churn_minimized": 16.85131833323286,
"tests/core/test_solve.py::test_conda_downgrade": 51.8490853390498,
"tests/core/test_solve.py::test_cuda_1": 1.0910582985794377,
"tests/core/test_solve.py::test_cuda_2": 1.0810908422110834,
"tests/core/test_solve.py::test_cuda_constrain_absent": 1.2308846867597383,
"tests/core/test_solve.py::test_cuda_constrain_sat": 0.0007263172404763493,
"tests/core/test_solve.py::test_cuda_constrain_unsat": 0.0007102294811174517,
"tests/core/test_solve.py::test_cuda_fail_1": 2.9714012959189495,
"tests/core/test_solve.py::test_cuda_fail_2": 1.1911292101428128,
"tests/core/test_solve.py::test_cuda_glibc_sat": 0.009307582423837621,
"tests/core/test_solve.py::test_cuda_glibc_unsat_constrain": 0.0008597365142485829,
"tests/core/test_solve.py::test_cuda_glibc_unsat_depend": 0.0009789354843991011,
"tests/core/test_solve.py::test_current_repodata_fallback": 0.07738506349086627,
"tests/core/test_solve.py::test_current_repodata_usage": 0.07547598956020256,
"tests/core/test_solve.py::test_determine_constricting_specs_conflicts": 0.0057360590992773545,
"tests/core/test_solve.py::test_determine_constricting_specs_conflicts_upperbound": 0.005460999701189611,
"tests/core/test_solve.py::test_determine_constricting_specs_multi_conflicts": 0.0064142775003354045,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_free": 0.004847462964164387,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_no_upperbound": 0.005266219450921089,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_upperbound_compound_depends": 0.005515466271515257,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_version_star": 0.005321445541223775,
"tests/core/test_solve.py::test_downgrade_python_prevented_with_sane_message": 6.54211296832566,
"tests/core/test_solve.py::test_explicit_conda_downgrade": 5.3000252898219,
"tests/core/test_solve.py::test_fast_update_with_update_modifier_not_set": 2.322675993490091,
"tests/core/test_solve.py::test_features_solve_1": 7.9092134210943135,
"tests/core/test_solve.py::test_force_reinstall_1": 2.7551357306292914,
"tests/core/test_solve.py::test_force_reinstall_2": 1.1476814788725023,
"tests/core/test_solve.py::test_force_remove_1": 7.664271106183209,
"tests/core/test_solve.py::test_freeze_deps_1": 49.726759763130815,
"tests/core/test_solve.py::test_indirect_dep_optimized_by_version_over_package_count": 8.649085827365129,
"tests/core/test_solve.py::test_no_deps_1": 6.952769640468105,
"tests/core/test_solve.py::test_no_update_deps_1": 5.073235233308134,
"tests/core/test_solve.py::test_only_deps_1": 2.0338226408109406,
"tests/core/test_solve.py::test_only_deps_2": 9.976826393571491,
"tests/core/test_solve.py::test_packages_in_solution_change_already_newest": 0.006346177219034605,
"tests/core/test_solve.py::test_packages_in_solution_change_constrained": 0.004575702325264048,
"tests/core/test_solve.py::test_packages_in_solution_change_needs_update": 0.005440726384760672,
"tests/core/test_solve.py::test_pinned_1": 18.20152671529281,
"tests/core/test_solve.py::test_priority_1": 34.08420582024367,
"tests/core/test_solve.py::test_prune_1": 4.1418277545867905,
"tests/core/test_solve.py::test_python2_update": 10.683699836722376,
"tests/core/test_solve.py::test_remove_with_constrained_dependencies": 10.649619073021341,
"tests/core/test_solve.py::test_solve_1": 5.704088795797024,
"tests/core/test_solve.py::test_solve_2": 26.16267417875605,
"tests/core/test_solve.py::test_solve_msgs_exclude_vp": 1.366685242259184,
"tests/core/test_solve.py::test_timestamps_1": 0.7720885781197866,
"tests/core/test_solve.py::test_unfreeze_when_required": 0.23442533954672637,
"tests/core/test_solve.py::test_update_all_1": 6.750568852655072,
"tests/core/test_solve.py::test_update_deps_1": 13.304238738386807,
"tests/core/test_solve.py::test_update_deps_2": 16.703490189438064,
"tests/core/test_solve.py::test_update_prune_1": 3.559032118247237,
"tests/core/test_solve.py::test_update_prune_2": 3.5068339186257207,
"tests/core/test_solve.py::test_update_prune_3": 4.567422397001325,
"tests/core/test_solve.py::test_update_prune_4": 3.626780831670523,
"tests/core/test_solve.py::test_update_prune_5[False]": 4.505371287287249,
"tests/core/test_solve.py::test_update_prune_5[True]": 3.541579129404829,
"tests/core/test_solve.py::test_virtual_package_solver": 1.1682509044271412,
"tests/core/test_subdir_data.py::FetchLocalRepodataTests::test_fetch_repodata_remote_request_invalid_arch": 0.0041649020653779,
"tests/core/test_subdir_data.py::FetchLocalRepodataTests::test_fetch_repodata_remote_request_invalid_noarch": 0.0035737577671498756,
"tests/core/test_subdir_data.py::GetRepodataIntegrationTests::test_get_index_no_platform_with_offline_cache": 0.4266272327416384,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_cache_fn_url_repo_anaconda_com": 0.0013334556849814913,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_cache_fn_url_repo_continuum_io": 0.001603886611375275,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_etag_mod": 0.011235455636479447,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_etag_only": 0.007192228386344205,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_mod_etag": 0.005454442071163369,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_mod_only": 0.007035118634359165,
"tests/core/test_subdir_data.py::test_cache_fn_url_repo_anaconda_com": 0.0019461743415554694,
"tests/core/test_subdir_data.py::test_cache_fn_url_repo_continuum_io": 0.001991930374573534,
"tests/core/test_subdir_data.py::test_cache_json": 0.003180166007950902,
"tests/core/test_subdir_data.py::test_fetch_repodata_remote_request_invalid_arch": 0.008294058357847845,
"tests/core/test_subdir_data.py::test_fetch_repodata_remote_request_invalid_noarch": 0.004991192070254267,
"tests/core/test_subdir_data.py::test_get_index_no_platform_with_offline_cache": 0.8085837136285715,
"tests/core/test_subdir_data.py::test_metadata_cache_clearing": 0.03008098127017389,
"tests/core/test_subdir_data.py::test_metadata_cache_works": 3.0907781275406143,
"tests/core/test_subdir_data.py::test_no_ssl": 0.0034562580907228314,
"tests/core/test_subdir_data.py::test_repodata_version_error": 1.152040004898684,
"tests/core/test_subdir_data.py::test_search_by_packagerecord": 0.02062509169646858,
"tests/core/test_subdir_data.py::test_state_is_not_json": 0.27834596831296554,
"tests/core/test_subdir_data.py::test_subdir_data_coverage": 0.11617908059506266,
"tests/core/test_subdir_data.py::test_subdir_data_dict_state": 0.0027481255990348162,
"tests/core/test_subdir_data.py::test_subdir_data_prefers_conda_to_tar_bz2": 0.02716242915392833,
"tests/core/test_subdir_data.py::test_use_only_tar_bz2": 0.03658461522515281,
"tests/gateways/disk/test_delete.py::test_backoff_unlink": 0.027661561631675338,
"tests/gateways/disk/test_delete.py::test_backoff_unlink_doesnt_exist": 0.0033788195465774998,
"tests/gateways/disk/test_delete.py::test_move_path_to_trash_couldnt": 0.004011167877757725,
"tests/gateways/disk/test_delete.py::test_move_to_trash": 0.026698052552122983,
"tests/gateways/disk/test_delete.py::test_remove_dir": 0.028497294512145183,
"tests/gateways/disk/test_delete.py::test_remove_file": 0.005138029655589206,
"tests/gateways/disk/test_delete.py::test_remove_file_to_trash": 0.004196460134344905,
"tests/gateways/disk/test_delete.py::test_remove_link_to_dir": 0.032565958113108855,
"tests/gateways/disk/test_delete.py::test_remove_link_to_file": 0.009576695693866905,
"tests/gateways/disk/test_delete.py::test_rm_rf_does_not_follow_symlinks": 0.05707724222260737,
"tests/gateways/disk/test_delete.py::test_try_rmdir_all_empty_doesnt_exist": 0.026244406230284602,
"tests/gateways/disk/test_link.py::LinkSymlinkUnlinkIslinkReadlinkTests::test_hard_link": 0.015113590033942675,
"tests/gateways/disk/test_link.py::LinkSymlinkUnlinkIslinkReadlinkTests::test_soft_link": 0.01766994438093413,
"tests/gateways/disk/test_link.py::test_hard_link": 0.006407412603163407,
"tests/gateways/disk/test_link.py::test_soft_link": 0.006992592026799746,
"tests/gateways/disk/test_permissions.py::test_make_executable": 0.003949888719657751,
"tests/gateways/disk/test_permissions.py::test_make_writable": 0.0074839172496852565,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EACCES": 0.004253518452415727,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EPERM": 0.007938495181366108,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EROFS": 0.004312780130147806,
"tests/gateways/disk/test_permissions.py::test_make_writable_doesnt_exist": 0.0026234748992812174,
"tests/gateways/disk/test_permissions.py::test_recursive_make_writable": 0.007727580320037508,
"tests/gateways/disk/test_read.py::test_cherrypy_py27_osx_no_binary": 0.04380950907094178,
"tests/gateways/disk/test_read.py::test_cherrypy_py36_osx_whl": 0.06284414938187521,
"tests/gateways/disk/test_read.py::test_pyjwt_py27_osx_no_binary": 0.01185579239764454,
"tests/gateways/disk/test_read.py::test_pyjwt_py36_osx_whl": 0.015011254806705097,
"tests/gateways/disk/test_read.py::test_scrapy_py27_osx_no_binary": 0.097426940253441,
"tests/gateways/disk/test_read.py::test_scrapy_py36_osx_whl": 0.14862069220316704,
"tests/gateways/disk/test_read.py::test_six_py27_osx_no_binary_unmanageable": 0.008514760442949713,
"tests/gateways/disk/test_read.py::test_twilio_py27_osx_no_binary": 0.1263478032590643,
"tests/gateways/disk/test_read.py::test_twilio_py36_osx_whl": 0.19419312699096175,
"tests/gateways/test_connection.py::CondaHttpAuthTests::test_add_binstar_token": 0.011798162546264295,
"tests/gateways/test_connection.py::CondaSessionTests::test_local_file_adapter_200": 0.009238116165235241,
"tests/gateways/test_connection.py::CondaSessionTests::test_local_file_adapter_404": 0.0023646202489596437,
"tests/gateways/test_connection.py::test_add_binstar_token": 0.011584331912233743,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[http://localhost-channels3-http://localhost]": 0.025724752101182163,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[http://localhost/noarch/test-package-0.1.0.conda-channels2-http://localhost]": 0.023249994660913667,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[https://conda.anaconda.org/conda-forge/linux-64/test-package-0.1.0.tar.bz2-channels1-conda-forge]": 0.026400949342637616,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[https://repo.anaconda.com/pkgs/main/linux-64/test-package-0.1.0.conda-channels0-defaults]": 0.02487661377874197,
"tests/gateways/test_connection.py::test_get_session_returns_default": 0.05458702179268135,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings": 0.036079299404887515,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings_multiple": 0.014818679554716668,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings_no_handler": 0.007857116649602388,
"tests/gateways/test_connection.py::test_local_file_adapter_200": 0.010969381251257973,
"tests/gateways/test_connection.py::test_local_file_adapter_404": 0.004196162219835098,
"tests/gateways/test_connection.py::test_s3_server": 4.7631064324128,
"tests/gateways/test_jlap.py::test_download_and_hash": 0.697778913105987,
"tests/gateways/test_jlap.py::test_hashwriter": 0.0018658686316471186,
"tests/gateways/test_jlap.py::test_jlap_cache_clock[False]": 0.1518564591360547,
"tests/gateways/test_jlap.py::test_jlap_cache_clock[True]": 0.18320717786325752,
"tests/gateways/test_jlap.py::test_jlap_core": 0.009930382555298899,
"tests/gateways/test_jlap.py::test_jlap_coverage": 0.0020107799026701,
"tests/gateways/test_jlap.py::test_jlap_errors": 0.15988039108958724,
"tests/gateways/test_jlap.py::test_jlap_fetch": 0.6944076240815881,
"tests/gateways/test_jlap.py::test_jlap_fetch_file": 0.1352281284627158,
"tests/gateways/test_jlap.py::test_jlap_fetch_ssl[False]": 0.6527939740399784,
"tests/gateways/test_jlap.py::test_jlap_fetch_ssl[True]": 7.631884470926152,
"tests/gateways/test_jlap.py::test_jlap_flag[]": 0.0037304503221481625,
"tests/gateways/test_jlap.py::test_jlap_flag[jlap,another]": 0.0037450829804655784,
"tests/gateways/test_jlap.py::test_jlap_flag[jlap]": 0.00379182035336129,
"tests/gateways/test_jlap.py::test_jlap_flag[jlapopotamus]": 0.0038452020231009194,
"tests/gateways/test_jlap.py::test_jlap_sought": 0.21981843422620123,
"tests/gateways/test_jlap.py::test_jlap_zst_not_404": 0.006949837353648901,
"tests/gateways/test_jlap.py::test_repodata_info_jsondecodeerror[False]": 0.04215303148934546,
"tests/gateways/test_jlap.py::test_repodata_info_jsondecodeerror[True]": 0.0645927734740942,
"tests/gateways/test_jlap.py::test_repodata_state[False]": 0.2613648119085905,
"tests/gateways/test_jlap.py::test_repodata_state[True]": 0.9094430912145973,
"tests/gateways/test_jlap.py::test_server_available": 1.5917491594748956,
"tests/gateways/test_logging.py::test_token_replace_big_string": 0.0027917785075111156,
"tests/gateways/test_logging.py::test_token_replace_individual_strings": 0.0018819470588974149,
"tests/gateways/test_repodata_gateway.py::test_cache_json": 0.030215289493765195,
"tests/gateways/test_repodata_gateway.py::test_coverage_conda_http_errors": 0.014417128467229335,
"tests/gateways/test_repodata_gateway.py::test_coverage_repodata_state": 0.01758512539434417,
"tests/gateways/test_repodata_gateway.py::test_lock_can_lock": 10.020488337846473,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[false-False]": 0.014287708831791876,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[false-True]": 0.023433654994625637,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[true-False]": 0.015756461940882927,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[true-True]": 0.018520118376260643,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_formats[False]": 0.04819392655837512,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_formats[True]": 0.06840418723944483,
"tests/gateways/test_repodata_gateway.py::test_repodata_state_has_format": 0.0029983272758252145,
"tests/gateways/test_repodata_gateway.py::test_save": 0.18800457704084209,
"tests/gateways/test_repodata_gateway.py::test_ssl_unavailable_error_message": 0.0022331692722584533,
"tests/gateways/test_repodata_gateway.py::test_stale": 0.05904631599208227,
"tests/gateways/test_repodata_lock.py::test_lock_can_lock[False]": 1.5392313880836044,
"tests/gateways/test_repodata_lock.py::test_lock_can_lock[True]": 10.992836422237419,
"tests/gateways/test_repodata_lock.py::test_lock_rename": 0.029251185390570228,
"tests/gateways/test_subprocess.py::test_subprocess_call_with_capture_output": 0.5871941920371386,
"tests/gateways/test_subprocess.py::test_subprocess_call_without_capture_output": 0.580387627739913,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_canonicalized_url_gets_correct_token": 0.007695769396811133,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_channel_alias_w_conda_path": 0.0035620555613255804,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_channel_alias_w_subhcnnale": 0.0015874272516017494,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_custom_token_in_channel": 0.011444192424228268,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_token_in_custom_channel": 0.012474963173756666,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_channel_alias": 0.014238996014285379,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_default_channels": 0.0030747892394392116,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_named_custom_channel": 0.0034936473962882885,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_named_custom_channel_w_subchan": 0.00599339749640753,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_url_custom_channel": 0.007528184404448592,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_url_custom_channel_w_subchan": 0.012437387491431317,
"tests/models/test_channel.py::ChannelEnvironmentVarExpansionTest::test_expanded_variables": 0.02052471190302143,
"tests/models/test_channel.py::ChannelEnvironmentVarExpansionTest::test_unexpanded_variables": 0.02760281865328911,
"tests/models/test_channel.py::CustomConfigChannelTests::test_custom_channels": 0.021910020111124497,
"tests/models/test_channel.py::CustomConfigChannelTests::test_custom_channels_port_token_auth": 0.020069897334866114,
"tests/models/test_channel.py::CustomConfigChannelTests::test_defaults_channel": 0.020662622823028373,
"tests/models/test_channel.py::CustomConfigChannelTests::test_file_channel": 0.024919315080561857,
"tests/models/test_channel.py::CustomConfigChannelTests::test_local_channel": 0.0337926240942281,
"tests/models/test_channel.py::CustomConfigChannelTests::test_migrated_custom_channels": 0.02218885700616393,
"tests/models/test_channel.py::CustomConfigChannelTests::test_old_channel_alias": 0.02183973390886117,
"tests/models/test_channel.py::CustomConfigChannelTests::test_pkgs_main": 0.019755311696592722,
"tests/models/test_channel.py::CustomConfigChannelTests::test_pkgs_pro": 0.02163727016566536,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_bare_channel_file": 0.004307390495672845,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_bare_channel_http": 0.0015241907338265797,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_alias_channels": 0.002012505532941804,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_cache": 0.0032611433753621673,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_host_port": 0.0012509983164578403,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_name_subdir_only": 0.00305517779273577,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_default_channel": 0.0029869634264951908,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_url_channel_w_platform": 0.003008467246787301,
"tests/models/test_channel.py::OtherChannelParsingTests::test_channels_with_dashes": 0.02674174155190518,
"tests/models/test_channel.py::UnknownChannelTests::test_regression_against_unknown_none": 0.002390590473930165,
"tests/models/test_channel.py::UrlChannelTests::test_env_var_file_urls": 0.005823867024543584,
"tests/models/test_channel.py::UrlChannelTests::test_file_url_with_backslashes": 0.0018108886053818615,
"tests/models/test_channel.py::UrlChannelTests::test_file_urls": 0.0015823783221375234,
"tests/models/test_channel.py::UrlChannelTests::test_subdir_env_var": 0.007763244642042298,
"tests/models/test_channel.py::UrlChannelTests::test_subdirs_env_var": 0.011636703165701255,
"tests/models/test_channel.py::test_bare_channel_file": 0.002757525395336271,
"tests/models/test_channel.py::test_bare_channel_http": 0.002885084826955773,
"tests/models/test_channel.py::test_canonicalized_url_gets_correct_token": 0.026560818632820282,
"tests/models/test_channel.py::test_channel_alias": 0.03461166334103739,
"tests/models/test_channel.py::test_channel_alias_channels": 0.0025630806422642528,
"tests/models/test_channel.py::test_channel_alias_w_conda_path": 0.027114858564643074,
"tests/models/test_channel.py::test_channel_alias_w_subhcnnale": 0.02677190894819137,
"tests/models/test_channel.py::test_channel_cache": 0.0020008742161279126,
"tests/models/test_channel.py::test_channel_host_port": 0.0023101094218274964,
"tests/models/test_channel.py::test_channel_mangles_urls": 0.003117550547735988,
"tests/models/test_channel.py::test_channel_name_subdir_only": 0.005031739049312342,
"tests/models/test_channel.py::test_channels_with_dashes": 0.027511902511035632,
"tests/models/test_channel.py::test_custom_channels": 0.03778881355354261,
"tests/models/test_channel.py::test_custom_channels_port_token_auth": 0.03696598140224733,
"tests/models/test_channel.py::test_custom_token_in_channel": 0.02646524816034388,
"tests/models/test_channel.py::test_default_channel": 0.005819642348911442,
"tests/models/test_channel.py::test_default_channels": 0.03664767851270826,
"tests/models/test_channel.py::test_defaults_channel": 0.047510358854906544,
"tests/models/test_channel.py::test_env_var_file_urls": 0.004389066316068274,
"tests/models/test_channel.py::test_expanded_variables": 0.034331478562335746,
"tests/models/test_channel.py::test_file_channel": 0.03919091860299376,
"tests/models/test_channel.py::test_file_url_with_backslashes": 0.002683017475773923,
"tests/models/test_channel.py::test_file_urls": 0.0021969918111322856,
"tests/models/test_channel.py::test_local_channel": 0.06723155725127078,
"tests/models/test_channel.py::test_migrated_custom_channels": 0.03763834262877177,
"tests/models/test_channel.py::test_multichannel_priority": 0.005322624408026486,
"tests/models/test_channel.py::test_named_custom_channel": 0.04148172114365981,
"tests/models/test_channel.py::test_named_custom_channel_w_subchan": 0.038069192755816585,
"tests/models/test_channel.py::test_old_channel_alias": 0.038934525890497486,
"tests/models/test_channel.py::test_pkgs_main": 0.037145276515243165,
"tests/models/test_channel.py::test_pkgs_pro": 0.04115208479649564,
"tests/models/test_channel.py::test_ppc64le_vs_ppc64": 0.004019216179828064,
"tests/models/test_channel.py::test_regression_against_unknown_none": 0.004282351553393384,
"tests/models/test_channel.py::test_subdir_env_var": 0.008687888970959332,
"tests/models/test_channel.py::test_subdirs_env_var": 0.011081440327633828,
"tests/models/test_channel.py::test_token_in_custom_channel": 0.0028949527783882316,
"tests/models/test_channel.py::test_unexpanded_variables": 0.037082665566533404,
"tests/models/test_channel.py::test_url_channel_w_platform": 0.005613836839960505,
"tests/models/test_channel.py::test_url_custom_channel": 0.037426167144351125,
"tests/models/test_channel.py::test_url_custom_channel_w_subchan": 0.034035252629693716,
"tests/models/test_dist.py::test_channel[.conda]": 0.004427378736407425,
"tests/models/test_dist.py::test_channel[.tar.bz2]": 0.002948760983240315,
"tests/models/test_dist.py::test_dist[.conda]": 0.00363070666280092,
"tests/models/test_dist.py::test_dist[.tar.bz2]": 0.003067146097246521,
"tests/models/test_dist.py::test_dist_with_channel_url[.conda]": 0.06039067605983919,
"tests/models/test_dist.py::test_dist_with_channel_url[.tar.bz2]": 0.06243238089534777,
"tests/models/test_dist.py::test_dist_with_non_channel_url[.conda]": 0.003908406699443357,
"tests/models/test_dist.py::test_dist_with_non_channel_url[.tar.bz2]": 0.0038919923913615516,
"tests/models/test_index_record.py::PrefixRecordTests::test_index_record_timestamp": 0.0029546758000856895,
"tests/models/test_index_record.py::PrefixRecordTests::test_prefix_record_no_channel": 0.005368733933920701,
"tests/models/test_index_record.py::test_index_record_timestamp": 0.004079979988794307,
"tests/models/test_index_record.py::test_prefix_record_no_channel": 0.007105153836405772,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_build_merge": 0.003793199208433843,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_build_number_merge": 0.0022240994035623617,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_catch_invalid_regexes": 0.0022479407771418274,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_channel_merge": 0.0022419440536161944,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_hash_merge_with_name": 0.005272602300547455,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_hash_merge_wo_name": 0.003818111269869715,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_md5_merge_with_name": 0.0008112825379347434,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_md5_merge_wo_name": 0.0006096247292387842,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_merge_multiple_name": 0.0037991644022879246,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_merge_single_name": 0.0027951897885730476,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_subdir_merge": 0.002812610523427663,
"tests/models/test_match_spec.py::MatchSpecTests::test_bracket_matches": 0.007300892374958301,
"tests/models/test_match_spec.py::MatchSpecTests::test_build_number_and_filename": 0.001577479762830718,
"tests/models/test_match_spec.py::MatchSpecTests::test_canonical_string_forms": 0.009145758407568072,
"tests/models/test_match_spec.py::MatchSpecTests::test_channel_matching": 0.004917700419934945,
"tests/models/test_match_spec.py::MatchSpecTests::test_dist": 0.00489833333409126,
"tests/models/test_match_spec.py::MatchSpecTests::test_exact_values": 0.008404375128384626,
"tests/models/test_match_spec.py::MatchSpecTests::test_hash": 0.001622394592602629,
"tests/models/test_match_spec.py::MatchSpecTests::test_index_record": 0.010698249575302752,
"tests/models/test_match_spec.py::MatchSpecTests::test_key_value_features_canonical_string_forms": 0.0005108003058212844,
"tests/models/test_match_spec.py::MatchSpecTests::test_legacy_features_canonical_string_forms": 0.0015082341180732777,
"tests/models/test_match_spec.py::MatchSpecTests::test_license_match": 0.011253580013461066,
"tests/models/test_match_spec.py::MatchSpecTests::test_match_1": 0.02783860408983755,
"tests/models/test_match_spec.py::MatchSpecTests::test_matchspec_errors": 0.0022980272235950897,
"tests/models/test_match_spec.py::MatchSpecTests::test_no_name_match_spec": 0.0011929617464885836,
"tests/models/test_match_spec.py::MatchSpecTests::test_openssl_match": 0.0020888821472478175,
"tests/models/test_match_spec.py::MatchSpecTests::test_strictness": 0.0019601211289071527,