forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Windows.json
1820 lines (1820 loc) · 167 KB
/
Windows.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.0060628535938956575,
"conda/auxlib/collection.py::AttrDict:0": 0.006207298347390636,
"conda/auxlib/collection.py::first:0": 0.005472906112659549,
"conda/auxlib/ish.py::find_or_none:0": 0.00375589795644811,
"conda/auxlib/type_coercion.py::boolify:0": 0.004663068002814691,
"conda/auxlib/type_coercion.py::listify:0": 0.0027902536101167244,
"conda/auxlib/type_coercion.py::numberify:0": 0.004293412413763727,
"conda/auxlib/type_coercion.py::typify:0": 0.0034004513570994716,
"conda/cli/python_api.py::run_command:0": 24.958724684118064,
"conda/common/path.py::ensure_pad:0": 0.0028574224818963385,
"conda/common/path.py::is_package_file:0": 0.0034035072368448376,
"conda/common/path.py::is_private_env_name:0": 0.00349349103511801,
"conda/common/path.py::is_private_env_path:0": 0.0028095798505562825,
"conda/common/path.py::paths_equal:0": 0.004285347917967492,
"conda/common/path.py::strip_pkg_extension:0": 0.003011213133230698,
"conda/common/serialize.py::yaml_safe_load:0": 0.004215020252954391,
"conda/common/signals.py::get_signal_name:0": 0.003358837217862109,
"conda/common/url.py::is_ip_address:0": 0.0016658414419115472,
"conda/common/url.py::is_ipv4_address:0": 0.003571328042711353,
"conda/common/url.py::is_ipv6_address:0": 0.0017977920867302583,
"conda/common/url.py::is_url:0": 0.003396283773065382,
"conda/common/url.py::maybe_add_auth:0": 0.0031041611124642066,
"conda/common/url.py::split_anaconda_token:0": 0.003915214212646585,
"conda/common/url.py::split_platform:0": 0.005453745983277874,
"conda/common/url.py::split_scheme_auth_token:0": 0.0030633258372512345,
"conda/common/url.py::strip_scheme:0": 0.0048170236678022026,
"conda/common/url.py::url_to_s3_info:0": 0.003803354488438255,
"conda/gateways/connection/adapters/ftp.py::get_status_code_from_code_response:0": 0.0033730937703089943,
"conda/gateways/disk/update.py::rename_context:0": 0.0019436698781536822,
"conda/lock.py::touch:0": 0.0060714661901301,
"conda/models/match_spec.py::MatchSpec:0": 0.006299435834289315,
"conda/models/match_spec.py::_parse_legacy_dist:0": 0.0028431544244749327,
"conda/models/match_spec.py::_parse_version_plus_build:0": 0.004025397951686475,
"conda/models/version.py::VersionOrder:0": 0.0013344452992508056,
"conda/models/version.py::treeify:0": 0.0038021838519262793,
"conda/models/version.py::untreeify:0": 0.003190715265456747,
"conda/plugins/hookspec.py::CondaSpecs.conda_solvers:0": 0.001806135908887197,
"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.00787542958711397,
"tests/base/test_constants.py::test_ChannelPriority": 0.0024529805558103695,
"tests/base/test_constants.py::test_null_is_falsey": 0.002621975711984307,
"tests/base/test_context.py::ContextCustomRcTests::test_aggressive_update_packages": 0.021412265014330096,
"tests/base/test_context.py::ContextCustomRcTests::test_channel_priority": 0.01845171072415641,
"tests/base/test_context.py::ContextCustomRcTests::test_channel_settings": 0.026549402301011406,
"tests/base/test_context.py::ContextCustomRcTests::test_channels_defaults": 0.018534327823904517,
"tests/base/test_context.py::ContextCustomRcTests::test_channels_defaults_condarc": 0.019292396431587075,
"tests/base/test_context.py::ContextCustomRcTests::test_client_ssl_cert": 0.028735944008206653,
"tests/base/test_context.py::ContextCustomRcTests::test_clobber_enum": 0.018547378962144142,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_bld_path": 0.0267263479605066,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_build_root_dir": 0.019013427173945576,
"tests/base/test_context.py::ContextCustomRcTests::test_conda_envs_path": 0.03313014730103578,
"tests/base/test_context.py::ContextCustomRcTests::test_context_parameter_map": 0.017802264349592273,
"tests/base/test_context.py::ContextCustomRcTests::test_context_parameters_have_descriptions": 0.03896994109492639,
"tests/base/test_context.py::ContextCustomRcTests::test_custom_multichannels": 0.019361521886489767,
"tests/base/test_context.py::ContextCustomRcTests::test_default_target_is_root_prefix": 0.018104145373460532,
"tests/base/test_context.py::ContextCustomRcTests::test_expandvars": 0.06530233346097093,
"tests/base/test_context.py::ContextCustomRcTests::test_local_build_root_custom_rc": 0.019380824167017488,
"tests/base/test_context.py::ContextCustomRcTests::test_migrated_custom_channels": 0.019651889782854794,
"tests/base/test_context.py::ContextCustomRcTests::test_old_channel_alias": 0.019877863823659078,
"tests/base/test_context.py::ContextCustomRcTests::test_proxy_servers": 0.017928330269335442,
"tests/base/test_context.py::ContextCustomRcTests::test_restore_free_channel": 0.020939087292908602,
"tests/base/test_context.py::ContextCustomRcTests::test_signing_metadata_url_base": 0.0264577554440457,
"tests/base/test_context.py::ContextCustomRcTests::test_signing_metadata_url_base_empty_default_channels": 0.024693418098976898,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_channels_cli_adding_defaults_no_condarc": 0.019820271960445782,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_channels_cli_condarc": 0.020360613045966133,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_different_channels_cli_condarc": 0.020248228544208956,
"tests/base/test_context.py::ContextCustomRcTests::test_specify_same_channels_cli_as_in_condarc": 0.02020876590826883,
"tests/base/test_context.py::ContextCustomRcTests::test_target_prefix": 0.04034870076475861,
"tests/base/test_context.py::ContextCustomRcTests::test_threads": 0.02232317511476419,
"tests/base/test_context.py::ContextDefaultRcTests::test_local_build_root_default_rc": 0.001504462564560367,
"tests/base/test_context.py::ContextDefaultRcTests::test_subdirs": 0.0018074267670049767,
"tests/base/test_context.py::test_aggressive_update_packages": 0.047875132820831376,
"tests/base/test_context.py::test_channel_priority": 0.04665988036734564,
"tests/base/test_context.py::test_channel_settings": 0.04724745842625049,
"tests/base/test_context.py::test_channels_defaults": 0.04814849803322448,
"tests/base/test_context.py::test_channels_defaults_condarc": 0.0491553100913003,
"tests/base/test_context.py::test_client_ssl_cert": 0.07456546343943785,
"tests/base/test_context.py::test_clobber_enum": 0.04811196154701722,
"tests/base/test_context.py::test_conda_bld_path": 0.06271993302216053,
"tests/base/test_context.py::test_conda_build_root_dir": 0.04595027512227715,
"tests/base/test_context.py::test_conda_envs_path": 0.08730630431197986,
"tests/base/test_context.py::test_context_parameter_map": 0.04563512401693234,
"tests/base/test_context.py::test_context_parameters_have_descriptions": 0.09417932681780196,
"tests/base/test_context.py::test_custom_multichannels": 0.04988322893194682,
"tests/base/test_context.py::test_default_target_is_root_prefix": 0.046661175283992655,
"tests/base/test_context.py::test_expandvars": 0.17481365966840642,
"tests/base/test_context.py::test_local_build_root_custom_rc": 0.0501603168906918,
"tests/base/test_context.py::test_local_build_root_default_rc": 0.02268025104121506,
"tests/base/test_context.py::test_migrated_custom_channels": 0.052749797223503855,
"tests/base/test_context.py::test_old_channel_alias": 0.052123378643184025,
"tests/base/test_context.py::test_proxy_servers": 0.04707785498295908,
"tests/base/test_context.py::test_restore_free_channel": 0.054108727289346355,
"tests/base/test_context.py::test_signing_metadata_url_base": 0.06827499714826318,
"tests/base/test_context.py::test_signing_metadata_url_base_empty_default_channels": 0.0686740283078438,
"tests/base/test_context.py::test_specify_channels_cli_adding_defaults_no_condarc": 0.04883394296315613,
"tests/base/test_context.py::test_specify_channels_cli_condarc": 0.05206662373477278,
"tests/base/test_context.py::test_specify_different_channels_cli_condarc": 0.051004772195075244,
"tests/base/test_context.py::test_specify_same_channels_cli_as_in_condarc": 0.05131686518569494,
"tests/base/test_context.py::test_subdirs": 0.004431177486203642,
"tests/base/test_context.py::test_target_prefix": 0.09400438021245505,
"tests/base/test_context.py::test_threads": 0.0574269573616416,
"tests/base/test_context.py::test_validate_prefix_name[base-False-mock_return_values2-expected2]": 0.005164614627009847,
"tests/base/test_context.py::test_validate_prefix_name[env-name-False-mock_return_values0-expected0]": 0.005438233177442234,
"tests/base/test_context.py::test_validate_prefix_name[not/allow#characters:in-path-False-mock_return_values1-expected1]": 0.004434506889781211,
"tests/cli/test_cli_install.py::test_find_conflicts_called_once": 5.142137356845166,
"tests/cli/test_cli_install.py::test_pre_link_message": 9.909853467827444,
"tests/cli/test_common.py::test_always_yes": 0.0005367984816311187,
"tests/cli/test_common.py::test_check_non_admin_enabled_false": 0.004655079601083386,
"tests/cli/test_common.py::test_check_non_admin_enabled_true": 0.004171153787647292,
"tests/cli/test_common.py::test_confirm_dry_run_exit": 0.00397782605059133,
"tests/cli/test_common.py::test_confirm_yn_always_yes": 0.00421739646520747,
"tests/cli/test_common.py::test_confirm_yn_dry_run_exit": 0.003990345759890522,
"tests/cli/test_common.py::test_confirm_yn_no": 0.00453945833544213,
"tests/cli/test_common.py::test_confirm_yn_yes": 0.004676543552654331,
"tests/cli/test_common.py::test_dry_run_exit": 0.0003979870456432672,
"tests/cli/test_common.py::test_is_active_prefix[-False]": 0.0024622762102671923,
"tests/cli/test_common.py::test_is_active_prefix[active_prefix-True]": 0.0023119618358211622,
"tests/cli/test_conda_argparse.py::test_cli_args_as_list": 0.04291121727952954,
"tests/cli/test_conda_argparse.py::test_cli_args_as_strings": 0.08362958981521626,
"tests/cli/test_conda_argparse.py::test_list_through_python_api": 5.32929878890622,
"tests/cli/test_conda_argparse.py::test_parser_basics": 0.027207810266943144,
"tests/cli/test_config.py::test_add_invalid_key": 0.08844798267963364,
"tests/cli/test_config.py::test_add_key": 0.10241642518316318,
"tests/cli/test_config.py::test_channels_add_duplicate": 0.09610195413366032,
"tests/cli/test_config.py::test_channels_add_empty": 0.09271737452627103,
"tests/cli/test_config.py::test_channels_add_empty_with_defaults": 0.09014707855907196,
"tests/cli/test_config.py::test_channels_append": 0.104312757577,
"tests/cli/test_config.py::test_channels_append_duplicate": 0.10328171355919981,
"tests/cli/test_config.py::test_channels_prepend": 0.10547361439128473,
"tests/cli/test_config.py::test_channels_prepend_duplicate": 0.10310239053601457,
"tests/cli/test_config.py::test_channels_remove": 0.1029145966877326,
"tests/cli/test_config.py::test_channels_remove_duplicate": 0.17870228743054953,
"tests/cli/test_config.py::test_create_condarc_on_set": 0.0894154797514141,
"tests/cli/test_config.py::test_custom_multichannels_add": 0.093275028582368,
"tests/cli/test_config.py::test_custom_multichannels_add_duplicate": 0.0996980338284625,
"tests/cli/test_config.py::test_custom_multichannels_append": 0.09284559414290833,
"tests/cli/test_config.py::test_custom_multichannels_append_duplicate": 0.09864513141923727,
"tests/cli/test_config.py::test_custom_multichannels_prepend": 0.09346271133516915,
"tests/cli/test_config.py::test_custom_multichannels_prepend_duplicate": 0.09894593180265852,
"tests/cli/test_config.py::test_get_all": 0.11219802873629861,
"tests/cli/test_config.py::test_get_all_inc_maps": 0.11766192503114328,
"tests/cli/test_config.py::test_get_boolean_value": 0.10661074004329317,
"tests/cli/test_config.py::test_get_channels_list": 0.1085486568537059,
"tests/cli/test_config.py::test_get_invalid_key": 0.10698342217318006,
"tests/cli/test_config.py::test_get_map_full": 0.10595257107006488,
"tests/cli/test_config.py::test_get_map_subkey[conda_build.cache_dir-/tmp/conda-bld]": 0.10690410949947393,
"tests/cli/test_config.py::test_get_map_subkey[proxy_servers.http-1.2.3.4:5678]": 0.10607937099095488,
"tests/cli/test_config.py::test_get_multiple_keys": 0.10866610185342608,
"tests/cli/test_config.py::test_get_multiple_keys_incl_map_full": 0.1149351432264456,
"tests/cli/test_config.py::test_get_multiple_keys_incl_map_subkey": 0.11419964593278943,
"tests/cli/test_config.py::test_get_string_value": 0.1066381644743798,
"tests/cli/test_config.py::test_get_unconfigured_key": 0.10501565339060528,
"tests/cli/test_config.py::test_invalid_yaml": 0.12190677023786081,
"tests/cli/test_config.py::test_remove_key": 0.10304099636985051,
"tests/cli/test_config.py::test_remove_key_duplicate": 0.17733712260126797,
"tests/cli/test_config.py::test_remove_unconfigured_key": 0.08719363044477593,
"tests/cli/test_config.py::test_set_and_get_bool": 0.17882766447262005,
"tests/cli/test_config.py::test_set_check_types[always_yes-false-False]": 0.09153913705513923,
"tests/cli/test_config.py::test_set_check_types[always_yes-no-False]": 0.09107531935552095,
"tests/cli/test_config.py::test_set_check_types[always_yes-true-True]": 0.09088571149522305,
"tests/cli/test_config.py::test_set_check_types[always_yes-yes-True]": 0.09280212481096771,
"tests/cli/test_config.py::test_set_check_types[channel_alias-https://repo.example.com-https://repo.example.com]": 0.0900011685483689,
"tests/cli/test_config.py::test_set_check_types[proxy_servers.http-1.2.3.4:5678-py_value5]": 0.0908257407203935,
"tests/cli/test_config.py::test_set_invalid_key": 0.08752428760736045,
"tests/cli/test_config.py::test_set_key": 0.10218283102423459,
"tests/cli/test_config.py::test_set_map_key[conda_build.cache_dir-/tmp/conda-bld-/var/tmp/build]": 0.10117611268289456,
"tests/cli/test_config.py::test_set_map_key[conda_build.error_overlinking-true-false]": 0.0007441659409915208,
"tests/cli/test_config.py::test_set_map_key[proxy_servers.http-1.2.3.4:5678-4.3.2.1:9876]": 0.10118978903980361,
"tests/cli/test_config.py::test_set_rc_without_user_rc": 0.09626485052138888,
"tests/cli/test_config.py::test_set_unconfigured_key": 0.10159063397363496,
"tests/cli/test_config.py::test_show_sorts_keys": 0.188686157466949,
"tests/cli/test_config.py::test_ssl_verify_default": 0.007124195094264674,
"tests/cli/test_config.py::test_ssl_verify_set_bool": 0.09465974026523101,
"tests/cli/test_config.py::test_ssl_verify_set_filename": 0.09251401133833173,
"tests/cli/test_config.py::test_ssl_verify_set_truststore": 0.11617994785052085,
"tests/cli/test_find_commands.py::test_find_commands": 0.04110435252056528,
"tests/cli/test_find_commands.py::test_find_executable": 0.016158134550192358,
"tests/cli/test_main.py::test_main": 0.05788231932760829,
"tests/cli/test_main_clean.py::test_clean_all": 3.6044783289482893,
"tests/cli/test_main_clean.py::test_clean_all[False]": 123.75981599854778,
"tests/cli/test_main_clean.py::test_clean_all[True]": 75.25564397113664,
"tests/cli/test_main_clean.py::test_clean_all_mock_lstat[False]": 53.94780826034278,
"tests/cli/test_main_clean.py::test_clean_all_mock_lstat[True]": 68.41421633054509,
"tests/cli/test_main_clean.py::test_clean_and_packages": 59.2309867629553,
"tests/cli/test_main_clean.py::test_clean_force_pkgs_dirs": 13.401361730309253,
"tests/cli/test_main_clean.py::test_clean_index_cache": 15.445836704752965,
"tests/cli/test_main_clean.py::test_clean_logfiles": 13.64409288066727,
"tests/cli/test_main_clean.py::test_clean_tarballs": 14.231777106394832,
"tests/cli/test_main_clean.py::test_clean_tempfiles": 18.368608202447014,
"tests/cli/test_main_clean.py::test_get_size": 0.004506432464939768,
"tests/cli/test_main_clean.py::test_get_size_None": 0.0021364157161326953,
"tests/cli/test_main_clean.py::test_get_size_list": 0.002133955796385706,
"tests/cli/test_main_compare.py::test_compare": 0.09320221493598445,
"tests/cli/test_main_config.py::test_config_get_missing[get]": 0.12378369650737092,
"tests/cli/test_main_config.py::test_config_get_missing[key]": 0.12120791155394449,
"tests/cli/test_main_config.py::test_config_get_missing[unknown]": 0.1235078778842947,
"tests/cli/test_main_config.py::test_config_get_system[get]": 0.12361084181720709,
"tests/cli/test_main_config.py::test_config_get_system[key]": 0.12149487322308782,
"tests/cli/test_main_config.py::test_config_get_system[unknown]": 0.12358000737820572,
"tests/cli/test_main_config.py::test_config_get_user[get]": 0.11932401191080436,
"tests/cli/test_main_config.py::test_config_get_user[key]": 0.12414252616689217,
"tests/cli/test_main_config.py::test_config_get_user[unknown]": 0.12658633497090974,
"tests/cli/test_main_config.py::test_config_show_sources_json": 0.10912433364413943,
"tests/cli/test_main_info.py::test_info": 0.5216089318881705,
"tests/cli/test_main_info.py::test_info_conda_json": 9.937979486966906,
"tests/cli/test_main_info.py::test_info_json": 0.18296830147842807,
"tests/cli/test_main_info.py::test_info_root": 0.22212386893543104,
"tests/cli/test_main_info.py::test_info_unsafe_channels": 0.2262724688001389,
"tests/cli/test_main_list.py::test_list": 2.710196910183699,
"tests/cli/test_main_list.py::test_list_json": 0.5030838458876254,
"tests/cli/test_main_list.py::test_list_package": 0.117164907413976,
"tests/cli/test_main_list.py::test_list_reverse": 7.701566476921662,
"tests/cli/test_main_list.py::test_list_revisions": 0.27754825577591874,
"tests/cli/test_main_notices.py::test_cache_names_appear_as_expected": 0.040346991824682404,
"tests/cli/test_main_notices.py::test_main_notices[200]": 0.040227577871039616,
"tests/cli/test_main_notices.py::test_main_notices[404]": 0.040457028084536294,
"tests/cli/test_main_notices.py::test_main_notices_handles_bad_expired_at_field": 0.04325640611254207,
"tests/cli/test_main_notices.py::test_main_notices_help": 0.025884838732970494,
"tests/cli/test_main_notices.py::test_main_notices_reads_from_cache": 0.04995727542481111,
"tests/cli/test_main_notices.py::test_main_notices_reads_from_expired_cache": 0.046734365338364496,
"tests/cli/test_main_notices.py::test_notices_appear_once_when_running_decorated_commands": 0.4917774512147968,
"tests/cli/test_main_notices.py::test_notices_cannot_read_cache_files": 0.09314625369684716,
"tests/cli/test_main_notices.py::test_notices_does_not_interrupt_command_on_failure": 0.221804330461529,
"tests/cli/test_main_notices.py::test_notices_work_with_s3_channel": 0.10578116173069178,
"tests/cli/test_main_rename.py::test_cannot_rename_active_env_by_name": 0.4149081909484961,
"tests/cli/test_main_rename.py::test_cannot_rename_base_env_by_name": 0.1733762040006241,
"tests/cli/test_main_rename.py::test_cannot_rename_base_env_by_path": 0.18301496159436523,
"tests/cli/test_main_rename.py::test_rename_by_name_name_already_exists_error": 1.2463949399361827,
"tests/cli/test_main_rename.py::test_rename_by_name_success": 0.7782223003992744,
"tests/cli/test_main_rename.py::test_rename_by_path_path_already_exists_error": 0.47446911496869804,
"tests/cli/test_main_rename.py::test_rename_by_path_success": 0.6537327274209123,
"tests/cli/test_main_rename.py::test_rename_with_dry_run": 0.4432879040987277,
"tests/cli/test_main_rename.py::test_rename_with_force": 0.8950537290762159,
"tests/cli/test_main_rename.py::test_rename_with_force_and_dry_run": 0.46091698875235326,
"tests/cli/test_main_rename.py::test_rename_with_force_with_errors": 0.6754977030012342,
"tests/cli/test_main_rename.py::test_rename_with_force_with_errors_prefix": 0.231028199298645,
"tests/cli/test_main_run.py::test_run_readonly_env": 0.0007855741296535028,
"tests/cli/test_main_run.py::test_run_returns_int": 1.2501723264668365,
"tests/cli/test_main_run.py::test_run_returns_nonzero_errorlevel": 1.2711491420045766,
"tests/cli/test_main_run.py::test_run_returns_zero_errorlevel": 1.2967819759673864,
"tests/cli/test_main_run.py::test_run_uncaptured": 1.2628834151786552,
"tests/cli/test_subcommands.py::test_clean": 2.076087784525637,
"tests/cli/test_subcommands.py::test_compare": 0.2483611128390789,
"tests/cli/test_subcommands.py::test_config": 0.09709385740587693,
"tests/cli/test_subcommands.py::test_create": 0.14175822910217487,
"tests/cli/test_subcommands.py::test_doctor": 38.304513033111164,
"tests/cli/test_subcommands.py::test_env_config_vars": 0.313654411256201,
"tests/cli/test_subcommands.py::test_env_create": 7.034123495859677,
"tests/cli/test_subcommands.py::test_env_export": 1.9662371959757856,
"tests/cli/test_subcommands.py::test_env_list": 0.16442716502077917,
"tests/cli/test_subcommands.py::test_env_remove": 0.22530469783264565,
"tests/cli/test_subcommands.py::test_env_update": 8.958465446529976,
"tests/cli/test_subcommands.py::test_info": 0.11051232030801823,
"tests/cli/test_subcommands.py::test_info_json": 0.3566816224685539,
"tests/cli/test_subcommands.py::test_init": 0.7339786974048373,
"tests/cli/test_subcommands.py::test_install": 0.4914891392369625,
"tests/cli/test_subcommands.py::test_list": 0.38112478494443996,
"tests/cli/test_subcommands.py::test_notices": 0.7866201321938756,
"tests/cli/test_subcommands.py::test_package": 0.23841128360636557,
"tests/cli/test_subcommands.py::test_remove[remove]": 0.24035826803839508,
"tests/cli/test_subcommands.py::test_remove[uninstall]": 0.24430477914713014,
"tests/cli/test_subcommands.py::test_remove_all_json[remove]": 0.3199878308504455,
"tests/cli/test_subcommands.py::test_remove_all_json[uninstall]": 0.36264699988332494,
"tests/cli/test_subcommands.py::test_rename": 0.26162258574867775,
"tests/cli/test_subcommands.py::test_run": 2.539749307826726,
"tests/cli/test_subcommands.py::test_search": 3.831866089443787,
"tests/cli/test_subcommands.py::test_update[update]": 5.506594262728494,
"tests/cli/test_subcommands.py::test_update[upgrade]": 2.466925376172976,
"tests/common/os/test_windows.py::test_is_admin_on_windows": 0.0019302238164238044,
"tests/common/pkg_formats/test_python.py::test_basepydist_load_requires_provides_file": 0.004285789245566621,
"tests/common/pkg_formats/test_python.py::test_basepydist_parse_entries_file_data": 0.0029970467544999085,
"tests/common/pkg_formats/test_python.py::test_basepydist_parse_requires_file_data": 0.002359087927013658,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths": 0.004105911370730022,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths_no_paths": 0.0029242579672886736,
"tests/common/pkg_formats/test_python.py::test_dist_get_paths_uppercase_algorithm": 0.008888366666847483,
"tests/common/pkg_formats/test_python.py::test_evaluate_marker": 0.0030095167127978753,
"tests/common/pkg_formats/test_python.py::test_get_default_marker_context": 0.002278468358019998,
"tests/common/pkg_formats/test_python.py::test_get_dist_file_from_egg_link": 0.011019218690627658,
"tests/common/pkg_formats/test_python.py::test_get_dist_requirements": 0.006726848419025585,
"tests/common/pkg_formats/test_python.py::test_get_entry_points": 0.006214255142651987,
"tests/common/pkg_formats/test_python.py::test_get_extra_provides": 0.005080000946986484,
"tests/common/pkg_formats/test_python.py::test_get_python_distribution_info": 0.0007213950658927582,
"tests/common/pkg_formats/test_python.py::test_get_site_packages_anchor_files": 0.011672828483312287,
"tests/common/pkg_formats/test_python.py::test_metadata": 0.0076176875607491075,
"tests/common/pkg_formats/test_python.py::test_metadata_keys": 0.0018576733526093243,
"tests/common/pkg_formats/test_python.py::test_metadata_process_path": 0.004261856274894572,
"tests/common/pkg_formats/test_python.py::test_metadata_read_metadata": 0.006330332348517641,
"tests/common/pkg_formats/test_python.py::test_norm_package_name": 0.002513384617777047,
"tests/common/pkg_formats/test_python.py::test_norm_package_version": 0.00263203950323589,
"tests/common/pkg_formats/test_python.py::test_parse_specification": 0.006048712679115624,
"tests/common/pkg_formats/test_python.py::test_pydist_check_files": 0.007464150317951677,
"tests/common/pkg_formats/test_python.py::test_pypi_name_to_conda_name": 0.002215444913036929,
"tests/common/pkg_formats/test_python.py::test_python_dist_egg_fpath": 0.0038455564559698374,
"tests/common/pkg_formats/test_python.py::test_python_dist_egg_path": 0.003755150862035195,
"tests/common/pkg_formats/test_python.py::test_python_dist_info": 0.005581672103482305,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies": 0.005314376319248862,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies_2": 0.004165072480589924,
"tests/common/pkg_formats/test_python.py::test_python_dist_info_conda_dependencies_3": 0.0040635204922978875,
"tests/common/pkg_formats/test_python.py::test_split_spec": 0.002512584220391902,
"tests/common/test_configuration.py::ConfigurationTests::test_commented_map_parameter": 0.0026221685894845565,
"tests/common/test_configuration.py::ConfigurationTests::test_config_resets": 0.0017666873573342703,
"tests/common/test_configuration.py::ConfigurationTests::test_cross_parameter_validation": 0.0008955814273561262,
"tests/common/test_configuration.py::ConfigurationTests::test_default_values": 0.0011225846245995076,
"tests/common/test_configuration.py::ConfigurationTests::test_empty_map_parameter": 0.004329844937194124,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config": 0.0013497640271419966,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_alias": 0.0013797387971164305,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_empty_sequence": 0.0012745185270913854,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_no_split_sequence": 0.0013713691544618182,
"tests/common/test_configuration.py::ConfigurationTests::test_env_var_config_split_sequence": 0.0013237876838319766,
"tests/common/test_configuration.py::ConfigurationTests::test_expanded_variables": 0.004993415371853751,
"tests/common/test_configuration.py::ConfigurationTests::test_important_primitive_map_merges": 0.06693413763998182,
"tests/common/test_configuration.py::ConfigurationTests::test_invalid_map_parameter": 0.0010693681493432086,
"tests/common/test_configuration.py::ConfigurationTests::test_invalid_seq_parameter": 0.0010256906193097342,
"tests/common/test_configuration.py::ConfigurationTests::test_list_merges": 0.05470665686606306,
"tests/common/test_configuration.py::ConfigurationTests::test_load_raw_configs": 0.022244298665980416,
"tests/common/test_configuration.py::ConfigurationTests::test_map_parameter_must_be_map": 0.001796820905463581,
"tests/common/test_configuration.py::ConfigurationTests::test_nested": 0.010873094227302151,
"tests/common/test_configuration.py::ConfigurationTests::test_object": 0.008507271391043802,
"tests/common/test_configuration.py::ConfigurationTests::test_parameter": 0.0009428473805422917,
"tests/common/test_configuration.py::ConfigurationTests::test_simple_merges_and_caching": 0.013301299039160238,
"tests/common/test_configuration.py::ConfigurationTests::test_validate_all": 0.008441267099120778,
"tests/common/test_configuration.py::ConfigurationTests::test_validation": 0.009923627149922414,
"tests/common/test_configuration.py::test_commented_map_parameter": 0.004498707993942176,
"tests/common/test_configuration.py::test_config_resets": 0.0037773399068505346,
"tests/common/test_configuration.py::test_cross_parameter_validation": 0.00199195013668346,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$$/suffix]": 0.000763727712387483,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$/suffix]": 0.002344307504488361,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$1/suffix]": 0.002269528607471792,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$MISSING/suffix]": 0.002322975149054237,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/$VARIABLE/suffix]": 0.0023967157131176077,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${1}/suffix]": 0.002319486399970055,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${MISSING}/suffix]": 0.002311566551223178,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${VARIABLE}/suffix]": 0.0023579176243362586,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/${}/suffix]": 0.002254942435098743,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%%/suffix]": 0.0007485237773185901,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%/suffix]": 0.002311057683557186,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%1%/suffix]": 0.002305423127368834,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%1/suffix]": 0.0022507908229707253,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%MISSING%/suffix]": 0.0023088969432042547,
"tests/common/test_configuration.py::test_custom_expandvars[prefix/%VARIABLE%/suffix]": 0.0023751208961464315,
"tests/common/test_configuration.py::test_default_values": 0.0024938783843075664,
"tests/common/test_configuration.py::test_empty_map_parameter": 0.007910758770951815,
"tests/common/test_configuration.py::test_env_var_config": 0.003203858761705741,
"tests/common/test_configuration.py::test_env_var_config_alias": 0.003164687339466288,
"tests/common/test_configuration.py::test_env_var_config_empty_sequence": 0.0029747667532683602,
"tests/common/test_configuration.py::test_env_var_config_no_split_sequence": 0.002997912638000119,
"tests/common/test_configuration.py::test_env_var_config_split_sequence": 0.0031964227118804153,
"tests/common/test_configuration.py::test_expanded_variables": 0.009992475726385227,
"tests/common/test_configuration.py::test_important_primitive_map_merges": 0.12973113292654795,
"tests/common/test_configuration.py::test_invalid_map_parameter": 0.0022034508541880857,
"tests/common/test_configuration.py::test_invalid_seq_parameter": 0.0021740100379892056,
"tests/common/test_configuration.py::test_list_merges": 0.11275942264733656,
"tests/common/test_configuration.py::test_load_raw_configs": 0.04826122196461045,
"tests/common/test_configuration.py::test_map_parameter_must_be_map": 0.0037353636546674754,
"tests/common/test_configuration.py::test_nested": 0.022670718262458606,
"tests/common/test_configuration.py::test_object": 0.01723851929382205,
"tests/common/test_configuration.py::test_parameter": 0.002016378835615853,
"tests/common/test_configuration.py::test_parameter_flag": 0.001903691144020815,
"tests/common/test_configuration.py::test_pretty_list": 0.00267147867315673,
"tests/common/test_configuration.py::test_raise_errors": 0.001976515643339027,
"tests/common/test_configuration.py::test_simple_merges_and_caching": 0.028112419581671214,
"tests/common/test_configuration.py::test_validate_all": 0.01805326821633273,
"tests/common/test_configuration.py::test_validation": 0.018542356334802244,
"tests/common/test_io.py::test_attach_stderr_handler": 0.003140558600651068,
"tests/common/test_io.py::test_captured": 0.002787257635832663,
"tests/common/test_iterators.py::test_interleave": 0.01668627756765351,
"tests/common/test_iterators.py::test_unpacking_for_merge": 0.04037780871133433,
"tests/common/test_iterators.py::test_unpacking_for_merge_with": 0.03560449671218152,
"tests/common/test_path.py::test_get_major_minor_version_no_dot": 0.001997867637358144,
"tests/common/test_path.py::test_missing_pyc_files_27": 0.0018781164892964835,
"tests/common/test_path.py::test_missing_pyc_files_34": 0.002052542067399866,
"tests/common/test_path.py::test_missing_pyc_files_35": 0.0020893993213298486,
"tests/common/test_path.py::test_url_to_path_unix": 0.0020282768219169528,
"tests/common/test_path.py::test_url_to_path_windows_local": 0.002507630826618202,
"tests/common/test_path.py::test_url_to_path_windows_unc": 0.00197552421388978,
"tests/common/test_path.py::test_win_path_backout": 0.0018805177803831589,
"tests/common/test_url.py::test_add_username_and_pass_to_url": 0.002026736632805357,
"tests/common/test_url.py::test_is_ip_address": 0.0018919335281119833,
"tests/common/test_url.py::test_is_ipv6_address": 0.00183001666999704,
"tests/common/test_url.py::test_is_url": 0.002325144249249801,
"tests/common/test_url.py::test_maybe_add_auth": 0.0020614223571743025,
"tests/common/test_url.py::test_split_scheme_auth_token": 0.0019960456875177546,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj0-http://conda.io/path/to/somewhere]": 0.0021867476548626057,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj1-https://user:[email protected]/path/to/somewhere]": 0.002188022341828041,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj2-file:///opt/happy/path]": 0.006911899956005509,
"tests/common/test_url.py::test_url_obj_unparse[test_url_obj3-file:///path/to/something.txt]": 0.002211713651612866,
"tests/common/test_url.py::test_url_to_s3_info": 0.0018937831428607094,
"tests/common/test_url.py::test_urlparse[192.168.1.1:8080/path/to/resource-exp_url_obj0]": 0.0022957375274645308,
"tests/common/test_url.py::test_urlparse[file:///opt/happy/path-exp_url_obj2]": 0.002308041735441428,
"tests/common/test_url.py::test_urlparse[https://conda.io/happy/path-exp_url_obj1]": 0.0023011617105681923,
"tests/common/test_url.py::test_urlparse[https://u:[email protected]/t/x1029384756/more/path-exp_url_obj3]": 0.0023305731118358894,
"tests/common/test_yaml.py::test_dump": 0.007150591045529062,
"tests/common/test_yaml.py::test_map": 0.0027631710656301238,
"tests/common/test_yaml.py::test_seq_simple": 0.00294565794065245,
"tests/common/test_yaml.py::test_yaml_complex": 0.01405544641569288,
"tests/conda_env/specs/test_binstar.py::test_binstar_not_installed": 0.003038476236109688,
"tests/conda_env/specs/test_binstar.py::test_download_environment": 0.006955834747206855,
"tests/conda_env/specs/test_binstar.py::test_environment_version_sorting": 0.007003543030624163,
"tests/conda_env/specs/test_binstar.py::test_invalid_name": 0.007262018582434699,
"tests/conda_env/specs/test_binstar.py::test_name_not_present": 0.007856150207464751,
"tests/conda_env/specs/test_binstar.py::test_package_not_exist": 0.005677262941456116,
"tests/conda_env/specs/test_binstar.py::test_package_without_environment_file": 0.004928341962761345,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_environment": 0.002630939487136175,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_no_environment_file": 0.0019319794871661927,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_no_name": 0.00200362794868964,
"tests/conda_env/specs/test_requirements.py::TestRequiremets::test_req_file_and_name": 0.001914534615439779,
"tests/conda_env/specs/test_requirements.py::test_environment": 0.0027456570646883557,
"tests/conda_env/specs/test_requirements.py::test_no_environment_file": 0.00217535250993898,
"tests/conda_env/specs/test_requirements.py::test_no_name": 0.0022261295868060615,
"tests/conda_env/specs/test_requirements.py::test_req_file_and_name": 0.0021182990186921786,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_environment_file_exist": 0.0027494141025744493,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_filename": 0.0030407341025441887,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_get_environment": 0.002743404871830899,
"tests/conda_env/specs/test_yaml_file.py::TestYAMLFile::test_no_environment_file": 0.0019251910257084186,
"tests/conda_env/specs/test_yaml_file.py::test_environment_file_exist": 0.0027478370066210864,
"tests/conda_env/specs/test_yaml_file.py::test_filename": 0.004538542390505273,
"tests/conda_env/specs/test_yaml_file.py::test_get_environment": 0.0027110912332867832,
"tests/conda_env/specs/test_yaml_file.py::test_no_environment_file": 0.0021492222129803526,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_empty_file": 0.0711720642991255,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_http": 7.034359759250766,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_no_existent_file": 0.06581855374389688,
"tests/conda_env/test_cli.py::IntegrationTests::test_conda_env_create_no_file": 0.06770562597087224,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_dry_run_json": 0.6985838071254586,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_dry_run_yaml": 0.6732555553057049,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env": 6.049708777385434,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_json_output": 4.227446200312011,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_with_conda_and_pip_json_output": 6.357187620117576,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_env_with_variables": 0.7697224991266252,
"tests/conda_env/test_cli.py::IntegrationTests::test_create_valid_remote_env": 6.031943866415414,
"tests/conda_env/test_cli.py::IntegrationTests::test_name": 4.132103696248276,
"tests/conda_env/test_cli.py::IntegrationTests::test_pip_error_is_propagated": 6.134949758500734,
"tests/conda_env/test_cli.py::IntegrationTests::test_remove_dry_run": 0.794283164321081,
"tests/conda_env/test_cli.py::IntegrationTests::test_set_unset_env_vars": 0.699124397483766,
"tests/conda_env/test_cli.py::IntegrationTests::test_set_unset_env_vars_env_no_exist": 0.6830251063324115,
"tests/conda_env/test_cli.py::IntegrationTests::test_update": 5.1701795527631385,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_json_output": 8.297163965456015,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_no_action_json_output": 8.941744582827578,
"tests/conda_env/test_cli.py::IntegrationTests::test_update_env_only_pip_json_output": 8.268516006223177,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export": 4.066782957235338,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export_json": 0.2722232799160737,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_env_export_with_variables": 1.1667094967428522,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_export_multi_channel": 1.1996977998914775,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_invalid_extensions": 0.010743397547025994,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_list": 0.22385636728414793,
"tests/conda_env/test_cli.py::NewIntegrationTests::test_non_existent_file": 0.010614558095929668,
"tests/conda_env/test_create.py::IntegrationTests::test_create_advanced_pip": 1.6202656193560208,
"tests/conda_env/test_create.py::IntegrationTests::test_create_empty_env": 9.306655115131635,
"tests/conda_env/test_create.py::IntegrationTests::test_create_env_default_packages": 9.378016113990583,
"tests/conda_env/test_create.py::IntegrationTests::test_create_env_no_default_packages": 1.142865880759498,
"tests/conda_env/test_create.py::IntegrationTests::test_create_host_port": 0.00015988739446809404,
"tests/conda_env/test_create.py::IntegrationTests::test_create_update": 6.5971866940384,
"tests/conda_env/test_create.py::test_create_update_remote_env_file": 44.37828891363048,
"tests/conda_env/test_create.py::test_fail_to_create_env_in_dir_with_colon": 0.0007762749572634694,
"tests/conda_env/test_env.py::DirectoryTestCase::test_has_dependencies": 0.002711937380838666,
"tests/conda_env/test_env.py::DirectoryTestCase::test_has_expected_name": 0.00251507831331577,
"tests/conda_env/test_env.py::DirectoryTestCase::test_returns_env_object": 0.0023141698015982726,
"tests/conda_env/test_env.py::EnvironmentSaveTestCase::test_creates_file_on_save": 0.0032804657133233364,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_add_channels": 0.001084110312676671,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_args_are_wildcarded": 0.001132589137821292,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_builds_spec_from_line_raw_dependency": 0.0010701342149290838,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_can_add_dependencies_to_environment": 0.003530400935007249,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_channels_are_provided_by_kwarg": 0.001126944689353805,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_channels_default_to_empty_list": 0.0009792432534361255,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_dependencies_are_empty_by_default": 0.0009945074134951662,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_dependencies_update_after_adding": 0.003042731423962169,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_empty_filename_by_default": 0.0008781053151309742,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_empty_name_by_default": 0.0008518299799609123,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_filename_if_provided": 0.001152446798060221,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_has_name_if_provided": 0.0010086740144771545,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_invalid_keys": 0.003645233171771819,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_other_tips_of_dependencies_are_supported": 0.001020199872766828,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_parses_dependencies_from_raw_file": 0.00248544066418962,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_remove_channels": 0.0009594246651993107,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_dict_returns_dictionary_of_data": 0.001016036799839973,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_dict_returns_just_name_if_only_thing_present": 0.0008966873983486596,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_returns_proper_yaml": 0.0018748132774742468,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_returns_yaml_parseable_string": 0.004173763511190348,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_to_yaml_takes_stream": 0.0018598726939595299,
"tests/conda_env/test_env.py::EnvironmentTestCase::test_valid_keys": 0.004410408100407549,
"tests/conda_env/test_env.py::LoadEnvFromFileAndSaveTestCase::test": 0.010290356870098185,
"tests/conda_env/test_env.py::LoadEnvFromFileAndSaveTestCase::test_expected_default_conditions": 0.003828444592332841,
"tests/conda_env/test_env.py::SaveExistingEnvTestCase::test_create_advanced_pip": 1.2173883987868719,
"tests/conda_env/test_env.py::TestFromEnvironment::test_from_history": 0.00413364153479931,
"tests/conda_env/test_env.py::from_file_TestCase::test_add_pip": 0.004564514436776153,
"tests/conda_env/test_env.py::from_file_TestCase::test_envvars": 0.005994455896304659,
"tests/conda_env/test_env.py::from_file_TestCase::test_http": 1.2354751694962032,
"tests/conda_env/test_env.py::from_file_TestCase::test_http_raises": 0.0972388102934932,
"tests/conda_env/test_env.py::from_file_TestCase::test_retains_full_filename": 0.0037371232661230483,
"tests/conda_env/test_env.py::from_file_TestCase::test_returns_Environment": 0.0028580448656220065,
"tests/conda_env/test_env.py::from_file_TestCase::test_with_pip": 0.003972809763773595,
"tests/conda_env/test_env.py::load_from_directory_TestCase::test_raised_exception_has_environment_yml_as_file": 0.0013915790606957375,
"tests/conda_env/test_env.py::load_from_directory_TestCase::test_raises_when_unable_to_find": 0.0012329239305997445,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_has_dependencies": 0.0022191843191390215,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_has_expected_name": 0.0022792935196043716,
"tests/conda_env/test_env.py::load_from_directory_example_TestCase::test_returns_env_object": 0.0023485881793412792,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_has_dependencies": 0.0029399231921586576,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_has_expected_name": 0.002650185296059924,
"tests/conda_env/test_env.py::load_from_directory_example_yaml_TestCase::test_returns_env_object": 0.002513001860205598,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_has_dependencies": 0.002732064194214797,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_has_expected_name": 0.002689299727816004,
"tests/conda_env/test_env.py::load_from_directory_recursive_TestCase::test_returns_env_object": 0.002737483571936519,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_has_dependencies": 0.0031674911099661565,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_has_expected_name": 0.0030388413336316497,
"tests/conda_env/test_env.py::load_from_directory_recursive_two_TestCase::test_returns_env_object": 0.003023550823993612,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_has_dependencies": 0.0034367712761969923,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_has_expected_name": 0.003602011683186799,
"tests/conda_env/test_env.py::load_from_directory_trailing_slash_TestCase::test_returns_env_object": 0.00349160990115892,
"tests/conda_env/test_env.py::test_add_channels": 0.0019915410505740427,
"tests/conda_env/test_env.py::test_add_pip": 0.006035661673405667,
"tests/conda_env/test_env.py::test_args_are_wildcarded": 0.0021311533668971266,
"tests/conda_env/test_env.py::test_builds_spec_from_line_raw_dependency": 0.002217421708905238,
"tests/conda_env/test_env.py::test_can_add_dependencies_to_environment": 0.005469793721636341,
"tests/conda_env/test_env.py::test_channels_are_provided_by_kwarg": 0.0019002122851561353,
"tests/conda_env/test_env.py::test_channels_default_to_empty_list": 0.0019643967200014077,
"tests/conda_env/test_env.py::test_creates_file_on_save": 0.006809858477175749,
"tests/conda_env/test_env.py::test_dependencies_are_empty_by_default": 0.0019522860104218092,
"tests/conda_env/test_env.py::test_dependencies_update_after_adding": 0.00448939384588733,
"tests/conda_env/test_env.py::test_envvars": 0.006672052755190959,
"tests/conda_env/test_env.py::test_from_history": 0.004618829757847176,
"tests/conda_env/test_env.py::test_has_empty_filename_by_default": 0.002136984592409368,
"tests/conda_env/test_env.py::test_has_empty_name_by_default": 0.0019656848993781246,
"tests/conda_env/test_env.py::test_has_filename_if_provided": 0.0019319059395368702,
"tests/conda_env/test_env.py::test_has_name_if_provided": 0.001976360531209089,
"tests/conda_env/test_env.py::test_invalid_keys": 0.00583744167983704,
"tests/conda_env/test_env.py::test_load_from_directory[example-yaml]": 0.004649377464814796,
"tests/conda_env/test_env.py::test_load_from_directory[example]": 0.004400084687373549,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar/baz/]": 0.004802279792874589,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar/baz]": 0.004782803965413899,
"tests/conda_env/test_env.py::test_load_from_directory[foo/bar]": 0.004542521632642852,
"tests/conda_env/test_env.py::test_load_from_directory_and_save": 0.013209933190729672,
"tests/conda_env/test_env.py::test_other_tips_of_dependencies_are_supported": 0.0020581179794529,
"tests/conda_env/test_env.py::test_parses_dependencies_from_raw_file": 0.004349501665486063,
"tests/conda_env/test_env.py::test_raised_exception_has_environment_yml_as_file": 0.002595541228722378,
"tests/conda_env/test_env.py::test_raises_when_unable_to_find": 0.002584478001214819,
"tests/conda_env/test_env.py::test_remove_channels": 0.0019216802442848717,
"tests/conda_env/test_env.py::test_retains_full_filename": 0.005229389746029161,
"tests/conda_env/test_env.py::test_returns_Environment": 0.005174994692634999,
"tests/conda_env/test_env.py::test_to_dict_returns_dictionary_of_data": 0.002122617692360904,
"tests/conda_env/test_env.py::test_to_dict_returns_just_name_if_only_thing_present": 0.0019277560079520026,
"tests/conda_env/test_env.py::test_to_yaml_returns_proper_yaml": 0.003832703109831527,
"tests/conda_env/test_env.py::test_to_yaml_returns_yaml_parseable_string": 0.007142453515512535,
"tests/conda_env/test_env.py::test_to_yaml_takes_stream": 0.0037364413729363256,
"tests/conda_env/test_env.py::test_valid_keys": 0.006661970444332706,
"tests/conda_env/test_env.py::test_with_pip": 0.005895093126837186,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages[Successfully installed foo bar-expected0]": 0.0026693259046770682,
"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.0024038419808370985,
"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.0025320860840506777,
"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.0022901179046163358,
"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.0021382492012215824,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages_none[]": 0.002048670768334163,
"tests/conda_env/test_pip_util.py::test_get_pip_installed_packages_none[foo]": 0.0020269977323580583,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_prefix_cli_flag": 0.009350735264884431,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_register_unregister_location_env": 0.013736068252306928,
"tests/core/test_envs_manager.py::EnvsManagerUnitTests::test_rewrite_environments_txt_file": 0.008513096511821543,
"tests/core/test_envs_manager.py::test_list_all_known_prefixes_with_none_values_error": 0.0007665441749937869,
"tests/core/test_envs_manager.py::test_list_all_known_prefixes_with_permission_error": 0.25774627862589766,
"tests/core/test_envs_manager.py::test_prefix_cli_flag": 0.008598824935244958,
"tests/core/test_envs_manager.py::test_register_unregister_location_env": 0.020822109556406974,
"tests/core/test_envs_manager.py::test_rewrite_environments_txt_file": 0.010994935556185461,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_linux64_platform": 8.195988712662484,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_osx64_platform": 6.062187989019202,
"tests/core/test_index.py::GetIndexIntegrationTests::test_get_index_win64_platform": 4.329558565372778,
"tests/core/test_index.py::ReducedIndexTests::test_basic_get_reduced_index": 0.08853624101930142,
"tests/core/test_index.py::test_check_allowlist": 0.009086062531193512,
"tests/core/test_index.py::test_supplement_index_with_system": 0.004857364358952151,
"tests/core/test_index.py::test_supplement_index_with_system_archspec": 0.003684349745970919,
"tests/core/test_index.py::test_supplement_index_with_system_cuda": 0.0039157223339521315,
"tests/core/test_index.py::test_supplement_index_with_system_glibc": 0.0007645727795435215,
"tests/core/test_index.py::test_supplement_index_with_system_linux[1.2.3.4-1.2.3.4]": 0.0007709263748224114,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2-4.2]": 0.0007642836907358473,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2.0-42-generic-4.2.0]": 0.0007433240430933826,
"tests/core/test_index.py::test_supplement_index_with_system_linux[4.2.1-4.2.1]": 0.0007631691905935854,
"tests/core/test_index.py::test_supplement_index_with_system_linux[5.4.89+-5.4.89]": 0.0007521243860604841,
"tests/core/test_index.py::test_supplement_index_with_system_linux[5.5-rc1-5.5]": 0.0007521182173006602,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.1.a-9.1]": 0.0007607999279104407,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.1.a.2-9.1]": 0.0007638358574580507,
"tests/core/test_index.py::test_supplement_index_with_system_linux[9.a.1-0]": 0.0007653701925088911,
"tests/core/test_index.py::test_supplement_index_with_system_osx": 0.0007032574603179081,
"tests/core/test_initialize.py::test__get_python_info": 0.017125328830491626,
"tests/core/test_initialize.py::test_get_python_info": 0.019485019110118823,
"tests/core/test_initialize.py::test_init_all": 0.8340459078981737,
"tests/core/test_initialize.py::test_init_cmd_exe_registry": 0.00823682479635237,
"tests/core/test_initialize.py::test_init_enable_long_path": 0.0036313878590611133,
"tests/core/test_initialize.py::test_init_sh_system": 0.034268184299372895,
"tests/core/test_initialize.py::test_init_sh_user_tcsh_unix": 0.0009913914177903317,
"tests/core/test_initialize.py::test_init_sh_user_unix": 0.0011646347628390642,
"tests/core/test_initialize.py::test_init_sh_user_windows": 0.060730297342077126,
"tests/core/test_initialize.py::test_initialize_dev_bash": 0.07088255671780112,
"tests/core/test_initialize.py::test_initialize_dev_cmd_exe": 0.05586831076427498,
"tests/core/test_initialize.py::test_install_1": 0.025842214996044215,
"tests/core/test_initialize.py::test_install_conda_csh": 0.016952651503675604,
"tests/core/test_initialize.py::test_install_conda_fish": 0.018077990284245175,
"tests/core/test_initialize.py::test_install_conda_sh": 0.035785501213287586,
"tests/core/test_initialize.py::test_install_conda_xsh": 0.01948109355558038,
"tests/core/test_initialize.py::test_install_condabin_conda_bat": 0.014663286859197173,
"tests/core/test_initialize.py::test_make_entry_point": 0.01632100296542806,
"tests/core/test_initialize.py::test_make_entry_point_exe": 0.018736330873188534,
"tests/core/test_initialize.py::test_make_initialize_plan_bash_zsh": 0.018611978749383386,
"tests/core/test_initialize.py::test_make_initialize_plan_cmd_exe": 0.018489047256506443,
"tests/core/test_initialize.py::test_make_install_plan": 0.03191445858090355,
"tests/core/test_package_cache_data.py::test_ProgressiveFetchExtract_prefers_conda_v2_format": 0.026103338286204904,
"tests/core/test_package_cache_data.py::test_conda_build_alias": 0.002038575749959958,
"tests/core/test_package_cache_data.py::test_conda_pkg_in_pkg_cache_doesnt_overwrite_tar_bz2": 0.03171765090650515,
"tests/core/test_package_cache_data.py::test_cover_extract_bad_package": 0.017121582150608557,
"tests/core/test_package_cache_data.py::test_cover_fetch_not_exists": 13.663218382807278,
"tests/core/test_package_cache_data.py::test_cover_get_entry_to_link": 0.03870838849577652,
"tests/core/test_package_cache_data.py::test_cover_reverse": 0.0020406692740326257,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_both_tar_bz2_and_conda_exist": 0.0823429014655634,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_both_tar_bz2_and_conda_exist_read_only": 0.06064954917881131,
"tests/core/test_package_cache_data.py::test_instantiating_package_cache_when_unpacked_conda_exist": 0.08318270445032272,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_cache_not_extracted": 0.19380960724071095,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_pkg_cache_doesnt_overwrite_conda_pkg": 0.030916910781794846,
"tests/core/test_package_cache_data.py::test_tar_bz2_in_pkg_cache_used_instead_of_conda_pkg": 0.10000754745214582,
"tests/core/test_path_actions.py::PathActionsTests::test_CompileMultiPycAction_generic": 0.025367606086858153,
"tests/core/test_path_actions.py::PathActionsTests::test_CompileMultiPycAction_noarch_python": 1.4726226449128563,
"tests/core/test_path_actions.py::PathActionsTests::test_CreatePythonEntryPointAction_generic": 0.011644320248564786,
"tests/core/test_path_actions.py::PathActionsTests::test_CreatePythonEntryPointAction_noarch_python": 0.011555615769325022,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_copy": 0.010272130487822065,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_directory": 0.01223345569513176,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_hardlink": 0.00830096586289842,
"tests/core/test_path_actions.py::PathActionsTests::test_simple_LinkPathAction_softlink": 0.009297674827740288,
"tests/core/test_path_actions.py::test_CompileMultiPycAction_generic": 0.0051401715596201235,
"tests/core/test_path_actions.py::test_CompileMultiPycAction_noarch_python": 1.3785878278935466,
"tests/core/test_path_actions.py::test_CreatePythonEntryPointAction_generic": 0.004997003460191501,
"tests/core/test_path_actions.py::test_CreatePythonEntryPointAction_noarch_python": 0.012505073447369335,
"tests/core/test_path_actions.py::test_explode_directories": 0.014946945955572607,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_copy": 0.013310652799549252,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_directory": 0.006995406888579116,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_hardlink": 0.010525505989604405,
"tests/core/test_path_actions.py::test_simple_LinkPathAction_softlink": 0.011345340556475389,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_spaces_in_prefix": 0.0016829871392497016,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_with_truncation_escaped_space": 0.001201526434136319,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_long_shebang_with_truncation_python": 0.0012265951833831067,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_normal_shebang_spaces_in_prefix_escaped_space": 0.0010951064196950953,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_normal_shebang_spaces_in_prefix_python": 0.0011290957164500966,
"tests/core/test_portability.py::ReplaceShebangTests::test_replace_simple_shebang_no_replacement": 0.0009877562121118554,
"tests/core/test_portability.py::ReplaceShebangTests::test_shebang_regex_matches": 0.0011389587639716535,
"tests/core/test_portability.py::test_escaped_prefix_replaced_only_shebang": 0.0008201723052743113,
"tests/core/test_portability.py::test_replace_long_shebang_spaces_in_prefix": 0.0022092753174647248,
"tests/core/test_portability.py::test_replace_long_shebang_with_truncation_escaped_space": 0.0023235094697616394,
"tests/core/test_portability.py::test_replace_long_shebang_with_truncation_python": 0.0026306257528667756,
"tests/core/test_portability.py::test_replace_normal_shebang_spaces_in_prefix_escaped_space": 0.0022244136370226705,
"tests/core/test_portability.py::test_replace_normal_shebang_spaces_in_prefix_python": 0.0020734700848747934,
"tests/core/test_portability.py::test_replace_simple_shebang_no_replacement": 0.0024390117460484583,
"tests/core/test_portability.py::test_shebang_regex_matches": 0.0027278877749080687,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_get_environment_env_vars": 0.007302185381015387,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_set_unset_environment_env_vars": 0.007771154612663807,
"tests/core/test_prefix_data.py::PrefixDatarUnitTests::test_set_unset_environment_env_vars_no_exist": 0.0076330941952976895,
"tests/core/test_prefix_data.py::test_corrupt_json_conda_meta_json": 0.002694939023343865,
"tests/core/test_prefix_data.py::test_corrupt_unicode_conda_meta_json": 0.002758408989129946,
"tests/core/test_prefix_data.py::test_get_conda_anchor_files_and_records": 0.003045104147861387,
"tests/core/test_prefix_data.py::test_get_environment_env_vars": 0.1561303992538394,
"tests/core/test_prefix_data.py::test_pip_interop_osx": 1.9254931394099735,
"tests/core/test_prefix_data.py::test_pip_interop_windows": 1.2824421714598215,
"tests/core/test_prefix_data.py::test_set_unset_environment_env_vars": 0.14351206348570528,
"tests/core/test_prefix_data.py::test_set_unset_environment_env_vars_no_exist": 0.1442025033928363,
"tests/core/test_solve.py::test_aggressive_update_packages": 8.431690597167673,
"tests/core/test_solve.py::test_auto_update_conda": 5.962025306742164,
"tests/core/test_solve.py::test_broken_install": 7.887284637220534,
"tests/core/test_solve.py::test_channel_priority_churn_minimized": 18.84199757821524,
"tests/core/test_solve.py::test_conda_downgrade": 49.25996713654621,
"tests/core/test_solve.py::test_cuda_1": 1.2161401285133138,
"tests/core/test_solve.py::test_cuda_2": 1.226434778117559,
"tests/core/test_solve.py::test_cuda_constrain_absent": 1.202980138375803,
"tests/core/test_solve.py::test_cuda_constrain_sat": 0.0007552596081095913,
"tests/core/test_solve.py::test_cuda_constrain_unsat": 0.0007291584930241428,
"tests/core/test_solve.py::test_cuda_fail_1": 1.2150366361495197,
"tests/core/test_solve.py::test_cuda_fail_2": 1.2236265377130155,
"tests/core/test_solve.py::test_cuda_glibc_sat": 0.014241674085897485,
"tests/core/test_solve.py::test_cuda_glibc_unsat_constrain": 0.0007001911024114993,
"tests/core/test_solve.py::test_cuda_glibc_unsat_depend": 0.0006947673925433853,
"tests/core/test_solve.py::test_current_repodata_fallback": 0.055290614423837946,
"tests/core/test_solve.py::test_current_repodata_usage": 0.061421459170251304,
"tests/core/test_solve.py::test_determine_constricting_specs_conflicts": 0.007716435562730299,
"tests/core/test_solve.py::test_determine_constricting_specs_conflicts_upperbound": 0.007653624639716867,
"tests/core/test_solve.py::test_determine_constricting_specs_multi_conflicts": 0.007185444888413227,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_free": 0.006585978042681825,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_no_upperbound": 0.00676721468001474,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_upperbound_compound_depends": 0.008083889751763256,
"tests/core/test_solve.py::test_determine_constricting_specs_no_conflicts_version_star": 0.0071325904451832525,
"tests/core/test_solve.py::test_downgrade_python_prevented_with_sane_message": 7.252087986228086,
"tests/core/test_solve.py::test_explicit_conda_downgrade": 5.8975827280880315,
"tests/core/test_solve.py::test_fast_update_with_update_modifier_not_set": 3.5573138808340112,
"tests/core/test_solve.py::test_features_solve_1": 8.67578428087245,
"tests/core/test_solve.py::test_force_reinstall_1": 2.8944999836130973,
"tests/core/test_solve.py::test_force_reinstall_2": 1.346564893532874,
"tests/core/test_solve.py::test_force_remove_1": 7.523151172967662,
"tests/core/test_solve.py::test_freeze_deps_1": 8.759327051797186,
"tests/core/test_solve.py::test_indirect_dep_optimized_by_version_over_package_count": 0.9387612248526166,
"tests/core/test_solve.py::test_no_deps_1": 7.00371212751839,
"tests/core/test_solve.py::test_no_update_deps_1": 5.657207359826514,
"tests/core/test_solve.py::test_only_deps_1": 2.010206141167031,
"tests/core/test_solve.py::test_only_deps_2": 10.069180640445643,
"tests/core/test_solve.py::test_packages_in_solution_change_already_newest": 0.009099964675478639,
"tests/core/test_solve.py::test_packages_in_solution_change_constrained": 0.00697143341348618,
"tests/core/test_solve.py::test_packages_in_solution_change_needs_update": 0.006892560622432349,
"tests/core/test_solve.py::test_pinned_1": 1.0577653946086067,
"tests/core/test_solve.py::test_priority_1": 35.19322736345148,
"tests/core/test_solve.py::test_prune_1": 4.20222536500511,
"tests/core/test_solve.py::test_python2_update": 12.917872682448444,
"tests/core/test_solve.py::test_remove_with_constrained_dependencies": 10.299027636402792,
"tests/core/test_solve.py::test_solve_1": 5.755117324931004,
"tests/core/test_solve.py::test_solve_2": 27.06214839018206,
"tests/core/test_solve.py::test_solve_msgs_exclude_vp": 1.326821607350937,
"tests/core/test_solve.py::test_timestamps_1": 2.4865621152550443,
"tests/core/test_solve.py::test_unfreeze_when_required": 0.22189706787463942,
"tests/core/test_solve.py::test_update_all_1": 6.908482346979307,
"tests/core/test_solve.py::test_update_deps_1": 14.016376479923757,
"tests/core/test_solve.py::test_update_deps_2": 15.710400009294535,
"tests/core/test_solve.py::test_update_prune_1": 3.99486870704129,
"tests/core/test_solve.py::test_update_prune_2": 3.9483337042270787,
"tests/core/test_solve.py::test_update_prune_3": 4.763526724362957,
"tests/core/test_solve.py::test_update_prune_4": 3.904824308117162,
"tests/core/test_solve.py::test_update_prune_5[False]": 4.7031165924296,
"tests/core/test_solve.py::test_update_prune_5[True]": 3.9000072025412855,
"tests/core/test_solve.py::test_virtual_package_solver": 1.22905908500703,
"tests/core/test_subdir_data.py::FetchLocalRepodataTests::test_fetch_repodata_remote_request_invalid_arch": 0.00407923983385619,
"tests/core/test_subdir_data.py::FetchLocalRepodataTests::test_fetch_repodata_remote_request_invalid_noarch": 0.0033741234701757956,
"tests/core/test_subdir_data.py::GetRepodataIntegrationTests::test_get_index_no_platform_with_offline_cache": 0.2279704375184187,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_cache_fn_url_repo_anaconda_com": 0.0012122424874009747,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_cache_fn_url_repo_continuum_io": 0.0010237563531330948,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_etag_mod": 0.002712698618335065,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_etag_only": 0.0014484827672382147,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_mod_etag": 0.001625917203274666,
"tests/core/test_subdir_data.py::StaticFunctionTests::test_read_mod_and_etag_mod_only": 0.0016070051469045906,
"tests/core/test_subdir_data.py::test_cache_fn_url_repo_anaconda_com": 0.0020290764528090055,
"tests/core/test_subdir_data.py::test_cache_fn_url_repo_continuum_io": 0.002108708594120968,
"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.007194191246919121,
"tests/core/test_subdir_data.py::test_fetch_repodata_remote_request_invalid_noarch": 0.00677750127181677,
"tests/core/test_subdir_data.py::test_metadata_cache_clearing": 0.01807588965807056,
"tests/core/test_subdir_data.py::test_metadata_cache_works": 3.016107277755187,
"tests/core/test_subdir_data.py::test_no_ssl": 0.006443150710535549,
"tests/core/test_subdir_data.py::test_repodata_version_error": 0.22687535452890772,
"tests/core/test_subdir_data.py::test_search_by_packagerecord": 0.017085243685689894,
"tests/core/test_subdir_data.py::test_state_is_not_json": 0.23191235240258815,
"tests/core/test_subdir_data.py::test_subdir_data_coverage": 0.09461008741768251,
"tests/core/test_subdir_data.py::test_subdir_data_dict_state": 0.004061344312385101,
"tests/core/test_subdir_data.py::test_subdir_data_prefers_conda_to_tar_bz2": 0.01890837233973375,
"tests/core/test_subdir_data.py::test_use_only_tar_bz2": 0.0323511950719261,
"tests/gateways/disk/test_delete.py::test_backoff_unlink": 0.011835128797084985,
"tests/gateways/disk/test_delete.py::test_backoff_unlink_doesnt_exist": 0.0032941345249923163,
"tests/gateways/disk/test_delete.py::test_move_path_to_trash_couldnt": 0.0037072379697956417,
"tests/gateways/disk/test_delete.py::test_move_to_trash": 0.012277681032422843,
"tests/gateways/disk/test_delete.py::test_remove_dir": 0.018241852914951836,
"tests/gateways/disk/test_delete.py::test_remove_file": 0.007303803195618887,
"tests/gateways/disk/test_delete.py::test_remove_file_to_trash": 0.005183492657754184,
"tests/gateways/disk/test_delete.py::test_remove_link_to_dir": 0.016826640216866914,
"tests/gateways/disk/test_delete.py::test_remove_link_to_file": 0.00690360518828883,
"tests/gateways/disk/test_delete.py::test_rm_rf_does_not_follow_symlinks": 0.023853301463322006,
"tests/gateways/disk/test_delete.py::test_try_rmdir_all_empty_doesnt_exist": 0.01103032591533593,
"tests/gateways/disk/test_link.py::LinkSymlinkUnlinkIslinkReadlinkTests::test_hard_link": 0.00704677413074185,
"tests/gateways/disk/test_link.py::LinkSymlinkUnlinkIslinkReadlinkTests::test_soft_link": 0.007526178969806123,
"tests/gateways/disk/test_link.py::test_hard_link": 0.007104707393368588,
"tests/gateways/disk/test_link.py::test_soft_link": 0.009286858588023477,
"tests/gateways/disk/test_permissions.py::test_make_executable": 0.004126152925615364,
"tests/gateways/disk/test_permissions.py::test_make_writable": 0.004492454241886292,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EACCES": 0.0033678573017194785,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EPERM": 0.00344723255699983,
"tests/gateways/disk/test_permissions.py::test_make_writable_dir_EROFS": 0.0034432916180537156,
"tests/gateways/disk/test_permissions.py::test_make_writable_doesnt_exist": 0.0022174024891402724,
"tests/gateways/disk/test_permissions.py::test_recursive_make_writable": 0.004490132325336078,
"tests/gateways/disk/test_read.py::test_cherrypy_py27_osx_no_binary": 0.04550029741288323,
"tests/gateways/disk/test_read.py::test_cherrypy_py36_osx_whl": 0.06567794560746523,
"tests/gateways/disk/test_read.py::test_pyjwt_py27_osx_no_binary": 0.012288621949415542,
"tests/gateways/disk/test_read.py::test_pyjwt_py36_osx_whl": 0.01536052872812463,
"tests/gateways/disk/test_read.py::test_scrapy_py27_osx_no_binary": 0.0987254669626037,
"tests/gateways/disk/test_read.py::test_scrapy_py36_osx_whl": 0.1474822155710025,
"tests/gateways/disk/test_read.py::test_six_py27_osx_no_binary_unmanageable": 0.005094942538207918,
"tests/gateways/disk/test_read.py::test_twilio_py27_osx_no_binary": 0.12924657026816064,
"tests/gateways/disk/test_read.py::test_twilio_py36_osx_whl": 0.2014788364676727,
"tests/gateways/test_connection.py::CondaHttpAuthTests::test_add_binstar_token": 0.008348113194071452,
"tests/gateways/test_connection.py::CondaSessionTests::test_local_file_adapter_200": 0.009208177295810995,
"tests/gateways/test_connection.py::CondaSessionTests::test_local_file_adapter_404": 0.00218655336814106,
"tests/gateways/test_connection.py::test_add_binstar_token": 0.010175220449906052,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[http://localhost-channels3-http://localhost]": 0.026813727028766592,
"tests/gateways/test_connection.py::test_get_channel_name_from_url[http://localhost/noarch/test-package-0.1.0.conda-channels2-http://localhost]": 0.026226998573919417,
"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.026235229767426302,
"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.027158803849031046,
"tests/gateways/test_connection.py::test_get_session_returns_default": 0.029982722138206373,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings": 0.03369242330528268,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings_multiple": 0.04337499759617576,
"tests/gateways/test_connection.py::test_get_session_with_channel_settings_no_handler": 0.008623169616450838,
"tests/gateways/test_connection.py::test_local_file_adapter_200": 0.022691833078078448,
"tests/gateways/test_connection.py::test_local_file_adapter_404": 0.0037888045919556796,
"tests/gateways/test_connection.py::test_s3_server": 3.0593720668026245,
"tests/gateways/test_jlap.py::test_download_and_hash": 0.7099428090784481,
"tests/gateways/test_jlap.py::test_hashwriter": 0.0019951179434858674,
"tests/gateways/test_jlap.py::test_jlap_cache_clock[False]": 0.09760724690280743,
"tests/gateways/test_jlap.py::test_jlap_cache_clock[True]": 0.09738090771009947,
"tests/gateways/test_jlap.py::test_jlap_core": 0.008286010629700804,
"tests/gateways/test_jlap.py::test_jlap_coverage": 0.0022284210930518934,
"tests/gateways/test_jlap.py::test_jlap_errors": 0.23530057430905896,
"tests/gateways/test_jlap.py::test_jlap_fetch": 0.9434012375214887,
"tests/gateways/test_jlap.py::test_jlap_fetch_file": 0.07659928876863534,
"tests/gateways/test_jlap.py::test_jlap_fetch_ssl[False]": 1.9366932713104388,
"tests/gateways/test_jlap.py::test_jlap_fetch_ssl[True]": 8.815009134138778,
"tests/gateways/test_jlap.py::test_jlap_flag[]": 0.004161898746630796,
"tests/gateways/test_jlap.py::test_jlap_flag[jlap,another]": 0.004342572254689513,
"tests/gateways/test_jlap.py::test_jlap_flag[jlap]": 0.004323265553670665,
"tests/gateways/test_jlap.py::test_jlap_flag[jlapopotamus]": 0.004329593170197586,
"tests/gateways/test_jlap.py::test_jlap_sought": 0.7104672539150666,
"tests/gateways/test_jlap.py::test_jlap_zst_not_404": 0.009547187689122457,
"tests/gateways/test_jlap.py::test_repodata_info_jsondecodeerror[False]": 0.17191103663838014,
"tests/gateways/test_jlap.py::test_repodata_info_jsondecodeerror[True]": 0.061289936667734704,
"tests/gateways/test_jlap.py::test_repodata_state[False]": 0.31633705366588527,
"tests/gateways/test_jlap.py::test_repodata_state[True]": 0.9790706108109837,
"tests/gateways/test_jlap.py::test_server_available": 1.5702165382171678,
"tests/gateways/test_logging.py::test_token_replace_big_string": 0.002775148746207261,
"tests/gateways/test_logging.py::test_token_replace_individual_strings": 0.001991209225691981,
"tests/gateways/test_repodata_gateway.py::test_cache_json": 0.010742327452218323,
"tests/gateways/test_repodata_gateway.py::test_coverage_conda_http_errors": 0.015068357087767522,
"tests/gateways/test_repodata_gateway.py::test_coverage_repodata_state": 0.006101464300772668,
"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.0174972765730565,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[false-True]": 0.023140796664542423,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[true-False]": 0.013685358582414967,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_cached[true-True]": 0.02117205817244244,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_formats[False]": 0.051377672813123096,
"tests/gateways/test_repodata_gateway.py::test_repodata_fetch_formats[True]": 0.08165247943835376,
"tests/gateways/test_repodata_gateway.py::test_repodata_state_has_format": 0.004355998825706706,
"tests/gateways/test_repodata_gateway.py::test_save": 0.11223169746094185,
"tests/gateways/test_repodata_gateway.py::test_ssl_unavailable_error_message": 0.0022685909692187222,
"tests/gateways/test_repodata_gateway.py::test_stale": 0.03149874750895573,
"tests/gateways/test_repodata_lock.py::test_lock_can_lock[False]": 1.8545964683049994,
"tests/gateways/test_repodata_lock.py::test_lock_can_lock[True]": 10.921935573281345,
"tests/gateways/test_repodata_lock.py::test_lock_rename": 0.000770944693334315,
"tests/gateways/test_subprocess.py::test_subprocess_call_with_capture_output": 0.5701497269529671,
"tests/gateways/test_subprocess.py::test_subprocess_call_without_capture_output": 0.5612200991758481,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_canonicalized_url_gets_correct_token": 0.007429995872929617,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_channel_alias_w_conda_path": 0.0031388755442579345,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_channel_alias_w_subhcnnale": 0.0031301283232807306,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_custom_token_in_channel": 0.006620768116387883,
"tests/models/test_channel.py::AnacondaServerChannelTests::test_token_in_custom_channel": 0.009552846528718491,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_channel_alias": 0.007352924981876337,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_default_channels": 0.006366108719557776,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_named_custom_channel": 0.007411045668741766,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_named_custom_channel_w_subchan": 0.0039291971721965874,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_url_custom_channel": 0.004819568618229079,
"tests/models/test_channel.py::ChannelAuthTokenPriorityTests::test_url_custom_channel_w_subchan": 0.00848307257331597,
"tests/models/test_channel.py::ChannelEnvironmentVarExpansionTest::test_expanded_variables": 0.016762204389472485,
"tests/models/test_channel.py::ChannelEnvironmentVarExpansionTest::test_unexpanded_variables": 0.015602386596229858,
"tests/models/test_channel.py::CustomConfigChannelTests::test_custom_channels": 0.016188730884097793,
"tests/models/test_channel.py::CustomConfigChannelTests::test_custom_channels_port_token_auth": 0.01651267778794765,
"tests/models/test_channel.py::CustomConfigChannelTests::test_defaults_channel": 0.015062816304771388,
"tests/models/test_channel.py::CustomConfigChannelTests::test_file_channel": 0.01565068574290629,
"tests/models/test_channel.py::CustomConfigChannelTests::test_local_channel": 0.021599158477336938,
"tests/models/test_channel.py::CustomConfigChannelTests::test_migrated_custom_channels": 0.016722503147385662,
"tests/models/test_channel.py::CustomConfigChannelTests::test_old_channel_alias": 0.015349147428144071,
"tests/models/test_channel.py::CustomConfigChannelTests::test_pkgs_main": 0.015464811316230185,
"tests/models/test_channel.py::CustomConfigChannelTests::test_pkgs_pro": 0.016123037906503792,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_bare_channel_file": 0.0032304343770499268,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_bare_channel_http": 0.002215142051547434,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_alias_channels": 0.0016187813685037398,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_cache": 0.0010202844337169083,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_host_port": 0.0015339897945075287,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_channel_name_subdir_only": 0.002608165546290033,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_default_channel": 0.002856417775834364,
"tests/models/test_channel.py::DefaultConfigChannelTests::test_url_channel_w_platform": 0.002633526582235945,
"tests/models/test_channel.py::OtherChannelParsingTests::test_channels_with_dashes": 0.018740329385301607,
"tests/models/test_channel.py::UnknownChannelTests::test_regression_against_unknown_none": 0.002175378692724223,
"tests/models/test_channel.py::UrlChannelTests::test_env_var_file_urls": 0.0037268848284993184,
"tests/models/test_channel.py::UrlChannelTests::test_file_url_with_backslashes": 0.0016418751605715505,
"tests/models/test_channel.py::UrlChannelTests::test_file_urls": 0.001331189003390503,
"tests/models/test_channel.py::UrlChannelTests::test_subdir_env_var": 0.003867525366898316,
"tests/models/test_channel.py::UrlChannelTests::test_subdirs_env_var": 0.0043748985982042105,
"tests/models/test_channel.py::test_bare_channel_file": 0.0033549508638778367,
"tests/models/test_channel.py::test_bare_channel_http": 0.0031741747831441477,
"tests/models/test_channel.py::test_canonicalized_url_gets_correct_token": 0.02715379622295245,
"tests/models/test_channel.py::test_channel_alias": 0.03468326836897259,
"tests/models/test_channel.py::test_channel_alias_channels": 0.002472766287429067,
"tests/models/test_channel.py::test_channel_alias_w_conda_path": 0.0261435120748186,
"tests/models/test_channel.py::test_channel_alias_w_subhcnnale": 0.026438441371823867,
"tests/models/test_channel.py::test_channel_cache": 0.0024126429891561277,
"tests/models/test_channel.py::test_channel_host_port": 0.0023071938512261633,
"tests/models/test_channel.py::test_channel_mangles_urls": 0.0028523628484966963,
"tests/models/test_channel.py::test_channel_name_subdir_only": 0.005513378522042564,
"tests/models/test_channel.py::test_channels_with_dashes": 0.029175100129617444,
"tests/models/test_channel.py::test_custom_channels": 0.03916813693957426,
"tests/models/test_channel.py::test_custom_channels_port_token_auth": 0.03797915888266078,
"tests/models/test_channel.py::test_custom_token_in_channel": 0.025318175475310397,
"tests/models/test_channel.py::test_default_channel": 0.0060720638796042704,
"tests/models/test_channel.py::test_default_channels": 0.03369877190916277,
"tests/models/test_channel.py::test_defaults_channel": 0.03699517174053331,
"tests/models/test_channel.py::test_env_var_file_urls": 0.0045385336365866965,
"tests/models/test_channel.py::test_expanded_variables": 0.032196903820137505,
"tests/models/test_channel.py::test_file_channel": 0.036405462036601735,
"tests/models/test_channel.py::test_file_url_with_backslashes": 0.002494457312612059,
"tests/models/test_channel.py::test_file_urls": 0.0025309316055805602,
"tests/models/test_channel.py::test_local_channel": 0.04979864533002976,
"tests/models/test_channel.py::test_migrated_custom_channels": 0.03824496021090441,
"tests/models/test_channel.py::test_multichannel_priority": 0.00547276516769784,
"tests/models/test_channel.py::test_named_custom_channel": 0.03550388189239329,
"tests/models/test_channel.py::test_named_custom_channel_w_subchan": 0.03368814970708347,
"tests/models/test_channel.py::test_old_channel_alias": 0.03737967660149083,
"tests/models/test_channel.py::test_pkgs_main": 0.03898447287331908,
"tests/models/test_channel.py::test_pkgs_pro": 0.03993798001279143,
"tests/models/test_channel.py::test_ppc64le_vs_ppc64": 0.003700347401547324,
"tests/models/test_channel.py::test_regression_against_unknown_none": 0.0042784965127461915,
"tests/models/test_channel.py::test_subdir_env_var": 0.007895968779423394,
"tests/models/test_channel.py::test_subdirs_env_var": 0.009142070135107688,
"tests/models/test_channel.py::test_token_in_custom_channel": 0.0033085994082761375,
"tests/models/test_channel.py::test_unexpanded_variables": 0.03161294004463207,
"tests/models/test_channel.py::test_url_channel_w_platform": 0.005691194817627763,
"tests/models/test_channel.py::test_url_custom_channel": 0.03568471760973056,
"tests/models/test_channel.py::test_url_custom_channel_w_subchan": 0.034177501011149115,
"tests/models/test_dist.py::test_channel[.conda]": 0.0031063438509938658,
"tests/models/test_dist.py::test_channel[.tar.bz2]": 0.003006671318073,
"tests/models/test_dist.py::test_dist[.conda]": 0.0032445110868456984,
"tests/models/test_dist.py::test_dist[.tar.bz2]": 0.0031173018725470006,
"tests/models/test_dist.py::test_dist_with_channel_url[.conda]": 0.0397287336032569,
"tests/models/test_dist.py::test_dist_with_channel_url[.tar.bz2]": 0.041091869056980194,
"tests/models/test_dist.py::test_dist_with_non_channel_url[.conda]": 0.0038811175956516087,
"tests/models/test_dist.py::test_dist_with_non_channel_url[.tar.bz2]": 0.003912216253087098,
"tests/models/test_index_record.py::PrefixRecordTests::test_index_record_timestamp": 0.0019340663758939279,
"tests/models/test_index_record.py::PrefixRecordTests::test_prefix_record_no_channel": 0.0031878778051191276,
"tests/models/test_index_record.py::test_index_record_timestamp": 0.0039012763391556454,
"tests/models/test_index_record.py::test_prefix_record_no_channel": 0.006567724550999317,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_build_merge": 0.001846353224428701,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_build_number_merge": 0.0017373784197572935,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_catch_invalid_regexes": 0.0016219112319026433,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_channel_merge": 0.001919549396325986,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_hash_merge_with_name": 0.0036070649777691665,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_hash_merge_wo_name": 0.0022686991540493977,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_md5_merge_with_name": 0.0008112825379347437,
"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.002835303006612599,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_merge_single_name": 0.00230556286550601,
"tests/models/test_match_spec.py::MatchSpecMergeTests::test_subdir_merge": 0.0020098115932659444,
"tests/models/test_match_spec.py::MatchSpecTests::test_bracket_matches": 0.004950822429408431,
"tests/models/test_match_spec.py::MatchSpecTests::test_build_number_and_filename": 0.0010958779332769025,
"tests/models/test_match_spec.py::MatchSpecTests::test_canonical_string_forms": 0.0059210490835325804,
"tests/models/test_match_spec.py::MatchSpecTests::test_channel_matching": 0.0030228958604766355,
"tests/models/test_match_spec.py::MatchSpecTests::test_dist": 0.0035914318269867043,
"tests/models/test_match_spec.py::MatchSpecTests::test_exact_values": 0.0012937727847769445,
"tests/models/test_match_spec.py::MatchSpecTests::test_hash": 0.0012436073008117306,
"tests/models/test_match_spec.py::MatchSpecTests::test_index_record": 0.002682355382583609,
"tests/models/test_match_spec.py::MatchSpecTests::test_key_value_features_canonical_string_forms": 0.0004542765141578967,
"tests/models/test_match_spec.py::MatchSpecTests::test_legacy_features_canonical_string_forms": 0.0010741727225880638,
"tests/models/test_match_spec.py::MatchSpecTests::test_license_match": 0.003990732126821948,
"tests/models/test_match_spec.py::MatchSpecTests::test_match_1": 0.011978346149734207,
"tests/models/test_match_spec.py::MatchSpecTests::test_matchspec_errors": 0.0014094387685773017,
"tests/models/test_match_spec.py::MatchSpecTests::test_no_name_match_spec": 0.0010076973486568346,
"tests/models/test_match_spec.py::MatchSpecTests::test_openssl_match": 0.0018504694800284762,
"tests/models/test_match_spec.py::MatchSpecTests::test_strictness": 0.0016478126566345165,
"tests/models/test_match_spec.py::MatchSpecTests::test_tarball_match_specs": 0.0039277404237602394,
"tests/models/test_match_spec.py::MatchSpecTests::test_to_filename": 0.0014884640394347874,
"tests/models/test_match_spec.py::MatchSpecTests::test_track_features_match": 0.004315225619117679,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_dist_str": 0.0030734270927506957,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_build_number_brackets": 0.001063483814196842,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_channel_subdir": 0.0014283257846951837,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_equal_equal": 0.0009911933452026976,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_errors": 0.0010069830474684742,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_hard": 0.0011223773083766234,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_parens": 0.0009718199903588431,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_spec_str_no_brackets": 0.0012181188281077267,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_spec_str_tarball_url": 0.0030669791866168453,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_parse_spec_str_with_brackets": 0.0018641638206561106,
"tests/models/test_match_spec.py::SpecStrParsingTests::test_star_name": 0.0012249757934389713,
"tests/models/test_match_spec.py::TestArg2Spec::test_invalid_arg2spec": 0.0011156581137795082,
"tests/models/test_match_spec.py::TestArg2Spec::test_pip_style": 0.0013408696145452818,
"tests/models/test_match_spec.py::TestArg2Spec::test_simple": 0.0015303138543533068,
"tests/models/test_match_spec.py::TestSpecFromLine::test_comment": 0.0010839093722707512,
"tests/models/test_match_spec.py::TestSpecFromLine::test_conda_style": 0.0010769803129028895,
"tests/models/test_match_spec.py::TestSpecFromLine::test_invalid": 0.0009862034823917528,
"tests/models/test_match_spec.py::TestSpecFromLine::test_pip_style": 0.0015846570473130835,
"tests/models/test_match_spec.py::test_bracket_matches": 0.009059926257096822,
"tests/models/test_match_spec.py::test_build_merge": 0.0031036292463032457,
"tests/models/test_match_spec.py::test_build_number_and_filename": 0.002028372585458967,
"tests/models/test_match_spec.py::test_build_number_merge": 0.003379328334036446,
"tests/models/test_match_spec.py::test_canonical_string_forms": 0.010134881414497133,
"tests/models/test_match_spec.py::test_catch_invalid_regexes": 0.003116799539802876,
"tests/models/test_match_spec.py::test_channel_matching": 0.006415102626249935,
"tests/models/test_match_spec.py::test_channel_merge": 0.003495705348871406,
"tests/models/test_match_spec.py::test_comment": 0.002104676300550736,
"tests/models/test_match_spec.py::test_conda_style": 0.0020906663429040664,
"tests/models/test_match_spec.py::test_dist": 0.006815641848636681,
"tests/models/test_match_spec.py::test_dist_str": 0.006075600985189343,
"tests/models/test_match_spec.py::test_exact_values": 0.0026863257876404466,
"tests/models/test_match_spec.py::test_hash": 0.002500669040181454,
"tests/models/test_match_spec.py::test_hash_merge_with_name": 0.0039061020927484338,
"tests/models/test_match_spec.py::test_hash_merge_wo_name": 0.0027295501078444554,
"tests/models/test_match_spec.py::test_index_record": 0.0049043083454570514,
"tests/models/test_match_spec.py::test_invalid": 0.001879873678296446,
"tests/models/test_match_spec.py::test_invalid_arg2spec": 0.0020798734251184694,
"tests/models/test_match_spec.py::test_key_value_features_canonical_string_forms": 0.0007534836839158644,
"tests/models/test_match_spec.py::test_legacy_features_canonical_string_forms": 0.0021369603178332057,
"tests/models/test_match_spec.py::test_license_match": 0.008678993816771093,
"tests/models/test_match_spec.py::test_match_1": 0.02276789382370142,
"tests/models/test_match_spec.py::test_matchspec_errors": 0.0022024682607891615,
"tests/models/test_match_spec.py::test_merge_multiple_name": 0.005502439906976365,
"tests/models/test_match_spec.py::test_merge_single_name": 0.004958845442614564,
"tests/models/test_match_spec.py::test_no_name_match_spec": 0.002053019532282397,
"tests/models/test_match_spec.py::test_openssl_match": 0.003426411817519366,
"tests/models/test_match_spec.py::test_parse_build_number_brackets": 0.0021218159014484875,
"tests/models/test_match_spec.py::test_parse_channel_subdir": 0.002827653698445049,
"tests/models/test_match_spec.py::test_parse_equal_equal": 0.002059195940784179,
"tests/models/test_match_spec.py::test_parse_errors": 0.0020383522223537706,