-
Notifications
You must be signed in to change notification settings - Fork 23
/
matplotlib__matplotlib-23314.20240402_sweagent_gpt4.eval.log
985 lines (968 loc) · 72.6 KB
/
matplotlib__matplotlib-23314.20240402_sweagent_gpt4.eval.log
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
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Task Metadata:
- Instance ID: matplotlib__matplotlib-23314
- Testbed: matplotlib__matplotlib__3.5
- Evaluation Model: 20240402_sweagent_gpt4
- Python version: Python 3.11.8
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git -c advice.detachedHead=false checkout 97fc1154992f64cfb2f86321155a7404efeb2d8a
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
Previous HEAD position was de98877e3d Move axes_grid tests to axes_grid1 (#23861)
HEAD is now at 97fc115499 Merge pull request #23286 from oscargus/pdfurlrefactor
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git diff > /home/swe-bench/temp_matplotlib__matplotlib-23314_pred_try_init.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": true, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git apply -v /home/swe-bench/temp_matplotlib__matplotlib-23314_pred_try.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": false, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
Checking patch lib/mpl_toolkits/mplot3d/axis3d.py...
Checking patch reproduce_bug.py...
Applied patch lib/mpl_toolkits/mplot3d/axis3d.py cleanly.
Applied patch reproduce_bug.py cleanly.
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Apply patch successful (pred_try)
>>>>> Applied Patch (pred_try)
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git diff > /home/swe-bench/temp_matplotlib__matplotlib-23314_pred_try_init.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": true, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git apply -v -R /home/swe-bench/temp_matplotlib__matplotlib-23314_pred_try.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": false, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
Checking patch reproduce_bug.py...
Checking patch lib/mpl_toolkits/mplot3d/axis3d.py...
Applied patch reproduce_bug.py cleanly.
Applied patch lib/mpl_toolkits/mplot3d/axis3d.py cleanly.
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Revert patch successful (pred_try)
>>>>> Applied Patch (pred_try)
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git diff > /home/swe-bench/temp_matplotlib__matplotlib-23314_pred_init.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": true, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git apply -v /home/swe-bench/temp_matplotlib__matplotlib-23314_pred.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": false, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
Checking patch lib/mpl_toolkits/mplot3d/axis3d.py...
Checking patch reproduce_bug.py...
Applied patch lib/mpl_toolkits/mplot3d/axis3d.py cleanly.
Applied patch reproduce_bug.py cleanly.
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Apply patch successful (pred)
>>>>> Applied Patch (pred)
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git diff > /home/swe-bench/temp_matplotlib__matplotlib-23314_test_init.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": true, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git restore lib/matplotlib/tests/test_axes.py
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git restore lib/mpl_toolkits/tests/test_mplot3d.py
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": true, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: git apply -v /home/swe-bench/temp_matplotlib__matplotlib-23314_test.patch
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": false, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
Checking patch lib/matplotlib/tests/test_axes.py...
Checking patch lib/mpl_toolkits/tests/test_mplot3d.py...
Applied patch lib/matplotlib/tests/test_axes.py cleanly.
Applied patch lib/mpl_toolkits/tests/test_mplot3d.py cleanly.
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 0
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Apply patch successful (test)
>>>>> Applied Patch (test)
Test Script: conda run -n matplotlib__matplotlib__3.5 pytest --no-header -rA --tb=no -p no:cacheprovider lib/matplotlib/tests/test_axes.py lib/mpl_toolkits/tests/test_mplot3d.py;
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Command: conda run -n matplotlib__matplotlib__3.5 pytest --no-header -rA --tb=no -p no:cacheprovider lib/matplotlib/tests/test_axes.py lib/mpl_toolkits/tests/test_mplot3d.py
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Subprocess args: {"cwd": "/home/swe-bench/matplotlib__matplotlib", "check": false, "shell": false, "universal_newlines": true, "stdout": -1, "stderr": -2, "timeout": 1800}
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Std. Output:
============================= test session starts ==============================
collected 927 items
lib/matplotlib/tests/test_axes.py ....s..s..s.......s....s..........s... [ 4%]
...s..........s......s..s........s.....s..s...s........s..s..s.....s.... [ 11%]
.........s...s...s..s..s..s..s..s..s..s....................s...s........ [ 19%]
........................s..s..s..s...s.................................. [ 27%]
...................................s..s..............................s.. [ 35%]
....s................................s...s...s.......s.....s..s....s.... [ 42%]
....s..s..s...........s.....s..s..s....s..s.....................s..s..s. [ 50%]
.s..s.........s..s...................................................... [ 58%]
........................................................................ [ 66%]
...................s.................................................... [ 74%]
........................................................................ [ 81%]
.................................................... [ 87%]
lib/mpl_toolkits/tests/test_mplot3d.py F................................ [ 90%]
........................................................................ [ 98%]
............ [100%]
=========================== short test summary info ============================
PASSED lib/matplotlib/tests/test_axes.py::test_invisible_axes[png]
PASSED lib/matplotlib/tests/test_axes.py::test_get_labels
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_vertical[png]
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_vertical[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_horizontal[png]
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_horizontal[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_rc[png]
PASSED lib/matplotlib/tests/test_axes.py::test_label_loc_rc[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_label_shift
PASSED lib/matplotlib/tests/test_axes.py::test_acorr[png]
PASSED lib/matplotlib/tests/test_axes.py::test_spy[png]
PASSED lib/matplotlib/tests/test_axes.py::test_spy_invalid_kwargs
PASSED lib/matplotlib/tests/test_axes.py::test_matshow[png]
PASSED lib/matplotlib/tests/test_axes.py::test_formatter_ticker[png]
PASSED lib/matplotlib/tests/test_axes.py::test_formatter_ticker[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_funcformatter_auto_formatter
PASSED lib/matplotlib/tests/test_axes.py::test_strmethodformatter_auto_formatter
PASSED lib/matplotlib/tests/test_axes.py::test_twin_axis_locators_formatters[png]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_axis_locators_formatters[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_twinx_cla
PASSED lib/matplotlib/tests/test_axes.py::test_twin_logscale[png-x]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_logscale[png-y]
PASSED lib/matplotlib/tests/test_axes.py::test_twinx_axis_scales[png]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_inherit_autoscale_setting
PASSED lib/matplotlib/tests/test_axes.py::test_inverted_cla
PASSED lib/matplotlib/tests/test_axes.py::test_cla_not_redefined
PASSED lib/matplotlib/tests/test_axes.py::test_minorticks_on_rcParams_both[png]
PASSED lib/matplotlib/tests/test_axes.py::test_autoscale_tiny_range[png]
PASSED lib/matplotlib/tests/test_axes.py::test_autoscale_tiny_range[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_autoscale_tight
PASSED lib/matplotlib/tests/test_axes.py::test_autoscale_log_shared
PASSED lib/matplotlib/tests/test_axes.py::test_use_sticky_edges
PASSED lib/matplotlib/tests/test_axes.py::test_sticky_shared_axes[png]
PASSED lib/matplotlib/tests/test_axes.py::test_basic_annotate[png]
PASSED lib/matplotlib/tests/test_axes.py::test_basic_annotate[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_arrow_simple[png]
PASSED lib/matplotlib/tests/test_axes.py::test_arrow_empty
PASSED lib/matplotlib/tests/test_axes.py::test_arrow_in_view
PASSED lib/matplotlib/tests/test_axes.py::test_annotate_default_arrow
PASSED lib/matplotlib/tests/test_axes.py::test_annotate_signature
PASSED lib/matplotlib/tests/test_axes.py::test_fill_units[png]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_kwarg_redundant
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_dashes[png]
PASSED lib/matplotlib/tests/test_axes.py::test_single_point[png]
PASSED lib/matplotlib/tests/test_axes.py::test_single_point[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_single_date[png]
PASSED lib/matplotlib/tests/test_axes.py::test_shaped_data[png]
PASSED lib/matplotlib/tests/test_axes.py::test_structured_data
PASSED lib/matplotlib/tests/test_axes.py::test_aitoff_proj[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axvspan_epoch[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axvspan_epoch[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axhspan_epoch[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axhspan_epoch[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hexbin_extent[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hexbin_empty[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hexbin_pickable
PASSED lib/matplotlib/tests/test_axes.py::test_hexbin_log[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hexbin_log_clim
PASSED lib/matplotlib/tests/test_axes.py::test_inverted_limits
PASSED lib/matplotlib/tests/test_axes.py::test_nonfinite_limits[png]
PASSED lib/matplotlib/tests/test_axes.py::test_nonfinite_limits[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_limits_empty_data[png-scatter]
PASSED lib/matplotlib/tests/test_axes.py::test_limits_empty_data[png-plot]
PASSED lib/matplotlib/tests/test_axes.py::test_limits_empty_data[png-fill_between]
PASSED lib/matplotlib/tests/test_axes.py::test_imshow[png]
PASSED lib/matplotlib/tests/test_axes.py::test_imshow[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_imshow_clip[png]
PASSED lib/matplotlib/tests/test_axes.py::test_imshow_clip[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_imshow_norm_vminvmax
PASSED lib/matplotlib/tests/test_axes.py::test_polycollection_joinstyle[png]
PASSED lib/matplotlib/tests/test_axes.py::test_polycollection_joinstyle[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_input[2d_x_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_input[2d_y1_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_input[2d_y2_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_betweenx_input[2d_y_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_betweenx_input[2d_x1_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_betweenx_input[2d_x2_input]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate[png]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate_decreasing[png]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate_decreasing[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate_nan[png]
PASSED lib/matplotlib/tests/test_axes.py::test_fill_between_interpolate_nan[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_symlog[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_symlog2[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorargs_5205
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh_small[eps]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh_alpha[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh_alpha[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolormesh_datetime_axis[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolor_datetime_axis[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorargs
PASSED lib/matplotlib/tests/test_axes.py::test_pcolornearest[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolornearestunits[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorflaterror
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorauto[png-False]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorauto[png-True]
PASSED lib/matplotlib/tests/test_axes.py::test_canonical[png]
PASSED lib/matplotlib/tests/test_axes.py::test_canonical[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_arc_angles[png]
PASSED lib/matplotlib/tests/test_axes.py::test_arc_ellipse[png]
PASSED lib/matplotlib/tests/test_axes.py::test_arc_ellipse[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_marker_as_markerstyle
PASSED lib/matplotlib/tests/test_axes.py::test_markevery[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_line[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_line[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales_zoomed[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales_zoomed[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_log_scales[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_log_scales[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_polar[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_polar[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales_nans[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markevery_linear_scales_nans[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_marker_edges[png]
PASSED lib/matplotlib/tests/test_axes.py::test_marker_edges[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_tick_label_single[png]
PASSED lib/matplotlib/tests/test_axes.py::test_nan_bar_values
PASSED lib/matplotlib/tests/test_axes.py::test_bar_ticklabel_fail
PASSED lib/matplotlib/tests/test_axes.py::test_bar_tick_label_multiple[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_tick_label_multiple_old_alignment[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_decimal_center[png]
PASSED lib/matplotlib/tests/test_axes.py::test_barh_decimal_center[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_decimal_width[png]
PASSED lib/matplotlib/tests/test_axes.py::test_barh_decimal_height[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_color_none_alpha
PASSED lib/matplotlib/tests/test_axes.py::test_bar_edgecolor_none_alpha
PASSED lib/matplotlib/tests/test_axes.py::test_barh_tick_label[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_timedelta
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_dates_pandas
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_capwidths
PASSED lib/matplotlib/tests/test_axes.py::test_pcolor_regression
PASSED lib/matplotlib/tests/test_axes.py::test_bar_pandas
PASSED lib/matplotlib/tests/test_axes.py::test_bar_pandas_indexed
PASSED lib/matplotlib/tests/test_axes.py::test_bar_hatches[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_hatches[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_minimal_plot
PASSED lib/matplotlib/tests/test_axes.py::test_hist_log[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_log[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_log_2[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_log_barstacked
PASSED lib/matplotlib/tests/test_axes.py::test_hist_bar_empty[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_float16
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_empty[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_filled[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_density[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_unequal_bins_density
PASSED lib/matplotlib/tests/test_axes.py::test_hist_datetime_datasets
PASSED lib/matplotlib/tests/test_axes.py::test_hist_datetime_datasets_bins[date2num]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_datetime_datasets_bins[datetime.datetime]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_datetime_datasets_bins[np.datetime64]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_with_empty_input[data0-1]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_with_empty_input[data1-1]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_with_empty_input[data2-2]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_zorder[bar-1]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_zorder[step-2]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_zorder[stepfilled-1]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_fill[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_update[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_baseline_0[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_empty
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_invalid_nan
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_invalid_mismatch
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_invalid_update
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_invalid_update2
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_options[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_datetime[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stairs_edge_handling[png]
PASSED lib/matplotlib/tests/test_axes.py::test_contour_hatching[png]
PASSED lib/matplotlib/tests/test_axes.py::test_contour_hatching[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_contour_colorbar[png]
PASSED lib/matplotlib/tests/test_axes.py::test_contour_colorbar[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist2d[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist2d[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist2d_transpose[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist2d_transpose[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist2d_density
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_plot[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_plot[pdf]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_marker[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_2D[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_decimal[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_color
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_unfilled
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_unfillable
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_size_arg_size
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_edgecolor_RGB
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_invalid_color[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_no_invalid_color[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_norm_vminvmax
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_single_point[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_different_shapes[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[0.5-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case1-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[red-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[none-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[None-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case5-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[jaune-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case7-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case8-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case9-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case10-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case11-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case12-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case13-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case14-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case15-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case16-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case17-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case18-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case19-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case20-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case21-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case22-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case23-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case24-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case25-None]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case26-shape]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case27-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case28-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_c[c_case29-conversion]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_single_color_c[png]
PASSED lib/matplotlib/tests/test_axes.py::TestScatter::test_scatter_linewidths
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args[params0-expected_result0]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args[params1-expected_result1]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args[params2-expected_result2]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args[params3-expected_result3]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args[params4-expected_result4]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs0-None]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs1-None]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs2-r]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs3-expected_edgecolors3]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs4-r]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs5-face]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs6-none]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs7-r]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs8-r]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs9-r]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_edgecolors[kwargs10-g]
PASSED lib/matplotlib/tests/test_axes.py::test_parse_scatter_color_args_error
PASSED lib/matplotlib/tests/test_axes.py::test_as_mpl_axes_api
PASSED lib/matplotlib/tests/test_axes.py::test_pyplot_axes
PASSED lib/matplotlib/tests/test_axes.py::test_log_scales
PASSED lib/matplotlib/tests/test_axes.py::test_log_scales_no_data
PASSED lib/matplotlib/tests/test_axes.py::test_log_scales_invalid
PASSED lib/matplotlib/tests/test_axes.py::test_stackplot[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stackplot[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_stackplot_baseline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_stackplot_baseline[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_baseline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_rangewhis[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_percentilewhis[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_with_xlabels[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_horizontal[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_with_ylabels[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_patchartist[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custompatchartist[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_customoutlier[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_showcustommean[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custombox[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custommedian[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_customcap[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_customwhisker[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_shownotches[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_nocaps[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_nobox[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_no_flier_stats[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_showmean[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_showmeanasline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_scalarwidth[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_customwidths[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custompositions[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_bad_widths
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_bad_positions
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custom_capwidths[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_custom_capwidth[png]
PASSED lib/matplotlib/tests/test_axes.py::test_bxp_bad_capwidths
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_custom_capwidths[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_sym2[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_sym[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_autorange_whiskers[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_rc_parameters[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_rc_parameters[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_with_CIarray[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_no_weird_whisker[png]
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_bad_medians
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_bad_ci
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_zorder
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_marker_behavior
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_mod_artist_after_plotting[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_baseline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_showmeans[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_showextrema[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_showmedians[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_showall[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_custompoints_10[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vert_violinplot_custompoints_200[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_baseline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_showmedians[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_showmeans[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_showextrema[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_showall[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_custompoints_10[png]
PASSED lib/matplotlib/tests/test_axes.py::test_horiz_violinplot_custompoints_200[png]
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_bad_positions
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_bad_widths
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_bad_quantiles
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_outofrange_quantiles
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_single_list_quantiles[png]
PASSED lib/matplotlib/tests/test_axes.py::test_violinplot_pandas_series[png]
PASSED lib/matplotlib/tests/test_axes.py::test_manage_xticks
PASSED lib/matplotlib/tests/test_axes.py::test_boxplot_not_single
PASSED lib/matplotlib/tests/test_axes.py::test_tick_space_size_0
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar[png]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_colorcycle
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_cycle_ecolor[png]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_cycle_ecolor[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_shape
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_limits[png]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_limits[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_nonefmt
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_line_specific_kwargs
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_with_prop_cycle[png]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_every_invalid
PASSED lib/matplotlib/tests/test_axes.py::test_xerr_yerr_not_negative
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_every[png]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_every[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_linewidth_type[elinewidth0]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_linewidth_type[elinewidth1]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_linewidth_type[1]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_offset[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_offset[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_horiz[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_weighted[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_weighted[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_stem[png-w/ line collection]
PASSED lib/matplotlib/tests/test_axes.py::test_stem[png-w/o line collection]
PASSED lib/matplotlib/tests/test_axes.py::test_stem_args
PASSED lib/matplotlib/tests/test_axes.py::test_stem_dates
PASSED lib/matplotlib/tests/test_axes.py::test_stem_orientation[png-w/ line collection]
PASSED lib/matplotlib/tests/test_axes.py::test_stem_orientation[png-w/o line collection]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled_alpha[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled_alpha[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_step[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_step[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_density[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_density[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_bottom[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stepfilled_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stepfilled_bottom_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_step_bottom_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_step_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_stepfilled_bottom_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_step_bottom_geometry
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_bar[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_stacked_bar[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_hist_barstacked_bottom_unchanged
PASSED lib/matplotlib/tests/test_axes.py::test_hist_emptydata
PASSED lib/matplotlib/tests/test_axes.py::test_hist_labels
PASSED lib/matplotlib/tests/test_axes.py::test_transparent_markers[png]
PASSED lib/matplotlib/tests/test_axes.py::test_transparent_markers[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_rgba_markers[png]
PASSED lib/matplotlib/tests/test_axes.py::test_rgba_markers[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_mollweide_grid[png]
PASSED lib/matplotlib/tests/test_axes.py::test_mollweide_grid[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_mollweide_forward_inverse_closure
PASSED lib/matplotlib/tests/test_axes.py::test_mollweide_inverse_forward_closure
PASSED lib/matplotlib/tests/test_axes.py::test_alpha[png]
PASSED lib/matplotlib/tests/test_axes.py::test_alpha[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot[png]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_defaults[png]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_colors[colors0]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_colors[colors1]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_colors[colors2]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_problem_kwargs[png]
PASSED lib/matplotlib/tests/test_axes.py::test_empty_eventplot
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[None-data0]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[None-data1]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[None-data2]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[vertical-data0]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[vertical-data1]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[vertical-data2]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[horizontal-data0]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[horizontal-data1]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_orientation[horizontal-data2]
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_units_list[png]
PASSED lib/matplotlib/tests/test_axes.py::test_marker_styles[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markers_fillstyle_rcparams[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vertex_markers[png]
PASSED lib/matplotlib/tests/test_axes.py::test_eb_line_zorder[png]
PASSED lib/matplotlib/tests/test_axes.py::test_eb_line_zorder[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_loglog[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_loglog[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axline[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axline[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_transaxes[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_transaxes[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_transaxes_panzoom[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_transaxes_panzoom[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_args
PASSED lib/matplotlib/tests/test_axes.py::test_vlines[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vlines_default
PASSED lib/matplotlib/tests/test_axes.py::test_hlines[png]
PASSED lib/matplotlib/tests/test_axes.py::test_hlines_default
PASSED lib/matplotlib/tests/test_axes.py::test_lines_with_colors[png-data0]
PASSED lib/matplotlib/tests/test_axes.py::test_lines_with_colors[png-data1]
PASSED lib/matplotlib/tests/test_axes.py::test_step_linestyle[png]
PASSED lib/matplotlib/tests/test_axes.py::test_step_linestyle[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_mixed_collection[png]
PASSED lib/matplotlib/tests/test_axes.py::test_mixed_collection[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_subplot_key_hash
PASSED lib/matplotlib/tests/test_axes.py::test_specgram[png]
PASSED lib/matplotlib/tests/test_axes.py::test_specgram_magnitude[png]
PASSED lib/matplotlib/tests/test_axes.py::test_specgram_angle[png]
PASSED lib/matplotlib/tests/test_axes.py::test_specgram_fs_none
PASSED lib/matplotlib/tests/test_axes.py::test_specgram_origin_rcparam[png]
PASSED lib/matplotlib/tests/test_axes.py::test_specgram_origin_kwarg
PASSED lib/matplotlib/tests/test_axes.py::test_psd_csd[png]
PASSED lib/matplotlib/tests/test_axes.py::test_spectrum[png]
PASSED lib/matplotlib/tests/test_axes.py::test_psd_csd_edge_cases
PASSED lib/matplotlib/tests/test_axes.py::test_twin_remove[png]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_spines[png]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_spines_on_top[png]
PASSED lib/matplotlib/tests/test_axes.py::test_rcparam_grid_minor[both-True-True]
PASSED lib/matplotlib/tests/test_axes.py::test_rcparam_grid_minor[major-True-False]
PASSED lib/matplotlib/tests/test_axes.py::test_rcparam_grid_minor[minor-False-True]
PASSED lib/matplotlib/tests/test_axes.py::test_grid
PASSED lib/matplotlib/tests/test_axes.py::test_reset_grid
PASSED lib/matplotlib/tests/test_axes.py::test_reset_ticks[png]
PASSED lib/matplotlib/tests/test_axes.py::test_vline_limit
PASSED lib/matplotlib/tests/test_axes.py::test_axline_minmax[axvline-axhline-args0]
PASSED lib/matplotlib/tests/test_axes.py::test_axline_minmax[axvspan-axhspan-args1]
PASSED lib/matplotlib/tests/test_axes.py::test_empty_shared_subplots
PASSED lib/matplotlib/tests/test_axes.py::test_shared_with_aspect_1
PASSED lib/matplotlib/tests/test_axes.py::test_shared_with_aspect_2
PASSED lib/matplotlib/tests/test_axes.py::test_shared_with_aspect_3
PASSED lib/matplotlib/tests/test_axes.py::test_shared_aspect_error
PASSED lib/matplotlib/tests/test_axes.py::test_axis_errors[TypeError-args0-kwargs0-axis\\(\\) takes 0 or 1 positional arguments but 2 were given]
PASSED lib/matplotlib/tests/test_axes.py::test_axis_errors[ValueError-args1-kwargs1-Unrecognized string 'foo' to axis; try 'on' or 'off']
PASSED lib/matplotlib/tests/test_axes.py::test_axis_errors[TypeError-args2-kwargs2-the first argument to axis*]
PASSED lib/matplotlib/tests/test_axes.py::test_axis_errors[TypeError-args3-kwargs3-axis\\(\\) got an unexpected keyword argument 'foo']
PASSED lib/matplotlib/tests/test_axes.py::test_axis_method_errors
PASSED lib/matplotlib/tests/test_axes.py::test_twin_with_aspect[x]
PASSED lib/matplotlib/tests/test_axes.py::test_twin_with_aspect[y]
PASSED lib/matplotlib/tests/test_axes.py::test_relim_visible_only
PASSED lib/matplotlib/tests/test_axes.py::test_text_labelsize
PASSED lib/matplotlib/tests/test_axes.py::test_pie_default[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_linewidth_0[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_center_radius[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_linewidth_2[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_ccw_true[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_frame_grid[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_rotatelabels_true[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_nolabel_but_legend[png]
PASSED lib/matplotlib/tests/test_axes.py::test_pie_textprops
PASSED lib/matplotlib/tests/test_axes.py::test_pie_get_negative_values
PASSED lib/matplotlib/tests/test_axes.py::test_normalize_kwarg_pie
PASSED lib/matplotlib/tests/test_axes.py::test_set_get_ticklabels[png]
PASSED lib/matplotlib/tests/test_axes.py::test_set_ticks_with_labels[png]
PASSED lib/matplotlib/tests/test_axes.py::test_set_noniterable_ticklabels
PASSED lib/matplotlib/tests/test_axes.py::test_subsampled_ticklabels
PASSED lib/matplotlib/tests/test_axes.py::test_mismatched_ticklabels
PASSED lib/matplotlib/tests/test_axes.py::test_empty_ticks_fixed_loc
PASSED lib/matplotlib/tests/test_axes.py::test_retain_tick_visibility[png]
PASSED lib/matplotlib/tests/test_axes.py::test_tick_label_update
PASSED lib/matplotlib/tests/test_axes.py::test_o_marker_path_snap[png]
PASSED lib/matplotlib/tests/test_axes.py::test_margins
PASSED lib/matplotlib/tests/test_axes.py::test_set_margin_updates_limits
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[ValueError-args0-kwargs0-margin must be greater than -0.5]
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[ValueError-args1-kwargs1-margin must be greater than -0.5]
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[ValueError-args2-kwargs2-margin must be greater than -0.5]
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[ValueError-args3-kwargs3-margin must be greater than -0.5]
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[TypeError-args4-kwargs4-Cannot pass both positional and keyword arguments for x and/or y.]
PASSED lib/matplotlib/tests/test_axes.py::test_margins_errors[TypeError-args5-kwargs5-Must pass a single positional argument for all*]
PASSED lib/matplotlib/tests/test_axes.py::test_length_one_hist
PASSED lib/matplotlib/tests/test_axes.py::test_set_xy_bound
PASSED lib/matplotlib/tests/test_axes.py::test_pathological_hexbin
PASSED lib/matplotlib/tests/test_axes.py::test_color_None
PASSED lib/matplotlib/tests/test_axes.py::test_color_alias
PASSED lib/matplotlib/tests/test_axes.py::test_numerical_hist_label
PASSED lib/matplotlib/tests/test_axes.py::test_unicode_hist_label
PASSED lib/matplotlib/tests/test_axes.py::test_move_offsetlabel
PASSED lib/matplotlib/tests/test_axes.py::test_rc_spines[png]
PASSED lib/matplotlib/tests/test_axes.py::test_rc_grid[png]
PASSED lib/matplotlib/tests/test_axes.py::test_rc_tick
PASSED lib/matplotlib/tests/test_axes.py::test_rc_major_minor_tick
PASSED lib/matplotlib/tests/test_axes.py::test_square_plot
PASSED lib/matplotlib/tests/test_axes.py::test_bad_plot_args
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data0-xy0-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data0-xy1-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data0-xy2-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data0-xy3-PcolorImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data0-xy4-QuadMesh]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data1-xy0-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data1-xy1-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data1-xy2-AxesImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data1-xy3-PcolorImage]
PASSED lib/matplotlib/tests/test_axes.py::test_pcolorfast[data1-xy4-QuadMesh]
PASSED lib/matplotlib/tests/test_axes.py::test_shared_scale
PASSED lib/matplotlib/tests/test_axes.py::test_shared_bool
PASSED lib/matplotlib/tests/test_axes.py::test_violin_point_mass
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs0]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs1]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs2]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs3]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs4]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs5]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs6]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs7]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs8]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs9]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs10]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs11]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs12]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs13]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs14]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs15]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs16]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs17]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs18]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs19]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs20]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs21]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs22]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs23]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs24]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs25]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs26]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs27]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs28]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs29]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs30]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs31]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs32]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs33]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs34]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs35]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs36]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs37]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs38]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs39]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs40]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs41]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs42]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs43]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs44]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs45]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs46]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs47]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs48]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs49]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs50]
PASSED lib/matplotlib/tests/test_axes.py::test_errorbar_inputs_shotgun[kwargs51]
PASSED lib/matplotlib/tests/test_axes.py::test_dash_offset[png]
PASSED lib/matplotlib/tests/test_axes.py::test_dash_offset[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_title_pad
PASSED lib/matplotlib/tests/test_axes.py::test_title_location_roundtrip
PASSED lib/matplotlib/tests/test_axes.py::test_title_location_shared[True]
PASSED lib/matplotlib/tests/test_axes.py::test_title_location_shared[False]
PASSED lib/matplotlib/tests/test_axes.py::test_loglog[png]
PASSED lib/matplotlib/tests/test_axes.py::test_loglog_nonpos[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axes_margins
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[gca-x]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[gca-y]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[subplots-x]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[subplots-y]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[subplots_shared-x]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[subplots_shared-y]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[add_axes-x]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes[add_axes-y]
PASSED lib/matplotlib/tests/test_axes.py::test_remove_shared_axes_relim
PASSED lib/matplotlib/tests/test_axes.py::test_shared_axes_autoscale
PASSED lib/matplotlib/tests/test_axes.py::test_adjust_numtick_aspect
PASSED lib/matplotlib/tests/test_axes.py::test_auto_numticks
PASSED lib/matplotlib/tests/test_axes.py::test_auto_numticks_log
PASSED lib/matplotlib/tests/test_axes.py::test_broken_barh_empty
PASSED lib/matplotlib/tests/test_axes.py::test_broken_barh_timedelta
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_pcolormesh
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_indexing_dates
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_errorbar_indexing
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_index_shape
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_indexing_hist
PASSED lib/matplotlib/tests/test_axes.py::test_pandas_bar_align_center
PASSED lib/matplotlib/tests/test_axes.py::test_tick_apply_tickdir_deprecation
PASSED lib/matplotlib/tests/test_axes.py::test_axis_set_tick_params_labelsize_labelcolor
PASSED lib/matplotlib/tests/test_axes.py::test_axes_tick_params_gridlines
PASSED lib/matplotlib/tests/test_axes.py::test_axes_tick_params_ylabelside
PASSED lib/matplotlib/tests/test_axes.py::test_axes_tick_params_xlabelside
PASSED lib/matplotlib/tests/test_axes.py::test_none_kwargs
PASSED lib/matplotlib/tests/test_axes.py::test_bar_uint8
PASSED lib/matplotlib/tests/test_axes.py::test_date_timezone_x[png]
PASSED lib/matplotlib/tests/test_axes.py::test_date_timezone_y[png]
PASSED lib/matplotlib/tests/test_axes.py::test_date_timezone_x_and_y[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axisbelow[png]
PASSED lib/matplotlib/tests/test_axes.py::test_titletwiny
PASSED lib/matplotlib/tests/test_axes.py::test_titlesetpos
PASSED lib/matplotlib/tests/test_axes.py::test_title_xticks_top
PASSED lib/matplotlib/tests/test_axes.py::test_title_xticks_top_both
PASSED lib/matplotlib/tests/test_axes.py::test_title_above_offset[left title moved]
PASSED lib/matplotlib/tests/test_axes.py::test_title_above_offset[center title kept]
PASSED lib/matplotlib/tests/test_axes.py::test_title_above_offset[both titles aligned]
PASSED lib/matplotlib/tests/test_axes.py::test_title_no_move_off_page
PASSED lib/matplotlib/tests/test_axes.py::test_offset_label_color
PASSED lib/matplotlib/tests/test_axes.py::test_offset_text_visible
PASSED lib/matplotlib/tests/test_axes.py::test_large_offset
PASSED lib/matplotlib/tests/test_axes.py::test_barb_units
PASSED lib/matplotlib/tests/test_axes.py::test_quiver_units
PASSED lib/matplotlib/tests/test_axes.py::test_bar_color_cycle
PASSED lib/matplotlib/tests/test_axes.py::test_tick_param_label_rotation
PASSED lib/matplotlib/tests/test_axes.py::test_fillbetween_cycle
PASSED lib/matplotlib/tests/test_axes.py::test_log_margins
PASSED lib/matplotlib/tests/test_axes.py::test_color_length_mismatch
PASSED lib/matplotlib/tests/test_axes.py::test_eventplot_legend
PASSED lib/matplotlib/tests/test_axes.py::test_bar_broadcast_args
PASSED lib/matplotlib/tests/test_axes.py::test_invalid_axis_limits
PASSED lib/matplotlib/tests/test_axes.py::test_minorticks_on[symlog-symlog]
PASSED lib/matplotlib/tests/test_axes.py::test_minorticks_on[symlog-log]
PASSED lib/matplotlib/tests/test_axes.py::test_minorticks_on[log-symlog]
PASSED lib/matplotlib/tests/test_axes.py::test_minorticks_on[log-log]
PASSED lib/matplotlib/tests/test_axes.py::test_twinx_knows_limits
PASSED lib/matplotlib/tests/test_axes.py::test_zero_linewidth
PASSED lib/matplotlib/tests/test_axes.py::test_empty_errorbar_legend
PASSED lib/matplotlib/tests/test_axes.py::test_plot_decimal[png]
PASSED lib/matplotlib/tests/test_axes.py::test_markerfacecolor_none_alpha[png]
PASSED lib/matplotlib/tests/test_axes.py::test_tick_padding_tightbbox
PASSED lib/matplotlib/tests/test_axes.py::test_inset
PASSED lib/matplotlib/tests/test_axes.py::test_zoom_inset
PASSED lib/matplotlib/tests/test_axes.py::test_inset_polar[png]
PASSED lib/matplotlib/tests/test_axes.py::test_inset_projection
PASSED lib/matplotlib/tests/test_axes.py::test_inset_subclass
PASSED lib/matplotlib/tests/test_axes.py::test_indicate_inset_inverted[False-False]
PASSED lib/matplotlib/tests/test_axes.py::test_indicate_inset_inverted[False-True]
PASSED lib/matplotlib/tests/test_axes.py::test_indicate_inset_inverted[True-False]
PASSED lib/matplotlib/tests/test_axes.py::test_indicate_inset_inverted[True-True]
PASSED lib/matplotlib/tests/test_axes.py::test_set_position
PASSED lib/matplotlib/tests/test_axes.py::test_spines_properbbox_after_zoom
PASSED lib/matplotlib/tests/test_axes.py::test_gettightbbox_ignore_nan
PASSED lib/matplotlib/tests/test_axes.py::test_scatter_series_non_zero_index
PASSED lib/matplotlib/tests/test_axes.py::test_scatter_empty_data
PASSED lib/matplotlib/tests/test_axes.py::test_annotate_across_transforms[png]
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_xy[png]
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_fail
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_resize
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_minorloc
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_formatter
PASSED lib/matplotlib/tests/test_axes.py::test_secondary_repr
PASSED lib/matplotlib/tests/test_axes.py::test_normal_axes
PASSED lib/matplotlib/tests/test_axes.py::test_nodecorator
PASSED lib/matplotlib/tests/test_axes.py::test_displaced_spine
PASSED lib/matplotlib/tests/test_axes.py::test_tickdirs
PASSED lib/matplotlib/tests/test_axes.py::test_minor_accountedfor
PASSED lib/matplotlib/tests/test_axes.py::test_axis_bool_arguments[png]
PASSED lib/matplotlib/tests/test_axes.py::test_axis_extent_arg
PASSED lib/matplotlib/tests/test_axes.py::test_axis_extent_arg2
PASSED lib/matplotlib/tests/test_axes.py::test_hist_auto_bins
PASSED lib/matplotlib/tests/test_axes.py::test_hist_nan_data
PASSED lib/matplotlib/tests/test_axes.py::test_hist_range_and_density
PASSED lib/matplotlib/tests/test_axes.py::test_bar_errbar_zorder
PASSED lib/matplotlib/tests/test_axes.py::test_set_ticks_inverted
PASSED lib/matplotlib/tests/test_axes.py::test_aspect_nonlinear_adjustable_box
PASSED lib/matplotlib/tests/test_axes.py::test_aspect_nonlinear_adjustable_datalim
PASSED lib/matplotlib/tests/test_axes.py::test_box_aspect
PASSED lib/matplotlib/tests/test_axes.py::test_box_aspect_custom_position
PASSED lib/matplotlib/tests/test_axes.py::test_bbox_aspect_axes_init
PASSED lib/matplotlib/tests/test_axes.py::test_redraw_in_frame
PASSED lib/matplotlib/tests/test_axes.py::test_invisible_axes_events
PASSED lib/matplotlib/tests/test_axes.py::test_xtickcolor_is_not_markercolor
PASSED lib/matplotlib/tests/test_axes.py::test_ytickcolor_is_not_markercolor
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[True-x]
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[True-y]
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[False-x]
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[False-y]
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[None-x]
PASSED lib/matplotlib/tests/test_axes.py::test_unautoscale[None-y]
PASSED lib/matplotlib/tests/test_axes.py::test_polar_interpolation_steps_variable_r[png]
PASSED lib/matplotlib/tests/test_axes.py::test_autoscale_tiny_sticky
PASSED lib/matplotlib/tests/test_axes.py::test_xtickcolor_is_not_xticklabelcolor
PASSED lib/matplotlib/tests/test_axes.py::test_ytickcolor_is_not_yticklabelcolor
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[xx-small]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[x-small]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[small]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[medium]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[large]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[x-large]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[xx-large]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[larger]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[smaller]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[8]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[10]
PASSED lib/matplotlib/tests/test_axes.py::test_relative_ticklabel_sizes[12]
PASSED lib/matplotlib/tests/test_axes.py::test_multiplot_autoscale
PASSED lib/matplotlib/tests/test_axes.py::test_sharing_does_not_link_positions
PASSED lib/matplotlib/tests/test_axes.py::test_2dcolor_plot[pdf]
PASSED lib/matplotlib/tests/test_axes.py::test_shared_axes_clear[png]
PASSED lib/matplotlib/tests/test_axes.py::test_shared_axes_retick
PASSED lib/matplotlib/tests/test_axes.py::test_ylabel_ha_with_position[left]
PASSED lib/matplotlib/tests/test_axes.py::test_ylabel_ha_with_position[center]
PASSED lib/matplotlib/tests/test_axes.py::test_ylabel_ha_with_position[right]
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_vertical
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_vertical_yinverted
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_horizontal
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_horizontal_yinverted
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_horizontal_xinverted
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_horizontal_xyinverted
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_center
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_location_errorbars
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_fmt
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_labels
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_nan_ydata
PASSED lib/matplotlib/tests/test_axes.py::test_bar_label_nan_ydata_inverted
PASSED lib/matplotlib/tests/test_axes.py::test_nan_barlabels
PASSED lib/matplotlib/tests/test_axes.py::test_patch_bounds
PASSED lib/matplotlib/tests/test_axes.py::test_warn_ignored_scatter_kwargs
PASSED lib/matplotlib/tests/test_axes.py::test_artist_sublists
PASSED lib/matplotlib/tests/test_axes.py::test_empty_line_plots
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[None-f-'f' is not a valid format string \\(unrecognized character 'f'\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[None-o+-'o\\+' is not a valid format string \\(two marker symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[None-:--':-' is not a valid format string \\(two linestyle symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[None-rk-'rk' is not a valid format string \\(two color symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[None-:o-r-':o-r' is not a valid format string \\(two linestyle symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[data1-f-'f' is not a valid format string \\(unrecognized character 'f'\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[data1-o+-'o\\+' is not a valid format string \\(two marker symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[data1-:--':-' is not a valid format string \\(two linestyle symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[data1-rk-'rk' is not a valid format string \\(two color symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format_errors[data1-:o-r-':o-r' is not a valid format string \\(two linestyle symbols\\)]
PASSED lib/matplotlib/tests/test_axes.py::test_plot_format
PASSED lib/matplotlib/tests/test_axes.py::test_automatic_legend
PASSED lib/matplotlib/tests/test_axes.py::test_plot_errors
PASSED lib/matplotlib/tests/test_axes.py::test_clim
PASSED lib/matplotlib/tests/test_axes.py::test_bezier_autoscale
PASSED lib/matplotlib/tests/test_axes.py::test_get_xticklabel
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_aspect_equal_error
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_bar3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_bar3d_colors
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_bar3d_shaded[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_bar3d_notshaded[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_bar3d_lightsource
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contour3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contourf3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contourf3d_fill[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contourf3d_extend[png-both-levels0]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contourf3d_extend[png-min-levels1]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contourf3d_extend[png-max-levels2]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_tricontour[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_contour3d_1d_input
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_lines3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_plot_scalar[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_mixedsubplots[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_tight_layout_text[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter3d_color[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter3d_modification[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter3d_sorting[png-True]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter3d_sorting[png-False]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_marker_draw_order_data_reversed[png--50]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_marker_draw_order_data_reversed[png-130]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_marker_draw_order_view_rotated[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_plot_3d_from_2d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_surface3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_surface3d_shaded[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_surface3d_masked[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_surface3d_masked_strides[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_text3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_text3d_modification[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_trisurf3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_trisurf3d_shaded[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_wireframe3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_wireframe3dzerocstride[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_wireframe3dzerorstride[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_wireframe3dzerostrideraises
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_mixedsamplesraises
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_quiver3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_quiver3d_empty[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_quiver3d_masked[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_patch_modification
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_patch_collection_modification[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_poly3dcollection_verts_validation
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_poly3dcollection_closed[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_poly_collection_2d_to_3d_empty
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_poly3dcollection_alpha[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_add_collection3d_zs_array[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_add_collection3d_zs_scalar[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_labelpad[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_cla[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_rotated[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_plotsurface_1d_raises
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_proj_transform
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_proj_axes_cube[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_proj_axes_cube_ortho[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_rot
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_world
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_lines_dists[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_lines_dists_nowarning
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_autoscale
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[True-x]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[True-y]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[True-z]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[False-x]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[False-y]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[False-z]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[None-x]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[None-y]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_unautoscale[None-z]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_focal_length_checks
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_focal_length[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_ortho[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_axes3d_isometric[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_xlim3d-left-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_xlim3d-left-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_xlim3d-right-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_xlim3d-right-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_ylim3d-bottom-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_ylim3d-bottom-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_ylim3d-top-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_ylim3d-top-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_zlim3d-bottom-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_zlim3d-bottom-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_zlim3d-top-inf]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_invalid_axes_limits[set_zlim3d-top-nan]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_simple[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_edge_style[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_named_colors[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_rgb_data[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_alpha[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_xyz[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::TestVoxels::test_calling_conventions
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_line3d_set_get_data_3d
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_inverted[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_inverted_cla
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_ax3d_tickcolour
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_ticklabel_format[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_quiver3D_smoke[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_minor_ticks[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_errorbar3d_errorevery[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_errorbar3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_stem3d[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_equal_box_aspect[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_colorbar_pos
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_shared_axes_retick
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_pan
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scalarmap_update[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_subfigure_simple
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_computed_zorder[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_scatter_spiral[png]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_view_init_vertical_axis[z-proj_expected0-axis_lines_expected0-tickdirs_expected0]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_view_init_vertical_axis[y-proj_expected1-axis_lines_expected1-tickdirs_expected1]
PASSED lib/mpl_toolkits/tests/test_mplot3d.py::test_view_init_vertical_axis[x-proj_expected2-axis_lines_expected2-tickdirs_expected2]
SKIPPED [10] lib/matplotlib/testing/compare.py:285: Don't know how to convert .svg files to png
SKIPPED [53] ../miniconda3/envs/matplotlib__matplotlib__3.5/lib/python3.11/contextlib.py:81: Cannot compare svg files on this system
FAILED lib/mpl_toolkits/tests/test_mplot3d.py::test_invisible_axes[png] - mat...
============= 1 failed, 863 passed, 63 skipped in 90.59s (0:01:30) =============
ERROR conda.cli.main_run:execute(124): `conda run pytest --no-header -rA --tb=no -p no:cacheprovider lib/matplotlib/tests/test_axes.py lib/mpl_toolkits/tests/test_mplot3d.py` failed. (See above for error)
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Return Code: 1
>>>>> Some Tests Failed
[matplotlib__matplotlib__3.5] [matplotlib__matplotlib-23314] Test script run successful