Marcel Telka
2024-04-02 427a3515f6e96ea3b092345cdad006cf2b3dde76
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
py$(PYV): commands[0]> $(PYTHON) selftest.py
<doctest __main__.testimage[57]>:1: DeprecationWarning: ImageMath.eval is deprecated and will be removed in Pillow 12 (2025-10-15). Use ImageMath.lambda_eval or ImageMath.unsafe_eval instead.
  im = ImageMath.eval("float(im + 20)", im=im.convert("L"))
--------------------------------------------------------------------
Pillow 10.3.0
Python 3.9.19 (main, Mar 26 2024, 20:30:24)
       [GCC 13.2.0]
--------------------------------------------------------------------
Python executable is $(PYTHON)
System Python files loaded from /usr
--------------------------------------------------------------------
Python Pillow modules loaded from $(PROTO_DIR)$(PYTHON_DIR)/vendor-packages/PIL
Binary Pillow modules loaded from $(PROTO_DIR)$(PYTHON_DIR)/vendor-packages/PIL
--------------------------------------------------------------------
--- PIL CORE support ok, compiled for 10.3.0
--- TKINTER support ok, loaded 8.6
--- FREETYPE2 support ok, loaded 2.13.2
--- LITTLECMS2 support ok, loaded 2.16
--- WEBP support ok, loaded 1.3.2
--- WEBP Transparency support ok
--- WEBPMUX support ok
--- WEBP Animation support ok
--- JPEG support ok, compiled for libjpeg-turbo 3.0.2
--- OPENJPEG (JPEG2000) support ok, loaded 2.5.0
--- ZLIB (PNG/ZIP) support ok, loaded 1.3.1
--- LIBTIFF support ok, loaded 4.6.0
*** RAQM (Bidirectional Text) support not installed
*** LIBIMAGEQUANT (Quantization method) support not installed
--- XCB (X protocol) support ok
--------------------------------------------------------------------
Running selftest:
--- 59 tests passed.
py$(PYV): commands[1]> $(PYTHON) -m pytest -W always
============================= test session starts ==============================
platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
cachedir: .tox/py$(PYV)/.pytest_cache
rootdir: $(@D)
configfile: pyproject.toml
testpaths: Tests
collecting ... collected 4556 items
 
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/10x20-ISO8859-1-fewer-characters.pcf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/10x20-ISO8859-1.pcf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/10x20.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/10x20.pil] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/AdobeVFPrototype.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ArefRuqaa-Regular.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/BungeeColor-Regular_colr_Windows.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/CBDTTestFont.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/DejaVuSans-24-1-stripped.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/DejaVuSans-24-2-stripped.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/DejaVuSans-24-4-stripped.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/DejaVuSans-24-8-stripped.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/DejaVuSans.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/DejaVuSans/LICENSE.txt] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/EBDTTestFont.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/FreeMono.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/KhmerOSBattambang-Regular.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/LICENSE.txt] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/NotoNastaliqUrdu-Regular.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/NotoSans-Regular.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/NotoSansJP-Regular.otf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/NotoSansSymbols-Regular.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/OpenSans.woff2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/OpenSansCondensed-LightItalic.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/TINY5x3GX.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/chromacheck-sbix.woff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/fuzz_font-5203009437302784] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/oom-4da0210eb7081b0bf15bf16cc4c52ce02c1e1bbc.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/oom-e8e927ba6c0d38274a37c1567560eb33baf74627.ttf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-cp1250.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-cp1250.pil] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-iso8859-1.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-iso8859-1.pil] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-iso8859-2.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b-iso8859-2.pil] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[Tests/fonts/ter-x20b.pcf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_fonts[] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/00r0_gray_l.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/00r1_graya_la.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/01r_00.pcx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/1.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/10ct_32bit_128.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/12bit.cropped.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/12in16bit.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16_bit_binary.pgm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16_bit_binary_pgm.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16_bit_noise.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.MM.cropped.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.MM.deflate.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.cropped.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.cropped.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.cropped.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.deflate.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.r.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/16bit.s.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/1_trns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/200x32_p_bl_raw_origin.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/2422.flc] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/7x13.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/8bit.s.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/9bit.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/DXGI_FORMAT_BC7_UNORM_SRGB.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/DXGI_FORMAT_BC7_UNORM_SRGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/DXGI_FORMAT_R8G8B8A8_UNORM_SRGB.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/DXGI_FORMAT_R8G8B8A8_UNORM_SRGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/WAlaska.wind.7days.grb] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/a.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/a_fli.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/anim_frame1.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/anim_frame2.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/blend_op_over.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/blend_op_over_near_transparent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/blend_op_source_near_transparent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/blend_op_source_solid.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/blend_op_source_transparent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_actl_after_idat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_multi_actl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_no_actl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_no_fctl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_no_fdat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/chunk_repeat_fctl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/delay.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/delay_round.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/delay_short_max.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/delay_zero_denom.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/delay_zero_numer.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/different_durations.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_background.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_background_before_region.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_background_final.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_background_p_mode.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_background_region.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_none.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_none_region.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_previous.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_previous_final.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_previous_first.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_previous_frame.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/dispose_op_previous_region.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/fctl_actl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_16bit.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_grayscale.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_grayscale_alpha.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_palette.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_palette_1bit_alpha.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/mode_palette_alpha.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/num_plays.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/num_plays_1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_fdat_fctl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_gap.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_reorder.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_reorder_chunk.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_repeat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_repeat_chunk.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/sequence_start.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/single_frame.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/single_frame_default.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/split_fdat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/split_fdat_zero_chunk.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/syntax_num_frames_high.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/syntax_num_frames_invalid.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/syntax_num_frames_low.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/syntax_num_frames_zero.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/apng/syntax_num_frames_zero_default.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/app13-multiple.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/app13.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/argb-32bpp_MipMaps-1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/argb-32bpp_MipMaps-1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ati1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ati1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ati2.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/background_outside_palette.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bad_palette_entry.gpl] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bad_palette_file.gpl] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/balloon.jpf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/balloon_eciRGBv2_aware.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc1_typeless.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc4_typeless.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc4_unorm.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc4_unorm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc4u.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5_snorm.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5_typeless.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5_unorm.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5_unorm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5s.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5s.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc5u.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc6h.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc6h.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc6h_sf.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc6h_sf.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc7-argb-8bpp_MipMaps-1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bc7-argb-8bpp_MipMaps-1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bgr15.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bgr15.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/binary_preview_map.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_1_basic.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_1_raqm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_2_basic.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_2_raqm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_4_basic.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_4_raqm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_8_basic.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_8_raqm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_blend.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_stroke_basic.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bitmap_font_stroke_raqm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/black_and_white.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blend_transparency.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp1_jpeg.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp1_jpeg.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp1_jpeg2.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_dxt1.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_dxt1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_dxt1a.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_dxt1a.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_raw.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/blp/blp2_raw.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/README.txt] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badbitcount.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badbitssize.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/baddens1.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/baddens2.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badfilesize.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badheadersize.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badpalettesize.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badplanes.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badrle.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/badwidth.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/pal8badindex.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/reallybig.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/rletopdown.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/b/shortfile.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal1.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal1bg.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal1wb.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal4.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal4rle.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8-0.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8nonsquare.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8os2.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8rle.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8topdown.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8v4.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8v5.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8w124.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8w125.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/pal8w126.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb16-565.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb16-565pal.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb16.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb24.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb24pal.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb32.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/g/rgb32bf.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/bkgd.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/bmpsuite.html] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/fakealpha.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal1bg.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal1p1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal4.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal4rletrns-0.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal4rletrns-b.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal4rletrns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8nonsquare-e.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8nonsquare-v.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8rletrns-0.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8rletrns-b.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8rletrns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8w124.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8w125.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/pal8w126.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgb16-231.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgb16-565.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgb16.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgb24.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgb24.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgba16-4444.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/html/rgba32.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal1p1.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal2.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal4rletrns.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8offs.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8os2sp.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8os2v2-16.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8os2v2.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8oversizepal.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/pal8rletrns.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb16-231.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb24jpeg.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb24largepal.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb24lprof.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb24png.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb24prof.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb32-111110.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb32bf-xbgr.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgb32fakealpha.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgba16-4444.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgba32.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bmp/q/rgba32abf.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/broken.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/broken_data_stream.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/broken_exif_dpi.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bw_gradient.imt] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/bw_gradient.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/caption_6_33_22.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cbdt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cbdt_mask.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/chi.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/child_ifd.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/child_ifd_jpeg.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/chromacheck-sbix.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/chromacheck-sbix_mask.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/clipboard.dib] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/clipboard_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cmx3g8_wv_1998.260_0745_mcidas.ara] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cmx3g8_wv_1998.260_0745_mcidas.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/color_snakes.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/colr_bungee.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/colr_bungee_mask.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/combined_larger_than_size.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/comment.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/comment_after_last_frame.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/comment_after_only_frame.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/compression.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/copyleft.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/copyleft.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/corner.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/courB08.bdf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/courB08.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/courB08.pil] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-0c7e0e8e11ce787078f00b5b0ca409a167f070e0.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-0da013a13571cc8eb457a39fee8db18f8a3c7127.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-0e16d3bfb83be87356d026d66919deaefca44dac.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-1152ec2d1a1a71395b6f2ce6721c38924d025bf3.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-1185209cf7655b5aed8ae5e77784dfdd18ab59e9.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-2020-10-test.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-338516dbd2f0e83caddb8ce256c22db3bd6dc40f.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-465703f71a0f0094873a3e0e82c9f798161171b8.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-4f085cc12ece8cde18758d42608bed6a2a2cfb1c.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-4fb027452e6988530aa5dabee76eecacb3b79f8a.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-5762152299364352.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-63b1dffefc8c075ddc606c0a2f5fdc15ece78863.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-64834657ee604b8797bf99eac6a194c124a9a8ba.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-6b7f2244da6d0ae297ee0754a424213444e92778.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-74d2a78403a5a59db1fb0a2b8735ac068a75f6e3.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-754d9c7ec485ffb76a90eeaab191ef69a2a3a3cd.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-7d4c83eb92150fb8f1653a697703ae06ae7c4998.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-86214e58da443d2b80820cff9677a38a33dcbbca.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-abcf1c97b8fe42a6c68f1fb0b978530c98d57ced.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-b82e64d4f3f76d7465b6af535283029eda211259.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-c1b2595b8b0b92cc5f38b6635e98e3a119ade807.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-ccca68ff40171fdae983d924e127a721cab2bd50.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-d2c93af851d3ab9a19e34503626368b2ecde9c03.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-db8bfa78b19721225425530c5946217720d7df4e.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/crash-f46f5b2f43c370fe65706c11449f567ecc345e74.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/create_eps.gnuplot] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cross_scan_line.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cross_scan_line.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/cross_scan_line_truncated.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/custom_gimp_palette.gpl] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/decompression_bomb.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/decompression_bomb.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/decompression_bomb_extents.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/deerstalker.cur] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/default_font.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/default_font_freetype.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/different_transparency.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/different_transparency_merged.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dilation4.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dilation8.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_bgnd.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_bgnd_rgba.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_bgnd_transparency.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_none.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_none_load_end.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_none_load_end_second.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_prev.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_prev_first_frame.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dispose_prev_first_frame_seeked.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/drawing.emf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/drawing.wmf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/drawing_emf_ref.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/drawing_wmf_ref.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/drawing_wmf_ref_144.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dummy.container] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/duplicate_frame.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/duplicate_number_of_loops.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/duplicate_xref_entry.pdf] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt1-rgb-4bbp-noalpha_MipMaps-1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt1-rgb-4bbp-noalpha_MipMaps-1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt3-argb-8bbp-explicitalpha_MipMaps-1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt3-argb-8bbp-explicitalpha_MipMaps-1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt5-argb-8bbp-interpolatedalpha_MipMaps-1.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt5-argb-8bbp-interpolatedalpha_MipMaps-1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/dxt5-colorblock-alpha-issue-4142.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/edge.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/effect_mandelbrot.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/effect_spread.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/empty_gps_ifd.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/erosion4.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/erosion8.lut] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif-200dpcm.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif-72dpi-int.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif-dpi-zerodivision.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif-ifd-offset.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_gps.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_gps_typeerror.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_imagemagick.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_imagemagick_orientation.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/exif_typeerror.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/expected_to_read.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/first_frame_transparency.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/five_channels.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/02r00.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/notes] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/others/02r01.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/others/02r02.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/others/02r03.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/others/02r04.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/02r/reproducing] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/03r00.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/notes] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r01.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r02.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r03.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r04.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r05.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r06.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r07.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r08.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r09.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r10.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/others/03r11.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/03r/reproducing] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/04r00.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/initial.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/notes] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/others/04r01.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/others/04r02.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/others/04r03.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/others/04r04.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/others/04r05.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/04r/reproducing] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/05r00.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/notes] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r01.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r02.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r03.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r04.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r05.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r06.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/others/05r07.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/05r/reproducing] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/06r00.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/notes] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/others/06r01.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/others/06r02.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/others/06r03.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/others/06r04.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/06r/reproducing] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/patch0/000000] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/patch0/000001] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/patch0/000002] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_oob/patch0/000003] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_overflow.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_overrun.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fli_overrun2.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/flower.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/flower.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/flower2.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/flower2.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/flower_thumbnail.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/frozenpond.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ftex_dxt1.ftc] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ftex_dxt1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ftex_uncompressed.ftu] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ftex_uncompressed.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/fujifilm.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4-fillorder-test.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4-fillorder-test.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4-multi.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_1.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_2.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_3.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_4.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_5.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_6.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_7.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/g4_orientation_8.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gbr.gbr] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gbr.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gfs.t06z.rassda.tm00.bufr_d] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gif_header_data.pkl] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gimp_gradient.ggr] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/gimp_gradient_with_name.ggr] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hdf5.h5] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/high_ascii_chars.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper-XYZ.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.Lab.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.bw] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.dcx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.fits] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.gd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.iccprofile.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.iccprofile_binary.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.im] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.mic] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.msp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.p7] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.pcd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.pfm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.pnm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.pxr] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.qoi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.ras] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.rgb] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.spider] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.tar] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.wal] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.xbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper.xpm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper16.rgb] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_16bit.pgm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_16bit_plain.pgm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_16bit_qtables.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_1bit.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_1bit_plain.pbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_256x256.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_45.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_8bit.pgm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_8bit.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_8bit_plain.pgm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_8bit_plain.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_bad.p7] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_bad_checksum.msp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_bad_exif.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_be.pfm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_bigtiff.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_bw_500.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_draw.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_emboss.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_emboss_more.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_float_dpi_2.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_float_dpi_3.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_float_dpi_None.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_g4.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_g4_500.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_gray.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_gray_4bpp.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_idat_after_image_end.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_jpg.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_long_name.im] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_lzma.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_lzw.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_mask.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_mask.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_merged.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_naxis_zero.fits] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_2.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_2.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_3.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_3.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_4.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_4.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_5.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_5.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_6.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_6.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_7.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_7.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_8.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_orientation_8.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_palette_chunk_second.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_resized.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_rle8.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_rle8_grayscale.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_rle8_row_overflow.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_underscore.xbm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_unexpected.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_unknown_pixel_mode.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_wal.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_webp.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_webp.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_webp_bits.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_webp_write.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/hopper_zero_comment_subblocks.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/i_trns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/icc-after-SOF.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/icc_profile.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/icc_profile_big.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/icc_profile_none.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ifd_tag_type.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ignore_frame_size.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/illu10_no_preview.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/illu10_preview.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/illuCS6_no_preview.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/illuCS6_preview.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/continuous_horizontal_edges_polygon.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/discontiguous_corners_polygon.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_horizontal_slope1px_w2px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_horizontal_w101px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_horizontal_w2px_inverted.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_horizontal_w2px_normal.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_horizontal_w3px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_oblique_45_w3px_a.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_oblique_45_w3px_b.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_vertical_slope1px_w2px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_vertical_w101px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_vertical_w2px_inverted.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_vertical_w2px_normal.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/line_vertical_w3px.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/square.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/triangle_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/triangle_right_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw/triangle_right_width_no_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw2_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_end_le_start.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_high.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_no_loops.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_width_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_width_non_whole_angle.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_arc_width_pieslice.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_big_rectangle.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_bitmap.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_too_fat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_width_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_chord_zero_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_default_font_size.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_edge.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_translucent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_various_sizes.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_various_sizes_filled.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_width_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_width_large.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_ellipse_zero_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_floodfill2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_floodfill_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_floodfill_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_floodfill_RGBA.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_floodfill_not_negative.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_line.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_line_joint_curve.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_chord_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_chord_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_ellipse_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_ellipse_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_pieslice_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_pieslice_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_polygon_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_polygon_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_rectangle_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_rectangle_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_shape_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_outline_shape_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_pieslice.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_pieslice_wide.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_pieslice_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_pieslice_width_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_pieslice_zero_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_point.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon_1px_high.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon_1px_high_translucent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon_kite_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon_kite_RGB.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_polygon_translucent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle_I.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle_translucent_outline.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle_width_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rectangle_zero_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_regular_octagon.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_both.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nnnn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nnny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nnyn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nnyy.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nynn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nyny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nyyn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_nyyy.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_ynnn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_ynny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_ynyn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_ynyy.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_yynn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_yyny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_yyyn.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_corners_yyyy.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_non_integer_radius_given.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_non_integer_radius_height.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_non_integer_radius_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_x.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_x_odd.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_y.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_rounded_rectangle_y_odd.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_shape1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_shape2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_square.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_square_rotate_45.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_stroke_descender.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_stroke_different.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_stroke_multiline.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_stroke_same.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_triangle_width.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_wide_line_dot.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imagedraw_wide_line_larger_than_int.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_h_0.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_h_1.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_h_2.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_v_0.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_v_1.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/imageops_pad_v_2.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/input_bw_five_bands.fpx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/input_bw_one_band.fpx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/input_bw_one_band.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/invalid-exif-without-x-resolution.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/invalid-exif.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/invalid.spider] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/invalid_header_length.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/iptc.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/iptc_roundUp.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/iss634.apng] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/iss634.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/iss634.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/issue_2278.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/issue_2811.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/issue_6194.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/itxt_chunks.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/jpeg_ff00_header.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/junk_jpeg_header.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/l2rgb_read.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/l_trns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/la.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/lab-green.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/lab-red.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/lab.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/libtiff_segfault.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/linear_gradient.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/m13.fits] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/m13_gzip.fits] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/missing_background.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/missing_background_first_frame.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/mmap_error.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/morph_a.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiline_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiline_text_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiline_text_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiline_text_spacing.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage-lastframe.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage-mmap.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage_multiple_frame_loop.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage_out_of_order.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multipage_single_frame_loop.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiple_comments.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/multiple_exif.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/negative_layer_count.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/negative_size.ppm] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/negative_top_left_layer.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no-dpi-in-exif.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_cursors.cur] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_palette.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_palette_after_rgb.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_palette_with_background.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_palette_with_transparency.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/no_rows_per_strip.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/non_zero_bb.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/non_zero_bb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/non_zero_bb_scale2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/not_enough_data.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/odd_stride.pcx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/old-style-jpeg-compression-no-samplesperpixel.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/old-style-jpeg-compression.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/old-style-jpeg-compression.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/oom-225817ca0f8c663be7ab4b9e717b02c661e66834.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/oom-8ed3316a4109213ca96fb8a256a0bfefdece1461.icns] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/orientation_rectangle.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ossfuzz-4836216264589312.pcx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/ossfuzz-5730089102868480.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/p_16.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/p_16.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/p_8.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/p_trns_single.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/padded_idat.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pal8_offset.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/palette.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/palette_negative.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/palette_not_needed_for_second_frame.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/palette_sepia.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/palette_wedge.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pcx_overrun.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pcx_overrun2.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/photoshop-200dpi-broken.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/photoshop-200dpi.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil123p.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil123rgba.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil123rgba.qoi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil136.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil136.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil168.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil168.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil184.pcx] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil_sample_cmyk.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil_sample_cmyk.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pil_sample_rgb.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pillow.icns] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pillow.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pillow2.icns] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pillow3.icns] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/png_decompression_dos.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pngtest_bad.png.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/pport_g4.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/python.ico] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/radial_gradient.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/radial_gradients.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/raw_negative_stride.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rdf.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rectangle_surrounding_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/reqd_showpage.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/reqd_showpage.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/reqd_showpage_transparency.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb32bf-abgr.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb32bf-rgba.bmp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb32rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb32rle_bottom_right.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb32rle_top_right.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb_trns.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb_trns_ycbc.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgb_trns_ycbc.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rgba.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rotate_45_no_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/rotate_45_with_fill.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/second_frame_comment.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/seek_too_large.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sgi_crash.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sgi_overrun.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sgi_overrun_expandrow.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sgi_overrun_expandrow2.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sgi_overrun_expandrowF04.bin] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/standard_embedded.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sugarshack.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sugarshack_bad_mpo_header.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sugarshack_frame_size.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sugarshack_ifd_offset.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sugarshack_no_data.mpo] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sunraster.im1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/sunraster.im1] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tRNS_null_1x1.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test-card-lossless.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test-card-lossy-tiled.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test-card.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test-ole-file.doc] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test.colors.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test.gpl] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_Nastalifont_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_lm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_lm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_lm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_ma_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_md_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_mm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_mm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_mm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_rm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_rm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_multiline_rm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_ls.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_ma.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_mb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_md.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_mm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_ms.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_mt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_quick_rs.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_ttb_f_lt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_ttb_f_mm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_ttb_f_rb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_anchor_ttb_f_sm.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_arabictext_features.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below_lb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below_ld.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below_ls.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below_ttb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_below_ttb_lb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_la.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_ls.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_lt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_ttb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_caron_ttb_lt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ma.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ra.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ttb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ttb_mt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ttb_rt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_double_breve_below_ttb_st.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_lm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_lm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_lm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_mm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_mm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_mm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_rm_center.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_rm_left.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_multiline_rm_right.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_la.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_ra.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_ttb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_ttb_mt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_ttb_rt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_combine_overline_ttb_st.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_complex_unicode_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_complex_unicode_text2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_direction_ltr.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_direction_rtl.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_direction_ttb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_direction_ttb_stroke.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_draw_pbm_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_draw_pbm_ter_en_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_draw_pbm_ter_pl_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_extents.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_kerning_features.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_language.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_ligature_features.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_woff2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_x_max_and_y_offset.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/test_y_offset.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/text_float_coord.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/text_float_coord_1_alt.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/text_mono.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/1x1_l.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/1x1_l_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/1x1_l_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/1x1_l_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/1x1_l_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_l.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_l_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_l_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_l_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_l_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_la.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_la_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_la_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_la_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_la_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_p.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_p_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_p_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_p_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_p_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgb_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgb_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgb_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgb_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgba.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgba_bl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgba_bl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgba_tl_raw.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/200x32_rgba_tl_rle.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga/common/readme.txt] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tga_id_field.tga] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_16bit_RGB.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_16bit_RGB_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_16bit_RGBa.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_16bit_RGBa_target.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_adobe_deflate.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_adobe_deflate.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper2.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper2I.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper2IR.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper2R.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper4.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper4I.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper4IR.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_gray_2_4_bpp/hopper4R.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_overflow_rows_per_strip.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_cmyk_16l_jpeg.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_cmyk_jpeg.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_planar_16bit_RGB.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_planar_16bit_RGBa.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_planar_lzw.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_planar_raw.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_planar_raw_with_overviews.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_raw.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_ycbcr_jpeg_1x1_sampling.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_strip_ycbcr_jpeg_2x2_sampling.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_cmyk_jpeg.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_planar_16bit_RGB.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_planar_16bit_RGBa.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_planar_lzw.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_planar_raw.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_raw.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_ycbcr_jpeg_1x1_sampling.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_tiled_ycbcr_jpeg_2x2_sampling.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_wrong_bits_per_sample.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_wrong_bits_per_sample_2.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiff_wrong_bits_per_sample_3.tiff] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-060745d3f534ad6e4128c51d336ea5489182c69d.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-1ee28a249896e05b83840ae8140622de8e648ba9.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-31c8f86233ea728339c6e586be7af661a09b5b98.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-598843abc37fc080ec36a2699ebbd44f795d3a6f.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-60d8b7c8469d59fc9ffff6b3a3dc0faeae6ea8ee.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-6646305047838720] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-8073b430977660cdd48d96f6406ddfd4114e69c7.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-9139147ce93e20eb14088fe238e541443ffd64b3.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-bba4f2e026b5786529370e5dfe9a11b1bf991f07.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-bff0a9dc7243a8e6ede2408d2ffa6a9964698b87.fli] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-c8efc3fded6426986ba867a399791bae544f59bc.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-d675703545fee17acab56e5fec644c19979175de.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-d6ec061c4afdef39d3edf6da8927240bb07fe9b7.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-dedc7a4ebd856d79b4359bbcc79e8ef231ce38f6.psd] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/timeout-ef9112a065e7183fa7faa2e18929b03e44ee16bf.blp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tiny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/total-pages-zero.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent.webp] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent_background_text.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent_background_text_L.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/transparent_dispose.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/truncated_app14.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/truncated_end_chunk.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/truncated_exif_dpi.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/truncated_image.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/truncated_jpeg.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tv.rgb] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/tv16.sgi] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uint16_1_4660.tif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unbound_variable.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_l.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_l.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_la.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_la.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_rgb.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/uncompressed_rgb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unicode_extended.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unimplemented_dxgi_format.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unimplemented_pfflags.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unknown_compression_method.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/unsupported_bitcount.dds] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe_axes.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe_name.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe_older_harfbuzz.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe_older_harfbuzz_axes.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_adobe_older_harfbuzz_name.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_tiny.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_tiny_axes.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/variation_tiny_name.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/xmp_no_prefix.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/xmp_padded.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/xmp_tags_orientation.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/xmp_tags_orientation_exiftool.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/xmp_test.jpg] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb_emptyline.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb_eof_before_boundingbox.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb_scale2.png] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_bb_trailer.eps] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_dpi.jp2] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_height.j2k] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[Tests/images/zero_width.gif] PASSED
Tests/oss-fuzz/test_fuzzers.py::test_fuzz_images[] PASSED
Tests/test_000_sanity.py::test_sanity PASSED
Tests/test_binary.py::test_big_endian PASSED
Tests/test_binary.py::test_little_endian PASSED
Tests/test_binary.py::test_standard PASSED
Tests/test_bmp_reference.py::test_bad PASSED
Tests/test_bmp_reference.py::test_good PASSED
Tests/test_bmp_reference.py::test_questionable PASSED
Tests/test_box_blur.py::test_color_modes PASSED
Tests/test_box_blur.py::test_extreme_large_radius PASSED
Tests/test_box_blur.py::test_imageops_box_blur PASSED
Tests/test_box_blur.py::test_radius_0 PASSED
Tests/test_box_blur.py::test_radius_0_02 PASSED
Tests/test_box_blur.py::test_radius_0_05 PASSED
Tests/test_box_blur.py::test_radius_0_1 PASSED
Tests/test_box_blur.py::test_radius_0_5 PASSED
Tests/test_box_blur.py::test_radius_1 PASSED
Tests/test_box_blur.py::test_radius_1_5 PASSED
Tests/test_box_blur.py::test_radius_bigger_then_half PASSED
Tests/test_box_blur.py::test_radius_bigger_then_width PASSED
Tests/test_box_blur.py::test_three_passes PASSED
Tests/test_box_blur.py::test_two_passes PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_channels_order PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_copy_alpha_channel PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_correct_args PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_correct_mode PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_identities PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_identities_4_channels PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_overflow PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_wrong_args PASSED
Tests/test_color_lut.py::TestColorLut3DCoreAPI::test_wrong_mode PASSED
Tests/test_color_lut.py::TestColorLut3DFilter::test_convert_table PASSED
Tests/test_color_lut.py::TestColorLut3DFilter::test_numpy_formats PASSED
Tests/test_color_lut.py::TestColorLut3DFilter::test_numpy_sources PASSED
Tests/test_color_lut.py::TestColorLut3DFilter::test_repr PASSED
Tests/test_color_lut.py::TestColorLut3DFilter::test_wrong_args PASSED
Tests/test_color_lut.py::TestGenerateColorLut3D::test_3_channels PASSED
Tests/test_color_lut.py::TestGenerateColorLut3D::test_4_channels PASSED
Tests/test_color_lut.py::TestGenerateColorLut3D::test_apply PASSED
Tests/test_color_lut.py::TestGenerateColorLut3D::test_wrong_channels_count PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_3_to_3_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_3_to_4_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_4_to_3_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_4_to_4_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_target_mode PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_with_normals_3_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_with_normals_4_channels PASSED
Tests/test_color_lut.py::TestTransformColorLut3D::test_wrong_args PASSED
Tests/test_core_resources.py::TestCoreMemory::test_clear_cache_stats PASSED
Tests/test_core_resources.py::TestCoreMemory::test_get_alignment PASSED
Tests/test_core_resources.py::TestCoreMemory::test_get_block_size PASSED
Tests/test_core_resources.py::TestCoreMemory::test_get_blocks_max PASSED
Tests/test_core_resources.py::TestCoreMemory::test_large_images PASSED
Tests/test_core_resources.py::TestCoreMemory::test_set_alignment PASSED
Tests/test_core_resources.py::TestCoreMemory::test_set_block_size PASSED
Tests/test_core_resources.py::TestCoreMemory::test_set_block_size_stats PASSED
Tests/test_core_resources.py::TestCoreMemory::test_set_blocks_max PASSED
Tests/test_core_resources.py::TestCoreMemory::test_set_blocks_max_stats PASSED
Tests/test_core_resources.py::TestEnvVars::test_units PASSED
Tests/test_core_resources.py::TestEnvVars::test_warnings[var0] PASSED
Tests/test_core_resources.py::TestEnvVars::test_warnings[var1] PASSED
Tests/test_core_resources.py::TestEnvVars::test_warnings[var2] PASSED
Tests/test_core_resources.py::test_get_stats PASSED
Tests/test_core_resources.py::test_reset_stats PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception_bmp PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception_gif PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception_gif_extents PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception_gif_zero_width PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_exception_ico PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_no_warning_no_limit PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_no_warning_small_file PASSED
Tests/test_decompression_bomb.py::TestDecompressionBomb::test_warning PASSED
Tests/test_decompression_bomb.py::TestDecompressionCrop::test_crop_decompression_checks PASSED
Tests/test_decompression_bomb.py::TestDecompressionCrop::test_enlarge_crop PASSED
Tests/test_deprecate.py::test_action[Upgrade to new thing.] PASSED
Tests/test_deprecate.py::test_action[Upgrade to new thing] PASSED
Tests/test_deprecate.py::test_no_replacement_or_action PASSED
Tests/test_deprecate.py::test_old_version[Old thing-False-Old thing is deprecated and should be removed\\.] PASSED
Tests/test_deprecate.py::test_old_version[Old things-True-Old things are deprecated and should be removed\\.] PASSED
Tests/test_deprecate.py::test_plural PASSED
Tests/test_deprecate.py::test_replacement_and_action PASSED
Tests/test_deprecate.py::test_unknown_version PASSED
Tests/test_deprecate.py::test_version[11-Old thing is deprecated and will be removed in Pillow 11 \\(2024-10-15\\)\\. Use new thing instead\\.] PASSED
Tests/test_deprecate.py::test_version[None-Old thing is deprecated and will be removed in a future version\\. Use new thing instead\\.] PASSED
Tests/test_features.py::test_check PASSED
Tests/test_features.py::test_check_codecs[jpg] PASSED
Tests/test_features.py::test_check_codecs[jpg_2000] PASSED
Tests/test_features.py::test_check_codecs[libtiff] PASSED
Tests/test_features.py::test_check_codecs[zlib] PASSED
Tests/test_features.py::test_check_modules[freetype2] PASSED
Tests/test_features.py::test_check_modules[littlecms2] PASSED
Tests/test_features.py::test_check_modules[pil] PASSED
Tests/test_features.py::test_check_modules[tkinter] PASSED
Tests/test_features.py::test_check_modules[webp] PASSED
Tests/test_features.py::test_check_warns_on_nonexistent PASSED
Tests/test_features.py::test_libimagequant_version SKIPPED (libimage...)
Tests/test_features.py::test_libjpeg_turbo_version PASSED
Tests/test_features.py::test_pilinfo[False] PASSED
Tests/test_features.py::test_pilinfo[True] PASSED
Tests/test_features.py::test_supported_modules PASSED
Tests/test_features.py::test_unsupported_codec PASSED
Tests/test_features.py::test_unsupported_module PASSED
Tests/test_features.py::test_version PASSED
Tests/test_features.py::test_webp_anim PASSED
Tests/test_features.py::test_webp_mux PASSED
Tests/test_features.py::test_webp_transparency PASSED
Tests/test_file_apng.py::test_apng_basic PASSED
Tests/test_file_apng.py::test_apng_blend PASSED
Tests/test_file_apng.py::test_apng_blend_transparency PASSED
Tests/test_file_apng.py::test_apng_chunk_errors PASSED
Tests/test_file_apng.py::test_apng_chunk_order PASSED
Tests/test_file_apng.py::test_apng_delay PASSED
Tests/test_file_apng.py::test_apng_dispose PASSED
Tests/test_file_apng.py::test_apng_dispose_op_background_p_mode PASSED
Tests/test_file_apng.py::test_apng_dispose_op_previous_frame PASSED
Tests/test_file_apng.py::test_apng_dispose_region PASSED
Tests/test_file_apng.py::test_apng_fdat[Tests/images/apng/split_fdat.png] PASSED
Tests/test_file_apng.py::test_apng_fdat[Tests/images/apng/split_fdat_zero_chunk.png] PASSED
Tests/test_file_apng.py::test_apng_mode PASSED
Tests/test_file_apng.py::test_apng_num_plays PASSED
Tests/test_file_apng.py::test_apng_repeated_seeks_give_correct_info PASSED
Tests/test_file_apng.py::test_apng_save PASSED
Tests/test_file_apng.py::test_apng_save_alpha PASSED
Tests/test_file_apng.py::test_apng_save_blend PASSED
Tests/test_file_apng.py::test_apng_save_disposal PASSED
Tests/test_file_apng.py::test_apng_save_disposal_previous PASSED
Tests/test_file_apng.py::test_apng_save_duration_loop PASSED
Tests/test_file_apng.py::test_apng_save_size PASSED
Tests/test_file_apng.py::test_apng_save_split_fdat PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_fdat_fctl.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_gap.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_reorder.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_reorder_chunk.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_repeat.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_repeat_chunk.png] PASSED
Tests/test_file_apng.py::test_apng_sequence_errors[sequence_start.png] PASSED
Tests/test_file_apng.py::test_apng_syntax_errors PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-False-P] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-False-RGBA] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-False-RGB] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-True-P] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-True-RGBA] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[False-True-RGB] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-False-P] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-False-RGBA] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-False-RGB] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-True-P] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-True-RGBA] PASSED
Tests/test_file_apng.py::test_different_modes_in_later_frames[True-True-RGB] PASSED
Tests/test_file_apng.py::test_seek_after_close PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-060745d3f534ad6e4128c51d336ea5489182c69d.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-31c8f86233ea728339c6e586be7af661a09b5b98.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-60d8b7c8469d59fc9ffff6b3a3dc0faeae6ea8ee.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-8073b430977660cdd48d96f6406ddfd4114e69c7.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-bba4f2e026b5786529370e5dfe9a11b1bf991f07.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-d6ec061c4afdef39d3edf6da8927240bb07fe9b7.blp] PASSED
Tests/test_file_blp.py::test_crashes[Tests/images/timeout-ef9112a065e7183fa7faa2e18929b03e44ee16bf.blp] PASSED
Tests/test_file_blp.py::test_load_blp1 PASSED
Tests/test_file_blp.py::test_load_blp2_dxt1 PASSED
Tests/test_file_blp.py::test_load_blp2_dxt1a PASSED
Tests/test_file_blp.py::test_load_blp2_raw PASSED
Tests/test_file_blp.py::test_save PASSED
Tests/test_file_bmp.py::test_dpi PASSED
Tests/test_file_bmp.py::test_fallback_if_mmap_errors PASSED
Tests/test_file_bmp.py::test_invalid_file PASSED
Tests/test_file_bmp.py::test_load_dib PASSED
Tests/test_file_bmp.py::test_offset PASSED
Tests/test_file_bmp.py::test_rgba_bitfields PASSED
Tests/test_file_bmp.py::test_rle4 PASSED
Tests/test_file_bmp.py::test_rle8 PASSED
Tests/test_file_bmp.py::test_rle8_eof[Tests/images/bmp/g/pal8rle.bmp-1064] PASSED
Tests/test_file_bmp.py::test_rle8_eof[Tests/images/bmp/q/pal8rletrns.bmp-3670] PASSED
Tests/test_file_bmp.py::test_rle8_eof[Tests/images/hopper_rle8.bmp-1078] PASSED
Tests/test_file_bmp.py::test_sanity PASSED
Tests/test_file_bmp.py::test_save_bmp_with_dpi PASSED
Tests/test_file_bmp.py::test_save_dib PASSED
Tests/test_file_bmp.py::test_save_float_dpi PASSED
Tests/test_file_bmp.py::test_save_to_bytes PASSED
Tests/test_file_bmp.py::test_save_too_large PASSED
Tests/test_file_bmp.py::test_small_palette PASSED
Tests/test_file_bufrstub.py::test_handler PASSED
Tests/test_file_bufrstub.py::test_invalid_file PASSED
Tests/test_file_bufrstub.py::test_load PASSED
Tests/test_file_bufrstub.py::test_open PASSED
Tests/test_file_bufrstub.py::test_save PASSED
Tests/test_file_container.py::test_isatty PASSED
Tests/test_file_container.py::test_read_eof[False] PASSED
Tests/test_file_container.py::test_read_eof[True] PASSED
Tests/test_file_container.py::test_read_n0[False] PASSED
Tests/test_file_container.py::test_read_n0[True] PASSED
Tests/test_file_container.py::test_read_n[False] PASSED
Tests/test_file_container.py::test_read_n[True] PASSED
Tests/test_file_container.py::test_readline[False] PASSED
Tests/test_file_container.py::test_readline[True] PASSED
Tests/test_file_container.py::test_readlines[False] PASSED
Tests/test_file_container.py::test_readlines[True] PASSED
Tests/test_file_container.py::test_sanity PASSED
Tests/test_file_container.py::test_seek_mode[0-33] PASSED
Tests/test_file_container.py::test_seek_mode[1-66] PASSED
Tests/test_file_container.py::test_seek_mode[2-100] PASSED
Tests/test_file_cur.py::test_invalid_file PASSED
Tests/test_file_cur.py::test_sanity PASSED
Tests/test_file_dcx.py::test_closed_file PASSED
Tests/test_file_dcx.py::test_context_manager PASSED
Tests/test_file_dcx.py::test_eoferror PASSED
Tests/test_file_dcx.py::test_invalid_file PASSED
Tests/test_file_dcx.py::test_n_frames PASSED
Tests/test_file_dcx.py::test_sanity PASSED
Tests/test_file_dcx.py::test_seek_too_far PASSED
Tests/test_file_dcx.py::test_tell PASSED
Tests/test_file_dcx.py::test_unclosed_file PASSED
Tests/test_file_dds.py::test__accept_false PASSED
Tests/test_file_dds.py::test__accept_true PASSED
Tests/test_file_dds.py::test_dx10_bc4[Tests/images/bc4_typeless.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc4[Tests/images/bc4_unorm.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc5[Tests/images/bc5_snorm.dds-Tests/images/bc5s.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc5[Tests/images/bc5_typeless.dds-Tests/images/bc5_unorm.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc5[Tests/images/bc5_unorm.dds-Tests/images/bc5_unorm.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc5[Tests/images/bc5s.dds-Tests/images/bc5s.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc6h[Tests/images/bc6h.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc6h[Tests/images/bc6h_sf.dds] PASSED
Tests/test_file_dds.py::test_dx10_bc7 PASSED
Tests/test_file_dds.py::test_dx10_bc7_unorm_srgb PASSED
Tests/test_file_dds.py::test_dx10_r8g8b8a8 PASSED
Tests/test_file_dds.py::test_dx10_r8g8b8a8_unorm_srgb PASSED
Tests/test_file_dds.py::test_dxt5_colorblock_alpha_issue_4142 PASSED
Tests/test_file_dds.py::test_invalid_file PASSED
Tests/test_file_dds.py::test_not_implemented[Tests/images/unimplemented_dxgi_format.dds] PASSED
Tests/test_file_dds.py::test_not_implemented[Tests/images/unimplemented_pfflags.dds] PASSED
Tests/test_file_dds.py::test_palette PASSED
Tests/test_file_dds.py::test_sanity_ati1_bc4u[Tests/images/ati1.dds] PASSED
Tests/test_file_dds.py::test_sanity_ati1_bc4u[Tests/images/bc4u.dds] PASSED
Tests/test_file_dds.py::test_sanity_ati2_bc5u[Tests/images/ati2.dds] PASSED
Tests/test_file_dds.py::test_sanity_ati2_bc5u[Tests/images/bc5u.dds] PASSED
Tests/test_file_dds.py::test_sanity_dxt1_bc1[Tests/images/bc1.dds] PASSED
Tests/test_file_dds.py::test_sanity_dxt1_bc1[Tests/images/bc1_typeless.dds] PASSED
Tests/test_file_dds.py::test_sanity_dxt1_bc1[Tests/images/dxt1-rgb-4bbp-noalpha_MipMaps-1.dds] PASSED
Tests/test_file_dds.py::test_sanity_dxt3 PASSED
Tests/test_file_dds.py::test_sanity_dxt5 PASSED
Tests/test_file_dds.py::test_save[L-Tests/images/linear_gradient.png] PASSED
Tests/test_file_dds.py::test_save[LA-Tests/images/uncompressed_la.png] PASSED
Tests/test_file_dds.py::test_save[RGB-Tests/images/hopper.png] PASSED
Tests/test_file_dds.py::test_save[RGBA-Tests/images/pil123rgba.png] PASSED
Tests/test_file_dds.py::test_save_unsupported_mode PASSED
Tests/test_file_dds.py::test_short_file PASSED
Tests/test_file_dds.py::test_short_header PASSED
Tests/test_file_dds.py::test_uncompressed[L-size0-Tests/images/uncompressed_l.dds] PASSED
Tests/test_file_dds.py::test_uncompressed[LA-size1-Tests/images/uncompressed_la.dds] PASSED
Tests/test_file_dds.py::test_uncompressed[RGB-size2-Tests/images/hopper.dds] PASSED
Tests/test_file_dds.py::test_uncompressed[RGB-size3-Tests/images/bgr15.dds] PASSED
Tests/test_file_dds.py::test_uncompressed[RGBA-size4-Tests/images/uncompressed_rgb.dds] PASSED
Tests/test_file_dds.py::test_unsupported_bitcount PASSED
Tests/test_file_eps.py::test_1_mode PASSED
Tests/test_file_eps.py::test_ascii_comment_too_long[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_ascii_comment_too_long[] PASSED
Tests/test_file_eps.py::test_binary PASSED
Tests/test_file_eps.py::test_binary_header_only PASSED
Tests/test_file_eps.py::test_bounding_box_in_trailer PASSED
Tests/test_file_eps.py::test_bytesio_object PASSED
Tests/test_file_eps.py::test_cmyk PASSED
Tests/test_file_eps.py::test_emptyline PASSED
Tests/test_file_eps.py::test_eof_before_bounding_box PASSED
Tests/test_file_eps.py::test_file_object PASSED
Tests/test_file_eps.py::test_image_mode_not_supported PASSED
Tests/test_file_eps.py::test_invalid_boundingbox_comment[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_invalid_boundingbox_comment[] PASSED
Tests/test_file_eps.py::test_invalid_boundingbox_comment_valid_imagedata_comment[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_invalid_boundingbox_comment_valid_imagedata_comment[] PASSED
Tests/test_file_eps.py::test_invalid_data_after_eof PASSED
Tests/test_file_eps.py::test_invalid_file PASSED
Tests/test_file_eps.py::test_load PASSED
Tests/test_file_eps.py::test_load_long_binary_data[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_load_long_binary_data[] PASSED
Tests/test_file_eps.py::test_long_binary_data[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_long_binary_data[] PASSED
Tests/test_file_eps.py::test_missing_boundingbox_comment[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_missing_boundingbox_comment[] PASSED
Tests/test_file_eps.py::test_missing_version_comment[\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_missing_version_comment[] PASSED
Tests/test_file_eps.py::test_open_eps[Tests/images/illu10_no_preview.eps] PASSED
Tests/test_file_eps.py::test_open_eps[Tests/images/illu10_preview.eps] PASSED
Tests/test_file_eps.py::test_open_eps[Tests/images/illuCS6_no_preview.eps] PASSED
Tests/test_file_eps.py::test_open_eps[Tests/images/illuCS6_preview.eps] PASSED
Tests/test_file_eps.py::test_psfile_deprecation PASSED
Tests/test_file_eps.py::test_read_binary_preview PASSED
Tests/test_file_eps.py::test_readline[\n-\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_readline[\n-] PASSED
Tests/test_file_eps.py::test_readline[\n\r-\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_readline[\n\r-] PASSED
Tests/test_file_eps.py::test_readline[\r-\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_readline[\r-] PASSED
Tests/test_file_eps.py::test_readline[\r\n-\xc5\xd0\xd3\xc6\x0c\x00\x00\x00\x00\x00\x00\x00] PASSED
Tests/test_file_eps.py::test_readline[\r\n-] PASSED
Tests/test_file_eps.py::test_readline_psfile PASSED
Tests/test_file_eps.py::test_render_scale1 PASSED
Tests/test_file_eps.py::test_render_scale2 PASSED
Tests/test_file_eps.py::test_resize[Tests/images/illu10_preview.eps] PASSED
Tests/test_file_eps.py::test_resize[Tests/images/non_zero_bb.eps] PASSED
Tests/test_file_eps.py::test_resize[Tests/images/zero_bb.eps] PASSED
Tests/test_file_eps.py::test_sanity[1-Tests/images/non_zero_bb.eps-size1] PASSED
Tests/test_file_eps.py::test_sanity[1-Tests/images/zero_bb.eps-size0] PASSED
Tests/test_file_eps.py::test_sanity[2-Tests/images/non_zero_bb.eps-size1] PASSED
Tests/test_file_eps.py::test_sanity[2-Tests/images/zero_bb.eps-size0] PASSED
Tests/test_file_eps.py::test_showpage PASSED
Tests/test_file_eps.py::test_thumbnail[Tests/images/non_zero_bb.eps] PASSED
Tests/test_file_eps.py::test_thumbnail[Tests/images/zero_bb.eps] PASSED
Tests/test_file_eps.py::test_timeout[Tests/images/timeout-d675703545fee17acab56e5fec644c19979175de.eps] PASSED
Tests/test_file_eps.py::test_transparency PASSED
Tests/test_file_fits.py::test_comment PASSED
Tests/test_file_fits.py::test_gzip1 PASSED
Tests/test_file_fits.py::test_invalid_file PASSED
Tests/test_file_fits.py::test_naxis_zero PASSED
Tests/test_file_fits.py::test_open PASSED
Tests/test_file_fits.py::test_truncated_fits PASSED
Tests/test_file_fli.py::test_closed_file PASSED
Tests/test_file_fli.py::test_context_manager PASSED
Tests/test_file_fli.py::test_crash[Tests/images/crash-5762152299364352.fli] PASSED
Tests/test_file_fli.py::test_eoferror PASSED
Tests/test_file_fli.py::test_invalid_file PASSED
Tests/test_file_fli.py::test_n_frames PASSED
Tests/test_file_fli.py::test_palette_chunk_second PASSED
Tests/test_file_fli.py::test_prefix_chunk PASSED
Tests/test_file_fli.py::test_sanity PASSED
Tests/test_file_fli.py::test_seek PASSED
Tests/test_file_fli.py::test_seek_after_close PASSED
Tests/test_file_fli.py::test_seek_tell PASSED
Tests/test_file_fli.py::test_tell PASSED
Tests/test_file_fli.py::test_timeouts[Tests/images/timeout-9139147ce93e20eb14088fe238e541443ffd64b3.fli] PASSED
Tests/test_file_fli.py::test_timeouts[Tests/images/timeout-bff0a9dc7243a8e6ede2408d2ffa6a9964698b87.fli] PASSED
Tests/test_file_fli.py::test_unclosed_file PASSED
Tests/test_file_fpx.py::test_close PASSED
Tests/test_file_fpx.py::test_fpx_invalid_number_of_bands PASSED
Tests/test_file_fpx.py::test_invalid_file PASSED
Tests/test_file_fpx.py::test_sanity PASSED
Tests/test_file_ftex.py::test_invalid_file PASSED
Tests/test_file_ftex.py::test_load_dxt1 PASSED
Tests/test_file_ftex.py::test_load_raw PASSED
Tests/test_file_gbr.py::test_gbr_file PASSED
Tests/test_file_gbr.py::test_invalid_file PASSED
Tests/test_file_gbr.py::test_load PASSED
Tests/test_file_gbr.py::test_multiple_load_operations PASSED
Tests/test_file_gd.py::test_bad_mode PASSED
Tests/test_file_gd.py::test_invalid_file PASSED
Tests/test_file_gd.py::test_sanity PASSED
Tests/test_file_gif.py::test_append_different_size_image PASSED
Tests/test_file_gif.py::test_append_images PASSED
Tests/test_file_gif.py::test_background PASSED
Tests/test_file_gif.py::test_background_outside_palettte PASSED
Tests/test_file_gif.py::test_bbox PASSED
Tests/test_file_gif.py::test_bbox_alpha PASSED
Tests/test_file_gif.py::test_closed_file PASSED
Tests/test_file_gif.py::test_comment PASSED
Tests/test_file_gif.py::test_comment_over_255 PASSED
Tests/test_file_gif.py::test_context_manager PASSED
Tests/test_file_gif.py::test_dispose2_background PASSED
Tests/test_file_gif.py::test_dispose2_background_frame PASSED
Tests/test_file_gif.py::test_dispose2_diff PASSED
Tests/test_file_gif.py::test_dispose2_palette PASSED
Tests/test_file_gif.py::test_dispose2_previous_frame PASSED
Tests/test_file_gif.py::test_dispose_background PASSED
Tests/test_file_gif.py::test_dispose_background_transparency PASSED
Tests/test_file_gif.py::test_dispose_none PASSED
Tests/test_file_gif.py::test_dispose_none_load_end PASSED
Tests/test_file_gif.py::test_dispose_previous PASSED
Tests/test_file_gif.py::test_dispose_previous_first_frame PASSED
Tests/test_file_gif.py::test_duration PASSED
Tests/test_file_gif.py::test_empty_string_comment PASSED
Tests/test_file_gif.py::test_eoferror PASSED
Tests/test_file_gif.py::test_extents PASSED
Tests/test_file_gif.py::test_first_frame_transparency PASSED
Tests/test_file_gif.py::test_full_palette_second_frame PASSED
Tests/test_file_gif.py::test_getdata PASSED
Tests/test_file_gif.py::test_headers_saving_for_animated_gifs PASSED
Tests/test_file_gif.py::test_identical_frames PASSED
Tests/test_file_gif.py::test_identical_frames_to_single_frame[1500] PASSED
Tests/test_file_gif.py::test_identical_frames_to_single_frame[duration0] PASSED
Tests/test_file_gif.py::test_identical_frames_to_single_frame[duration1] PASSED
Tests/test_file_gif.py::test_identical_frames_to_single_frame[duration2] PASSED
Tests/test_file_gif.py::test_invalid_file PASSED
Tests/test_file_gif.py::test_l_mode_after_rgb PASSED
Tests/test_file_gif.py::test_l_mode_transparency PASSED
Tests/test_file_gif.py::test_loading_multiple_palettes[Tests/images/dispose_bgnd.gif-RGB] PASSED
Tests/test_file_gif.py::test_loading_multiple_palettes[Tests/images/dispose_bgnd_rgba.gif-RGBA] PASSED
Tests/test_file_gif.py::test_loop_none PASSED
Tests/test_file_gif.py::test_lzw_bits PASSED
Tests/test_file_gif.py::test_missing_background PASSED
Tests/test_file_gif.py::test_multiple_duration PASSED
Tests/test_file_gif.py::test_n_frames[Tests/images/comment_after_last_frame.gif-2] PASSED
Tests/test_file_gif.py::test_n_frames[Tests/images/hopper.gif-1] PASSED
Tests/test_file_gif.py::test_n_frames[Tests/images/iss634.gif-42] PASSED
Tests/test_file_gif.py::test_no_change PASSED
Tests/test_file_gif.py::test_no_transparency_in_second_frame PASSED
Tests/test_file_gif.py::test_number_of_loops PASSED
Tests/test_file_gif.py::test_optimize PASSED
Tests/test_file_gif.py::test_optimize_correctness[128-511-128] PASSED
Tests/test_file_gif.py::test_optimize_correctness[128-513-256] PASSED
Tests/test_file_gif.py::test_optimize_correctness[129-511-129] PASSED
Tests/test_file_gif.py::test_optimize_correctness[255-511-255] PASSED
Tests/test_file_gif.py::test_optimize_correctness[256-511-256] PASSED
Tests/test_file_gif.py::test_optimize_correctness[4-511-4] PASSED
Tests/test_file_gif.py::test_optimize_correctness[4-513-256] PASSED
Tests/test_file_gif.py::test_optimize_correctness[64-511-64] PASSED
Tests/test_file_gif.py::test_optimize_correctness[64-513-256] PASSED
Tests/test_file_gif.py::test_optimize_full_l PASSED
Tests/test_file_gif.py::test_optimize_if_palette_can_be_reduced_by_half PASSED
Tests/test_file_gif.py::test_palette_434 PASSED
Tests/test_file_gif.py::test_palette_handling PASSED
Tests/test_file_gif.py::test_palette_not_needed_for_second_frame PASSED
Tests/test_file_gif.py::test_palette_save_ImagePalette PASSED
Tests/test_file_gif.py::test_palette_save_L PASSED
Tests/test_file_gif.py::test_palette_save_P PASSED
Tests/test_file_gif.py::test_palette_save_all_P PASSED
Tests/test_file_gif.py::test_palette_save_duplicate_entries PASSED
Tests/test_file_gif.py::test_previous_frame_loaded PASSED
Tests/test_file_gif.py::test_read_multiple_comment_blocks PASSED
Tests/test_file_gif.py::test_remapped_transparency PASSED
Tests/test_file_gif.py::test_removed_transparency PASSED
Tests/test_file_gif.py::test_retain_comment_in_subsequent_frames PASSED
Tests/test_file_gif.py::test_rgb_transparency PASSED
Tests/test_file_gif.py::test_rgba_transparency PASSED
Tests/test_file_gif.py::test_roundtrip PASSED
Tests/test_file_gif.py::test_roundtrip2 PASSED
Tests/test_file_gif.py::test_roundtrip_info_duration PASSED
Tests/test_file_gif.py::test_roundtrip_info_duration_combined PASSED
Tests/test_file_gif.py::test_roundtrip_save_all PASSED
Tests/test_file_gif.py::test_roundtrip_save_all_1 PASSED
Tests/test_file_gif.py::test_sanity PASSED
Tests/test_file_gif.py::test_save_I PASSED
Tests/test_file_gif.py::test_save_dispose PASSED
Tests/test_file_gif.py::test_save_netpbm_bmp_mode PASSED
Tests/test_file_gif.py::test_save_netpbm_l_mode PASSED
Tests/test_file_gif.py::test_saving_rgba PASSED
Tests/test_file_gif.py::test_seek PASSED
Tests/test_file_gif.py::test_seek_after_close PASSED
Tests/test_file_gif.py::test_seek_info PASSED
Tests/test_file_gif.py::test_seek_rewind PASSED
Tests/test_file_gif.py::test_strategy PASSED
Tests/test_file_gif.py::test_transparency_in_second_frame PASSED
Tests/test_file_gif.py::test_transparent_dispose[LoadingStrategy.RGB_AFTER_DIFFERENT_PALETTE_ONLY-expected_colors1] PASSED
Tests/test_file_gif.py::test_transparent_dispose[LoadingStrategy.RGB_AFTER_FIRST-expected_colors0] PASSED
Tests/test_file_gif.py::test_transparent_optimize PASSED
Tests/test_file_gif.py::test_unclosed_file PASSED
Tests/test_file_gif.py::test_version PASSED
Tests/test_file_gif.py::test_webp_background PASSED
Tests/test_file_gif.py::test_zero_comment_subblocks PASSED
Tests/test_file_gimpgradient.py::test_curved PASSED
Tests/test_file_gimpgradient.py::test_linear_pos_gt_middle PASSED
Tests/test_file_gimpgradient.py::test_linear_pos_gt_small_middle PASSED
Tests/test_file_gimpgradient.py::test_linear_pos_le_middle PASSED
Tests/test_file_gimpgradient.py::test_linear_pos_le_small_middle PASSED
Tests/test_file_gimpgradient.py::test_load_1_3_via_imagepalette PASSED
Tests/test_file_gimpgradient.py::test_load_via_imagepalette PASSED
Tests/test_file_gimpgradient.py::test_sine PASSED
Tests/test_file_gimpgradient.py::test_sphere_decreasing PASSED
Tests/test_file_gimpgradient.py::test_sphere_increasing PASSED
Tests/test_file_gimppalette.py::test_get_palette PASSED
Tests/test_file_gimppalette.py::test_sanity PASSED
Tests/test_file_gribstub.py::test_handler PASSED
Tests/test_file_gribstub.py::test_invalid_file PASSED
Tests/test_file_gribstub.py::test_load PASSED
Tests/test_file_gribstub.py::test_open PASSED
Tests/test_file_gribstub.py::test_save PASSED
Tests/test_file_hdf5stub.py::test_handler PASSED
Tests/test_file_hdf5stub.py::test_invalid_file PASSED
Tests/test_file_hdf5stub.py::test_load PASSED
Tests/test_file_hdf5stub.py::test_open PASSED
Tests/test_file_hdf5stub.py::test_save PASSED
Tests/test_file_icns.py::test_getimage PASSED
Tests/test_file_icns.py::test_icns_decompression_bomb PASSED
Tests/test_file_icns.py::test_jp2_icon PASSED
Tests/test_file_icns.py::test_load PASSED
Tests/test_file_icns.py::test_not_an_icns_file PASSED
Tests/test_file_icns.py::test_older_icon PASSED
Tests/test_file_icns.py::test_sanity PASSED
Tests/test_file_icns.py::test_save PASSED
Tests/test_file_icns.py::test_save_append_images PASSED
Tests/test_file_icns.py::test_save_fp PASSED
Tests/test_file_icns.py::test_sizes PASSED
Tests/test_file_ico.py::test_black_and_white PASSED
Tests/test_file_ico.py::test_different_bit_depths PASSED
Tests/test_file_ico.py::test_draw_reloaded PASSED
Tests/test_file_ico.py::test_getpixel PASSED
Tests/test_file_ico.py::test_incorrect_size PASSED
Tests/test_file_ico.py::test_invalid_file PASSED
Tests/test_file_ico.py::test_load PASSED
Tests/test_file_ico.py::test_mask PASSED
Tests/test_file_ico.py::test_no_duplicates PASSED
Tests/test_file_ico.py::test_only_save_relevant_sizes PASSED
Tests/test_file_ico.py::test_palette PASSED
Tests/test_file_ico.py::test_sanity PASSED
Tests/test_file_ico.py::test_save_256x256 PASSED
Tests/test_file_ico.py::test_save_append_images PASSED
Tests/test_file_ico.py::test_save_to_bytes PASSED
Tests/test_file_ico.py::test_save_to_bytes_bmp[1] PASSED
Tests/test_file_ico.py::test_save_to_bytes_bmp[L] PASSED
Tests/test_file_ico.py::test_save_to_bytes_bmp[P] PASSED
Tests/test_file_ico.py::test_save_to_bytes_bmp[RGBA] PASSED
Tests/test_file_ico.py::test_save_to_bytes_bmp[RGB] PASSED
Tests/test_file_ico.py::test_unexpected_size PASSED
Tests/test_file_im.py::test_closed_file PASSED
Tests/test_file_im.py::test_context_manager PASSED
Tests/test_file_im.py::test_eoferror PASSED
Tests/test_file_im.py::test_invalid_file PASSED
Tests/test_file_im.py::test_n_frames PASSED
Tests/test_file_im.py::test_name_limit PASSED
Tests/test_file_im.py::test_number PASSED
Tests/test_file_im.py::test_roundtrip[PA] PASSED
Tests/test_file_im.py::test_roundtrip[P] PASSED
Tests/test_file_im.py::test_roundtrip[RGB] PASSED
Tests/test_file_im.py::test_sanity PASSED
Tests/test_file_im.py::test_save_unsupported_mode PASSED
Tests/test_file_im.py::test_small_palette PASSED
Tests/test_file_im.py::test_tell PASSED
Tests/test_file_im.py::test_unclosed_file PASSED
Tests/test_file_imt.py::test_invalid_file[\n-] PASSED
Tests/test_file_imt.py::test_invalid_file[\n] PASSED
Tests/test_file_imt.py::test_invalid_file[width 1\n] PASSED
Tests/test_file_imt.py::test_sanity PASSED
Tests/test_file_iptc.py::test_dump PASSED
Tests/test_file_iptc.py::test_getiptcinfo_fotostation PASSED
Tests/test_file_iptc.py::test_getiptcinfo_jpg_found PASSED
Tests/test_file_iptc.py::test_getiptcinfo_jpg_none PASSED
Tests/test_file_iptc.py::test_getiptcinfo_tiff_none PASSED
Tests/test_file_iptc.py::test_getiptcinfo_zero_padding PASSED
Tests/test_file_iptc.py::test_i PASSED
Tests/test_file_iptc.py::test_open PASSED
Tests/test_file_iptc.py::test_pad_deprecation PASSED
Tests/test_file_jpeg.py::TestFileCloseW32::test_fd_leak SKIPPED (Win...)
Tests/test_file_jpeg.py::TestFileJpeg::test_MAXBLOCK_scaling PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_adobe_transform PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_app PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_bad_mpo_header PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_cmyk PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_comment_write PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi[Tests/images/hopper.jpg] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi[Tests/images/pil_sample_cmyk.jpg] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_exif_string PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_exif_truncated PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_exif_zero_division PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_from_dpcm_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_int_from_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_dpi_tuple_from_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_empty_exif_gps PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_eof PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_equality PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_gps PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_gps_typeerror PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_rollback PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_typeerror PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_exif_x_resolution PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_ff00_jpeg_header PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_get_child_images PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_getxmp PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_getxmp_no_prefix PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_getxmp_padded PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_after_SOF PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[0] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[1] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[262147] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[3] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[4] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[5] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[65519] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[65520] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[65536] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_icc_big[65537] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_ifd_offset_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_invalid_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_invalid_exif_x_resolution PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_jpeg_magic_number PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_junk_jpeg_header PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_large_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_large_icc_meta PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_load_16bit_qtables PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_load_djpeg PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_mp PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_multiple_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_no_dpi_in_exif PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_no_duplicate_0x1001_tag PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_optimize PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_optimize_large_buffer PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_photoshop PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_photoshop_malformed_and_multiple PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_progressive PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_progressive_cmyk_buffer PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_progressive_compat PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_progressive_large_buffer PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_progressive_large_buffer_highest_quality PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_qtables PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_quality PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_quality_keep PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_repr_jpeg PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_repr_jpeg_error_returns_none PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[0-0-0] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[0-1-3] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[0-2-1] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[1-0-15] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[3-0-5] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_restart_markers[8-0-1] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_rgb PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_sanity PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_cjpeg PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[1] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[CMYK] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[L] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[RGBX] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[RGB] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_correct_modes[YCbCr] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_dpi_rounding PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_low_quality_baseline_qtables PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_multiple_16bit_qtables PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_single_16bit_qtable PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_tiff_with_dpi PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_wrong_modes[LA] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_wrong_modes[La] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_wrong_modes[P] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_wrong_modes[RGBA] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_save_wrong_modes[RGBa] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_separate_tables PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_smooth PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_subsampling PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_truncated_jpeg_should_read_all_the_data PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_truncated_jpeg_throws_oserror PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_zero[size0] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_zero[size1] PASSED
Tests/test_file_jpeg.py::TestFileJpeg::test_zero[size2] PASSED
Tests/test_file_jpeg2k.py::test_16bit_j2k_roundtrips PASSED
Tests/test_file_jpeg2k.py::test_16bit_jp2_roundtrips PASSED
Tests/test_file_jpeg2k.py::test_16bit_monochrome_has_correct_mode[.j2k] PASSED
Tests/test_file_jpeg2k.py::test_16bit_monochrome_has_correct_mode[.jp2] PASSED
Tests/test_file_jpeg2k.py::test_16bit_monochrome_j2k_like_tiff PASSED
Tests/test_file_jpeg2k.py::test_16bit_monochrome_jp2_like_tiff PASSED
Tests/test_file_jpeg2k.py::test_9bit PASSED
Tests/test_file_jpeg2k.py::test_bytesio PASSED
Tests/test_file_jpeg2k.py::test_comment PASSED
Tests/test_file_jpeg2k.py::test_crashes[Tests/images/crash-4fb027452e6988530aa5dabee76eecacb3b79f8a.j2k] PASSED
Tests/test_file_jpeg2k.py::test_crashes[Tests/images/crash-7d4c83eb92150fb8f1653a697703ae06ae7c4998.j2k] PASSED
Tests/test_file_jpeg2k.py::test_crashes[Tests/images/crash-ccca68ff40171fdae983d924e127a721cab2bd50.j2k] PASSED
Tests/test_file_jpeg2k.py::test_crashes[Tests/images/crash-d2c93af851d3ab9a19e34503626368b2ecde9c03.j2k] PASSED
Tests/test_file_jpeg2k.py::test_default_num_resolutions[2] PASSED
Tests/test_file_jpeg2k.py::test_default_num_resolutions[3] PASSED
Tests/test_file_jpeg2k.py::test_default_num_resolutions[4] PASSED
Tests/test_file_jpeg2k.py::test_default_num_resolutions[5] PASSED
Tests/test_file_jpeg2k.py::test_header_errors PASSED
Tests/test_file_jpeg2k.py::test_invalid_file PASSED
Tests/test_file_jpeg2k.py::test_irreversible_rt PASSED
Tests/test_file_jpeg2k.py::test_issue_6194 PASSED
Tests/test_file_jpeg2k.py::test_jpf PASSED
Tests/test_file_jpeg2k.py::test_layers PASSED
Tests/test_file_jpeg2k.py::test_layers_type PASSED
Tests/test_file_jpeg2k.py::test_load_dpi PASSED
Tests/test_file_jpeg2k.py::test_lossless PASSED
Tests/test_file_jpeg2k.py::test_lossless_rt PASSED
Tests/test_file_jpeg2k.py::test_lossy_rt PASSED
Tests/test_file_jpeg2k.py::test_lossy_tiled PASSED
Tests/test_file_jpeg2k.py::test_mct PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[None-args2-0-\xffO] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.j2k-args0-0-\xffO] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.j2k-args3-0-\xffO] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.j2k-args5-0-\xffO] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.jp2-args1-4-jP] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.jp2-args4-0-\xffO] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.jp2-args6-4-jP] PASSED
Tests/test_file_jpeg2k.py::test_no_jp2[foo.jp2-args7-4-jP] PASSED
Tests/test_file_jpeg2k.py::test_parser_feed PASSED
Tests/test_file_jpeg2k.py::test_pclr SKIPPED (Extra image files not ...)
Tests/test_file_jpeg2k.py::test_plt_marker PASSED
Tests/test_file_jpeg2k.py::test_prog_qual_rt PASSED
Tests/test_file_jpeg2k.py::test_prog_res_rt PASSED
Tests/test_file_jpeg2k.py::test_reduce PASSED
Tests/test_file_jpeg2k.py::test_restricted_icc_profile PASSED
Tests/test_file_jpeg2k.py::test_rgba[.j2k] PASSED
Tests/test_file_jpeg2k.py::test_rgba[.jp2] PASSED
Tests/test_file_jpeg2k.py::test_sanity PASSED
Tests/test_file_jpeg2k.py::test_save_comment PASSED
Tests/test_file_jpeg2k.py::test_sgnd PASSED
Tests/test_file_jpeg2k.py::test_subsampling_decode[subsampling_1] SKIPPED
Tests/test_file_jpeg2k.py::test_subsampling_decode[subsampling_2] SKIPPED
Tests/test_file_jpeg2k.py::test_subsampling_decode[zoo1] SKIPPED (Ex...)
Tests/test_file_jpeg2k.py::test_subsampling_decode[zoo2] SKIPPED (Ex...)
Tests/test_file_jpeg2k.py::test_tiled_offset_rt PASSED
Tests/test_file_jpeg2k.py::test_tiled_offset_too_small PASSED
Tests/test_file_jpeg2k.py::test_tiled_rt PASSED
Tests/test_file_jpeg2k.py::test_unbound_local PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_12bit_rawmode PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_16bit_RGB_tiff PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_16bit_RGBa_tiff PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_4bit PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test__next PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_additional_metadata PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_adobe_deflate_tiff PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_big_endian PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_block_tile_tags[None] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_block_tile_tags[jpeg] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_blur PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_bw_compression_w_rgb[group3] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_bw_compression_w_rgb[group4] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_bw_compression_w_rgb[tiff_ccitt] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_cmyk_save PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_compressions PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_crashing_metadata PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_custom_metadata PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_exif_ifd PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_exif_transpose PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_fd_duplication PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_fp_leak PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g3_compression PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_eq_png PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_fillorder_eq_png PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_large PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_non_disk_file_object PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_string_info PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_tiff PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_tiff_bytesio PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_tiff_file PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_g4_write PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_get_child_images[Tests/images/child_ifd.tiff-sizes1] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_get_child_images[Tests/images/child_ifd_jpeg.tiff-sizes2] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_get_child_images[Tests/images/hopper.tif-sizes0] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_gimp_tiff PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_gray_semibyte_per_pixel PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_int_dpi PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_little_endian PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_lzma PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_lzw PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_multipage PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_multipage_compression PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_multipage_nframes PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_multipage_seek_backwards PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_no_rows_per_strip PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_old_style_jpeg PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_open_missing_samplesperpixel PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_orientation PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_osubfiletype PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_page_number_x_0 PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_palette_save[im0] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_palette_save[im1] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_quality PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_read_icc PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_realloc_overflow PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_sampleformat PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_sampleformat_not_corrupted PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_sampleformat_write PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_bytesio PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_many_compressed PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_multistrip[jpeg] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_multistrip[tiff_adobe_deflate] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_single_strip[False] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_single_strip[True] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_tiff_with_jpegtables PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_ycbcr PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_zero[None] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_save_zero[tiff_adobe_deflate] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_cmyk_16l_jpeg PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_cmyk_jpeg PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_planar_16bit_RGB PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_planar_16bit_RGBa PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_planar_rgb PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_ycbcr_jpeg_1x1_sampling PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_strip_ycbcr_jpeg_2x2_sampling PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_subifd PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiff_deflate_compression PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiff_jpeg_compression PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_cmyk_jpeg PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_planar_16bit_RGB PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_planar_16bit_RGBa PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_planar_rgb PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_ycbcr_jpeg_1x1_sampling PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_tiled_ycbcr_jpeg_2x2_sampling PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_version PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_webp PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_write_icc PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_write_metadata[False] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_write_metadata[True] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_wrong_bits_per_sample[tiff_wrong_bits_per_sample.tiff-RGBA-size0-tile0] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_wrong_bits_per_sample[tiff_wrong_bits_per_sample_2.tiff-RGB-size1-tile1] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_wrong_bits_per_sample[tiff_wrong_bits_per_sample_3.tiff-RGBA-size2-tile2] PASSED
Tests/test_file_libtiff.py::TestFileLibTiff::test_xmlpacket_tag PASSED
Tests/test_file_libtiff_small.py::TestFileLibTiffSmall::test_g4_hopper PASSED
Tests/test_file_libtiff_small.py::TestFileLibTiffSmall::test_g4_hopper_bytesio PASSED
Tests/test_file_libtiff_small.py::TestFileLibTiffSmall::test_g4_hopper_file PASSED
Tests/test_file_mcidas.py::test_invalid_file PASSED
Tests/test_file_mcidas.py::test_valid_file PASSED
Tests/test_file_mic.py::test_close PASSED
Tests/test_file_mic.py::test_invalid_file PASSED
Tests/test_file_mic.py::test_is_animated PASSED
Tests/test_file_mic.py::test_n_frames PASSED
Tests/test_file_mic.py::test_sanity PASSED
Tests/test_file_mic.py::test_seek PASSED
Tests/test_file_mic.py::test_tell PASSED
Tests/test_file_mpo.py::test_app[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_app[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_closed_file PASSED
Tests/test_file_mpo.py::test_context_manager PASSED
Tests/test_file_mpo.py::test_eoferror PASSED
Tests/test_file_mpo.py::test_exif[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_exif[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_frame_size PASSED
Tests/test_file_mpo.py::test_ignore_frame_size PASSED
Tests/test_file_mpo.py::test_image_grab[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_image_grab[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_mp[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_mp[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_mp_attribute[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_mp_attribute[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_mp_no_data PASSED
Tests/test_file_mpo.py::test_mp_offset PASSED
Tests/test_file_mpo.py::test_n_frames PASSED
Tests/test_file_mpo.py::test_parallax PASSED
Tests/test_file_mpo.py::test_reload_exif_after_seek PASSED
Tests/test_file_mpo.py::test_sanity[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_sanity[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_save[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_save[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_save_all PASSED
Tests/test_file_mpo.py::test_seek[Tests/images/frozenpond.mpo] PASSED
Tests/test_file_mpo.py::test_seek[Tests/images/sugarshack.mpo] PASSED
Tests/test_file_mpo.py::test_seek_after_close PASSED
Tests/test_file_mpo.py::test_unclosed_file PASSED
Tests/test_file_msp.py::test_bad_checksum PASSED
Tests/test_file_msp.py::test_cannot_save_wrong_mode PASSED
Tests/test_file_msp.py::test_invalid_file PASSED
Tests/test_file_msp.py::test_msp_v2 SKIPPED (Even More Extra image f...)
Tests/test_file_msp.py::test_open_windows_v1 PASSED
Tests/test_file_msp.py::test_open_windows_v2 SKIPPED (Extra image fi...)
Tests/test_file_msp.py::test_sanity PASSED
Tests/test_file_palm.py::test_monochrome PASSED
Tests/test_file_palm.py::test_oserror[L] PASSED
Tests/test_file_palm.py::test_oserror[RGB] PASSED
Tests/test_file_palm.py::test_p_mode XFAIL (Palm P image is wrong)
Tests/test_file_pcd.py::test_load_raw PASSED
Tests/test_file_pcx.py::test_1px_width PASSED
Tests/test_file_pcx.py::test_break_in_count_overflow PASSED
Tests/test_file_pcx.py::test_break_many_at_end PASSED
Tests/test_file_pcx.py::test_break_many_in_loop PASSED
Tests/test_file_pcx.py::test_break_one_at_end PASSED
Tests/test_file_pcx.py::test_break_one_in_loop PASSED
Tests/test_file_pcx.py::test_break_padding PASSED
Tests/test_file_pcx.py::test_invalid_file PASSED
Tests/test_file_pcx.py::test_large_count PASSED
Tests/test_file_pcx.py::test_odd[1] PASSED
Tests/test_file_pcx.py::test_odd[L] PASSED
Tests/test_file_pcx.py::test_odd[P] PASSED
Tests/test_file_pcx.py::test_odd[RGB] PASSED
Tests/test_file_pcx.py::test_odd_read PASSED
Tests/test_file_pcx.py::test_pil184 PASSED
Tests/test_file_pcx.py::test_sanity PASSED
Tests/test_file_pdf.py::test_dpi[params0] PASSED
Tests/test_file_pdf.py::test_dpi[params1] PASSED
Tests/test_file_pdf.py::test_monochrome PASSED
Tests/test_file_pdf.py::test_multiframe_normal_save PASSED
Tests/test_file_pdf.py::test_p_alpha PASSED
Tests/test_file_pdf.py::test_pdf_append PASSED
Tests/test_file_pdf.py::test_pdf_append_fails_on_nonexistent_file PASSED
Tests/test_file_pdf.py::test_pdf_append_to_bytesio PASSED
Tests/test_file_pdf.py::test_pdf_info PASSED
Tests/test_file_pdf.py::test_pdf_open PASSED
Tests/test_file_pdf.py::test_redos[\n] PASSED
Tests/test_file_pdf.py::test_redos[\r] PASSED
Tests/test_file_pdf.py::test_resolution PASSED
Tests/test_file_pdf.py::test_save[CMYK] PASSED
Tests/test_file_pdf.py::test_save[L] PASSED
Tests/test_file_pdf.py::test_save[P] PASSED
Tests/test_file_pdf.py::test_save[RGB] PASSED
Tests/test_file_pdf.py::test_save_all PASSED
Tests/test_file_pdf.py::test_save_alpha[LA] PASSED
Tests/test_file_pdf.py::test_save_alpha[RGBA] PASSED
Tests/test_file_pdf.py::test_unsupported_mode PASSED
Tests/test_file_pixar.py::test_invalid_file PASSED
Tests/test_file_pixar.py::test_sanity PASSED
Tests/test_file_png.py::TestFilePng::test_bad_itxt PASSED
Tests/test_file_png.py::TestFilePng::test_bad_text PASSED
Tests/test_file_png.py::TestFilePng::test_bad_ztxt PASSED
Tests/test_file_png.py::TestFilePng::test_broken PASSED
Tests/test_file_png.py::TestFilePng::test_chunk_order PASSED
Tests/test_file_png.py::TestFilePng::test_discard_icc_profile PASSED
Tests/test_file_png.py::TestFilePng::test_exif PASSED
Tests/test_file_png.py::TestFilePng::test_exif_argument PASSED
Tests/test_file_png.py::TestFilePng::test_exif_from_jpg PASSED
Tests/test_file_png.py::TestFilePng::test_exif_save PASSED
Tests/test_file_png.py::TestFilePng::test_getchunks PASSED
Tests/test_file_png.py::TestFilePng::test_getxmp PASSED
Tests/test_file_png.py::TestFilePng::test_interlace PASSED
Tests/test_file_png.py::TestFilePng::test_invalid_file PASSED
Tests/test_file_png.py::TestFilePng::test_load_float_dpi PASSED
Tests/test_file_png.py::TestFilePng::test_load_transparent_p PASSED
Tests/test_file_png.py::TestFilePng::test_load_transparent_rgb PASSED
Tests/test_file_png.py::TestFilePng::test_load_verify PASSED
Tests/test_file_png.py::TestFilePng::test_nonunicode_text PASSED
Tests/test_file_png.py::TestFilePng::test_padded_idat PASSED
Tests/test_file_png.py::TestFilePng::test_plte_length PASSED
Tests/test_file_png.py::TestFilePng::test_read_private_chunks PASSED
Tests/test_file_png.py::TestFilePng::test_repr_png PASSED
Tests/test_file_png.py::TestFilePng::test_repr_png_error_returns_none PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_dpi PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_icc_profile PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_itxt PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_no_icc_profile PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_private_chunk PASSED
Tests/test_file_png.py::TestFilePng::test_roundtrip_text PASSED
Tests/test_file_png.py::TestFilePng::test_sanity PASSED
Tests/test_file_png.py::TestFilePng::test_save_grayscale_transparency PASSED
Tests/test_file_png.py::TestFilePng::test_save_icc_profile PASSED
Tests/test_file_png.py::TestFilePng::test_save_p_single_transparency PASSED
Tests/test_file_png.py::TestFilePng::test_save_p_transparent_black PASSED
Tests/test_file_png.py::TestFilePng::test_save_p_transparent_palette PASSED
Tests/test_file_png.py::TestFilePng::test_save_rgb_single_transparency PASSED
Tests/test_file_png.py::TestFilePng::test_save_stdout[False] PASSED
Tests/test_file_png.py::TestFilePng::test_save_stdout[True] PASSED
Tests/test_file_png.py::TestFilePng::test_scary PASSED
Tests/test_file_png.py::TestFilePng::test_seek PASSED
Tests/test_file_png.py::TestFilePng::test_specify_bits PASSED
Tests/test_file_png.py::TestFilePng::test_tell PASSED
Tests/test_file_png.py::TestFilePng::test_textual_chunks_after_idat PASSED
Tests/test_file_png.py::TestFilePng::test_trns_null PASSED
Tests/test_file_png.py::TestFilePng::test_trns_p PASSED
Tests/test_file_png.py::TestFilePng::test_trns_rgb PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[IHDR] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[acTL] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[fcTL] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[fdAT] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[pHYs] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_chunks[sRGB] PASSED
Tests/test_file_png.py::TestFilePng::test_truncated_end_chunk PASSED
Tests/test_file_png.py::TestFilePng::test_unicode_text PASSED
Tests/test_file_png.py::TestFilePng::test_unknown_compression_method PASSED
Tests/test_file_png.py::TestFilePng::test_verify_ignores_crc_error PASSED
Tests/test_file_png.py::TestFilePng::test_verify_not_ignores_crc_error_in_required_chunk PASSED
Tests/test_file_png.py::TestFilePng::test_verify_struct_error PASSED
Tests/test_file_png.py::TestTruncatedPngPLeaks::test_leak_load PASSED
Tests/test_file_ppm.py::test_16bit_pgm PASSED
Tests/test_file_ppm.py::test_16bit_pgm_write PASSED
Tests/test_file_ppm.py::test_16bit_plain_pgm PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P2 3 1 257 0 128 257-I-pixels1] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P2 3 1 4 0 2 4-L-pixels0] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P3 3 1 17 0 1 2 8 9 10 15 16 17-RGB-pixels2] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P3 3 1 257 0 1 2 128 129 130 256 257 257-RGB-pixels3] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P5 3 1 257 \x00\x00\x00\x80\x01\x01-I-pixels5] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P5 3 1 4 \x00\x02\x04-L-pixels4] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P6 3 1 17 \x00\x01\x02\x08\t\n\x0f\x10\x11-RGB-pixels6] PASSED
Tests/test_file_ppm.py::test_arbitrary_maxval[P6 3 1 257 \x00\x00\x00\x01\x00\x02\x00\x80\x00\x81\x00\x82\x01\x00\x01\x01\xff\xff-RGB-pixels7] PASSED
Tests/test_file_ppm.py::test_header_token_too_long PASSED
Tests/test_file_ppm.py::test_header_with_comments PASSED
Tests/test_file_ppm.py::test_invalid_maxval[0] PASSED
Tests/test_file_ppm.py::test_invalid_maxval[65536] PASSED
Tests/test_file_ppm.py::test_magic PASSED
Tests/test_file_ppm.py::test_mimetypes PASSED
Tests/test_file_ppm.py::test_neg_ppm PASSED
Tests/test_file_ppm.py::test_non_integer_token PASSED
Tests/test_file_ppm.py::test_not_enough_image_data PASSED
Tests/test_file_ppm.py::test_pfm PASSED
Tests/test_file_ppm.py::test_pfm_big_endian PASSED
Tests/test_file_ppm.py::test_pfm_invalid[Pf 1 1 -0.0 \x00\x00\x00\x00] PASSED
Tests/test_file_ppm.py::test_pfm_invalid[Pf 1 1 -inf \x00\x00\x00\x00] PASSED
Tests/test_file_ppm.py::test_pfm_invalid[Pf 1 1 0.0 \x00\x00\x00\x00] PASSED
Tests/test_file_ppm.py::test_pfm_invalid[Pf 1 1 NaN \x00\x00\x00\x00] PASSED
Tests/test_file_ppm.py::test_pfm_invalid[Pf 1 1 inf \x00\x00\x00\x00] PASSED
Tests/test_file_ppm.py::test_plain[Tests/images/hopper_1bit_plain.pbm-Tests/images/hopper_1bit.pbm] PASSED
Tests/test_file_ppm.py::test_plain[Tests/images/hopper_8bit_plain.pgm-Tests/images/hopper_8bit.pgm] PASSED
Tests/test_file_ppm.py::test_plain[Tests/images/hopper_8bit_plain.ppm-Tests/images/hopper_8bit.ppm] PASSED
Tests/test_file_ppm.py::test_plain_data_with_comment[P1\n2 2-1010-1000000] PASSED
Tests/test_file_ppm.py::test_plain_data_with_comment[P2\n3 1\n4-0 2 4-1] PASSED
Tests/test_file_ppm.py::test_plain_data_with_comment[P3\n2 2\n255-0 0 0 001 1 1 2 2 2 255 255 255-1000000] PASSED
Tests/test_file_ppm.py::test_plain_invalid_data[P1\n128 128\n1009] PASSED
Tests/test_file_ppm.py::test_plain_invalid_data[P3\n128 128\n255\n100A] PASSED
Tests/test_file_ppm.py::test_plain_ppm_token_too_long[P3\n128 128\n255\n012345678910 0] PASSED
Tests/test_file_ppm.py::test_plain_ppm_token_too_long[P3\n128 128\n255\n012345678910] PASSED
Tests/test_file_ppm.py::test_plain_ppm_value_negative PASSED
Tests/test_file_ppm.py::test_plain_ppm_value_too_large PASSED
Tests/test_file_ppm.py::test_plain_truncated_data[P1\n128 128\n] PASSED
Tests/test_file_ppm.py::test_plain_truncated_data[P3\n128 128\n255\n] PASSED
Tests/test_file_ppm.py::test_pnm PASSED
Tests/test_file_ppm.py::test_sanity PASSED
Tests/test_file_ppm.py::test_save_stdout[False] PASSED
Tests/test_file_ppm.py::test_save_stdout[True] PASSED
Tests/test_file_ppm.py::test_truncated_file PASSED
Tests/test_file_psd.py::test_closed_file PASSED
Tests/test_file_psd.py::test_combined_larger_than_size PASSED
Tests/test_file_psd.py::test_context_manager PASSED
Tests/test_file_psd.py::test_crashes[Tests/images/timeout-1ee28a249896e05b83840ae8140622de8e648ba9.psd-UnidentifiedImageError] PASSED
Tests/test_file_psd.py::test_crashes[Tests/images/timeout-598843abc37fc080ec36a2699ebbd44f795d3a6f.psd-UnidentifiedImageError] PASSED
Tests/test_file_psd.py::test_crashes[Tests/images/timeout-c8efc3fded6426986ba867a399791bae544f59bc.psd-OSError] PASSED
Tests/test_file_psd.py::test_crashes[Tests/images/timeout-dedc7a4ebd856d79b4359bbcc79e8ef231ce38f6.psd-OSError] PASSED
Tests/test_file_psd.py::test_eoferror PASSED
Tests/test_file_psd.py::test_icc_profile PASSED
Tests/test_file_psd.py::test_invalid_file PASSED
Tests/test_file_psd.py::test_layer_skip PASSED
Tests/test_file_psd.py::test_n_frames PASSED
Tests/test_file_psd.py::test_negative_top_left_layer PASSED
Tests/test_file_psd.py::test_no_icc_profile PASSED
Tests/test_file_psd.py::test_open_after_exclusive_load PASSED
Tests/test_file_psd.py::test_rgba PASSED
Tests/test_file_psd.py::test_sanity PASSED
Tests/test_file_psd.py::test_seek_eoferror PASSED
Tests/test_file_psd.py::test_seek_tell PASSED
Tests/test_file_psd.py::test_unclosed_file PASSED
Tests/test_file_qoi.py::test_invalid_file PASSED
Tests/test_file_qoi.py::test_sanity PASSED
Tests/test_file_sgi.py::test_invalid_file PASSED
Tests/test_file_sgi.py::test_l PASSED
Tests/test_file_sgi.py::test_rgb PASSED
Tests/test_file_sgi.py::test_rgb16 PASSED
Tests/test_file_sgi.py::test_rgba PASSED
Tests/test_file_sgi.py::test_rle PASSED
Tests/test_file_sgi.py::test_rle16 PASSED
Tests/test_file_sgi.py::test_unsupported_mode PASSED
Tests/test_file_sgi.py::test_write PASSED
Tests/test_file_sgi.py::test_write16 PASSED
Tests/test_file_spider.py::test_closed_file PASSED
Tests/test_file_spider.py::test_context_manager PASSED
Tests/test_file_spider.py::test_invalid_file PASSED
Tests/test_file_spider.py::test_is_int_not_a_number PASSED
Tests/test_file_spider.py::test_is_spider_image PASSED
Tests/test_file_spider.py::test_load_image_series PASSED
Tests/test_file_spider.py::test_load_image_series_no_input PASSED
Tests/test_file_spider.py::test_n_frames PASSED
Tests/test_file_spider.py::test_nonstack_dos PASSED
Tests/test_file_spider.py::test_nonstack_file PASSED
Tests/test_file_spider.py::test_odd_size PASSED
Tests/test_file_spider.py::test_sanity PASSED
Tests/test_file_spider.py::test_save PASSED
Tests/test_file_spider.py::test_tell PASSED
Tests/test_file_spider.py::test_tempfile PASSED
Tests/test_file_spider.py::test_unclosed_file PASSED
Tests/test_file_sun.py::test_im1 PASSED
Tests/test_file_sun.py::test_others SKIPPED (Extra image files not i...)
Tests/test_file_sun.py::test_sanity PASSED
Tests/test_file_tar.py::test_close PASSED
Tests/test_file_tar.py::test_contextmanager PASSED
Tests/test_file_tar.py::test_sanity[jpg-hopper.jpg-JPEG] PASSED
Tests/test_file_tar.py::test_sanity[zlib-hopper.png-PNG] PASSED
Tests/test_file_tar.py::test_unclosed_file PASSED
Tests/test_file_tga.py::test_cross_scan_line PASSED
Tests/test_file_tga.py::test_horizontal_orientations PASSED
Tests/test_file_tga.py::test_id_field PASSED
Tests/test_file_tga.py::test_id_field_rle PASSED
Tests/test_file_tga.py::test_missing_palette PASSED
Tests/test_file_tga.py::test_palette_depth_16 PASSED
Tests/test_file_tga.py::test_palette_depth_8 PASSED
Tests/test_file_tga.py::test_sanity[LA] PASSED
Tests/test_file_tga.py::test_sanity[L] PASSED
Tests/test_file_tga.py::test_sanity[P] PASSED
Tests/test_file_tga.py::test_sanity[RGBA] PASSED
Tests/test_file_tga.py::test_sanity[RGB] PASSED
Tests/test_file_tga.py::test_save PASSED
Tests/test_file_tga.py::test_save_id_section PASSED
Tests/test_file_tga.py::test_save_l_transparency PASSED
Tests/test_file_tga.py::test_save_mapdepth PASSED
Tests/test_file_tga.py::test_save_orientation PASSED
Tests/test_file_tga.py::test_save_rle PASSED
Tests/test_file_tga.py::test_save_wrong_mode PASSED
Tests/test_file_tga.py::test_small_palette PASSED
Tests/test_file_tiff.py::TestFileTiff::test_12bit_rawmode PASSED
Tests/test_file_tiff.py::TestFileTiff::test_16bit_r PASSED
Tests/test_file_tiff.py::TestFileTiff::test_16bit_s PASSED
Tests/test_file_tiff.py::TestFileTiff::test_32bit_float PASSED
Tests/test_file_tiff.py::TestFileTiff::test_4bit PASSED
Tests/test_file_tiff.py::TestFileTiff::test_8bit_s PASSED
Tests/test_file_tiff.py::TestFileTiff::test___str__ PASSED
Tests/test_file_tiff.py::TestFileTiff::test__delitem__ PASSED
Tests/test_file_tiff.py::TestFileTiff::test__limit_rational_float PASSED
Tests/test_file_tiff.py::TestFileTiff::test__limit_rational_int PASSED
Tests/test_file_tiff.py::TestFileTiff::test_bad_exif PASSED
Tests/test_file_tiff.py::TestFileTiff::test_big_endian PASSED
Tests/test_file_tiff.py::TestFileTiff::test_bigtiff PASSED
Tests/test_file_tiff.py::TestFileTiff::test_close_on_load_exclusive PASSED
Tests/test_file_tiff.py::TestFileTiff::test_close_on_load_nonexclusive PASSED
Tests/test_file_tiff.py::TestFileTiff::test_closed_file PASSED
Tests/test_file_tiff.py::TestFileTiff::test_context_manager PASSED
Tests/test_file_tiff.py::TestFileTiff::test_dict PASSED
Tests/test_file_tiff.py::TestFileTiff::test_discard_icc_profile PASSED
Tests/test_file_tiff.py::TestFileTiff::test_eoferror PASSED
Tests/test_file_tiff.py::TestFileTiff::test_exif PASSED
Tests/test_file_tiff.py::TestFileTiff::test_exif_frames PASSED
Tests/test_file_tiff.py::TestFileTiff::test_frame_order PASSED
Tests/test_file_tiff.py::TestFileTiff::test_get_photoshop_blocks PASSED
Tests/test_file_tiff.py::TestFileTiff::test_getxmp PASSED
Tests/test_file_tiff.py::TestFileTiff::test_gray_semibyte_per_pixel PASSED
Tests/test_file_tiff.py::TestFileTiff::test_ifd_tag_type PASSED
Tests/test_file_tiff.py::TestFileTiff::test_int_resolution PASSED
Tests/test_file_tiff.py::TestFileTiff::test_invalid_file PASSED
Tests/test_file_tiff.py::TestFileTiff::test_little_endian PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_byte[False] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_byte[True] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_double PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_float PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_float_dpi[2-72.8] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_float_dpi[3-184.912] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_float_dpi[None-72.8] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_load_string PASSED
Tests/test_file_tiff.py::TestFileTiff::test_mac_tiff PASSED
Tests/test_file_tiff.py::TestFileTiff::test_modify_exif PASSED
Tests/test_file_tiff.py::TestFileTiff::test_multipage PASSED
Tests/test_file_tiff.py::TestFileTiff::test_multipage_last_frame PASSED
Tests/test_file_tiff.py::TestFileTiff::test_n_frames[Tests/images/multipage-lastframe.tif-1] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_n_frames[Tests/images/multipage.tiff-3] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_oom[Tests/images/oom-225817ca0f8c663be7ab4b9e717b02c661e66834.tif] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_palette[PA] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_palette[P] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_photometric[1] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_photometric[L] PASSED
Tests/test_file_tiff.py::TestFileTiff::test_planar_configuration_save PASSED
Tests/test_file_tiff.py::TestFileTiff::test_reload_exif_after_seek PASSED
Tests/test_file_tiff.py::TestFileTiff::test_roundtrip_tiff_uint16 PASSED
Tests/test_file_tiff.py::TestFileTiff::test_rowsperstrip PASSED
Tests/test_file_tiff.py::TestFileTiff::test_sanity PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_bmp_compression PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_float_dpi PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_icc_profile PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_rgba PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_setting_missing_resolution PASSED
Tests/test_file_tiff.py::TestFileTiff::test_save_unsupported_mode PASSED
Tests/test_file_tiff.py::TestFileTiff::test_saving_icc_profile PASSED
Tests/test_file_tiff.py::TestFileTiff::test_seek PASSED
Tests/test_file_tiff.py::TestFileTiff::test_seek_after_close PASSED
Tests/test_file_tiff.py::TestFileTiff::test_seek_eof PASSED
Tests/test_file_tiff.py::TestFileTiff::test_seek_too_large PASSED
Tests/test_file_tiff.py::TestFileTiff::test_set_legacy_api PASSED
Tests/test_file_tiff.py::TestFileTiff::test_string_dimension SKIPPED
Tests/test_file_tiff.py::TestFileTiff::test_strip_planar_raw PASSED
Tests/test_file_tiff.py::TestFileTiff::test_strip_planar_raw_with_overviews PASSED
Tests/test_file_tiff.py::TestFileTiff::test_strip_raw PASSED
Tests/test_file_tiff.py::TestFileTiff::test_tiff_chunks PASSED
Tests/test_file_tiff.py::TestFileTiff::test_tiff_save_all PASSED
Tests/test_file_tiff.py::TestFileTiff::test_tiled_planar_raw PASSED
Tests/test_file_tiff.py::TestFileTiff::test_timeout PASSED
Tests/test_file_tiff.py::TestFileTiff::test_unclosed_file PASSED
Tests/test_file_tiff.py::TestFileTiff::test_unknown_pixel_mode PASSED
Tests/test_file_tiff.py::TestFileTiff::test_with_underscores PASSED
Tests/test_file_tiff.py::TestFileTiff::test_xyres_fallback_tiff PASSED
Tests/test_file_tiff.py::TestFileTiff::test_xyres_tiff PASSED
Tests/test_file_tiff.py::TestFileTiffW32::test_fd_leak SKIPPED (Wind...)
Tests/test_file_tiff_metadata.py::test_change_stripbytecounts_tag_type PASSED
Tests/test_file_tiff_metadata.py::test_empty_metadata PASSED
Tests/test_file_tiff_metadata.py::test_empty_subifd PASSED
Tests/test_file_tiff_metadata.py::test_empty_values PASSED
Tests/test_file_tiff_metadata.py::test_exif_div_zero PASSED
Tests/test_file_tiff_metadata.py::test_iccprofile PASSED
Tests/test_file_tiff_metadata.py::test_iccprofile_binary PASSED
Tests/test_file_tiff_metadata.py::test_iccprofile_binary_save_png PASSED
Tests/test_file_tiff_metadata.py::test_iccprofile_save_png PASSED
Tests/test_file_tiff_metadata.py::test_ifd_signed_long PASSED
Tests/test_file_tiff_metadata.py::test_ifd_signed_rational PASSED
Tests/test_file_tiff_metadata.py::test_ifd_unsigned_rational PASSED
Tests/test_file_tiff_metadata.py::test_iptc PASSED
Tests/test_file_tiff_metadata.py::test_no_duplicate_50741_tag PASSED
Tests/test_file_tiff_metadata.py::test_photoshop_info PASSED
Tests/test_file_tiff_metadata.py::test_read_metadata PASSED
Tests/test_file_tiff_metadata.py::test_rt_metadata PASSED
Tests/test_file_tiff_metadata.py::test_tag_group_data PASSED
Tests/test_file_tiff_metadata.py::test_too_many_entries PASSED
Tests/test_file_tiff_metadata.py::test_undefined_zero PASSED
Tests/test_file_tiff_metadata.py::test_write_metadata PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_ascii[1-1] PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_ascii[test-test] PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_bytes[1] PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_bytes[value1] PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_undefined[1] PASSED
Tests/test_file_tiff_metadata.py::test_writing_other_types_to_undefined[value1] PASSED
Tests/test_file_wal.py::test_load PASSED
Tests/test_file_wal.py::test_open PASSED
Tests/test_file_webp.py::TestFileWebp::test_WebPDecode_with_invalid_args PASSED
Tests/test_file_webp.py::TestFileWebp::test_WebPEncode_with_invalid_args PASSED
Tests/test_file_webp.py::TestFileWebp::test_background_from_gif PASSED
Tests/test_file_webp.py::TestFileWebp::test_duration PASSED
Tests/test_file_webp.py::TestFileWebp::test_file_pointer_could_be_reused PASSED
Tests/test_file_webp.py::TestFileWebp::test_icc_profile PASSED
Tests/test_file_webp.py::TestFileWebp::test_invalid_background[0] PASSED
Tests/test_file_webp.py::TestFileWebp::test_invalid_background[background1] PASSED
Tests/test_file_webp.py::TestFileWebp::test_invalid_background[background2] PASSED
Tests/test_file_webp.py::TestFileWebp::test_invalid_background[background3] PASSED
Tests/test_file_webp.py::TestFileWebp::test_no_resource_warning PASSED
Tests/test_file_webp.py::TestFileWebp::test_read_rgb PASSED
Tests/test_file_webp.py::TestFileWebp::test_roundtrip_rgba_palette PASSED
Tests/test_file_webp.py::TestFileWebp::test_save_all PASSED
Tests/test_file_webp.py::TestFileWebp::test_version PASSED
Tests/test_file_webp.py::TestFileWebp::test_write_encoding_error_message PASSED
Tests/test_file_webp.py::TestFileWebp::test_write_method PASSED
Tests/test_file_webp.py::TestFileWebp::test_write_rgb PASSED
Tests/test_file_webp.py::TestFileWebp::test_write_unsupported_mode_L PASSED
Tests/test_file_webp.py::TestFileWebp::test_write_unsupported_mode_P PASSED
Tests/test_file_webp.py::TestUnsupportedWebp::test_unsupported PASSED
Tests/test_file_webp_alpha.py::test_alpha_quality PASSED
Tests/test_file_webp_alpha.py::test_keep_rgb_values_when_transparent PASSED
Tests/test_file_webp_alpha.py::test_read_rgba PASSED
Tests/test_file_webp_alpha.py::test_write_lossless_rgb PASSED
Tests/test_file_webp_alpha.py::test_write_rgba PASSED
Tests/test_file_webp_alpha.py::test_write_unsupported_mode_PA PASSED
Tests/test_file_webp_animated.py::test_alpha_quality PASSED
Tests/test_file_webp_animated.py::test_float_duration PASSED
Tests/test_file_webp_animated.py::test_n_frames PASSED
Tests/test_file_webp_animated.py::test_seek_errors PASSED
Tests/test_file_webp_animated.py::test_seeking PASSED
Tests/test_file_webp_animated.py::test_timestamp_and_duration PASSED
Tests/test_file_webp_animated.py::test_write_animation_L PASSED
Tests/test_file_webp_animated.py::test_write_animation_RGB PASSED
Tests/test_file_webp_lossless.py::test_write_lossless_rgb PASSED
Tests/test_file_webp_metadata.py::test_getxmp PASSED
Tests/test_file_webp_metadata.py::test_read_exif_metadata PASSED
Tests/test_file_webp_metadata.py::test_read_exif_metadata_without_prefix PASSED
Tests/test_file_webp_metadata.py::test_read_icc_profile PASSED
Tests/test_file_webp_metadata.py::test_read_no_exif PASSED
Tests/test_file_webp_metadata.py::test_write_animated_metadata PASSED
Tests/test_file_webp_metadata.py::test_write_exif_metadata PASSED
Tests/test_file_webp_metadata.py::test_write_icc_metadata PASSED
Tests/test_file_wmf.py::test_load PASSED
Tests/test_file_wmf.py::test_load_float_dpi PASSED
Tests/test_file_wmf.py::test_load_raw PASSED
Tests/test_file_wmf.py::test_load_set_dpi PASSED
Tests/test_file_wmf.py::test_register_handler PASSED
Tests/test_file_wmf.py::test_save[.emf] PASSED
Tests/test_file_wmf.py::test_save[.wmf] PASSED
Tests/test_file_xbm.py::test_hotspot PASSED
Tests/test_file_xbm.py::test_invalid_file PASSED
Tests/test_file_xbm.py::test_open PASSED
Tests/test_file_xbm.py::test_open_filename_with_underscore PASSED
Tests/test_file_xbm.py::test_pil151 PASSED
Tests/test_file_xbm.py::test_save_wrong_mode PASSED
Tests/test_file_xpm.py::test_invalid_file PASSED
Tests/test_file_xpm.py::test_load_read PASSED
Tests/test_file_xpm.py::test_sanity PASSED
Tests/test_file_xvthumb.py::test_invalid_file PASSED
Tests/test_file_xvthumb.py::test_open PASSED
Tests/test_file_xvthumb.py::test_unexpected_eof PASSED
Tests/test_font_bdf.py::test_invalid_file PASSED
Tests/test_font_bdf.py::test_sanity PASSED
Tests/test_font_crash.py::TestFontCrash::test_segfault PASSED
Tests/test_font_leaks.py::TestDefaultFontLeak::test_leak PASSED
Tests/test_font_leaks.py::TestTTypeFontLeak::test_leak PASSED
Tests/test_font_pcf.py::test_draw PASSED
Tests/test_font_pcf.py::test_high_characters PASSED
Tests/test_font_pcf.py::test_invalid_file PASSED
Tests/test_font_pcf.py::test_less_than_256_characters PASSED
Tests/test_font_pcf.py::test_sanity PASSED
Tests/test_font_pcf.py::test_textsize PASSED
Tests/test_font_pcf_charsets.py::test_draw[cp1250] PASSED
Tests/test_font_pcf_charsets.py::test_draw[iso8859-1] PASSED
Tests/test_font_pcf_charsets.py::test_draw[iso8859-2] PASSED
Tests/test_font_pcf_charsets.py::test_sanity[cp1250] PASSED
Tests/test_font_pcf_charsets.py::test_sanity[iso8859-1] PASSED
Tests/test_font_pcf_charsets.py::test_sanity[iso8859-2] PASSED
Tests/test_font_pcf_charsets.py::test_textsize[cp1250] PASSED
Tests/test_font_pcf_charsets.py::test_textsize[iso8859-1] PASSED
Tests/test_font_pcf_charsets.py::test_textsize[iso8859-2] PASSED
Tests/test_fontfile.py::test_save PASSED
Tests/test_format_hsv.py::test_convert PASSED
Tests/test_format_hsv.py::test_hsv_to_rgb PASSED
Tests/test_format_hsv.py::test_sanity PASSED
Tests/test_format_hsv.py::test_wedge PASSED
Tests/test_format_lab.py::test_green PASSED
Tests/test_format_lab.py::test_red PASSED
Tests/test_format_lab.py::test_white PASSED
Tests/test_image.py::TestImage::test__new PASSED
Tests/test_image.py::TestImage::test_alpha_composite PASSED
Tests/test_image.py::TestImage::test_alpha_inplace PASSED
Tests/test_image.py::TestImage::test_apply_transparency PASSED
Tests/test_image.py::TestImage::test_bad_mode PASSED
Tests/test_image.py::TestImage::test_check_size PASSED
Tests/test_image.py::TestImage::test_close_graceful PASSED
Tests/test_image.py::TestImage::test_comparison_with_other_type PASSED
Tests/test_image.py::TestImage::test_constants PASSED
Tests/test_image.py::TestImage::test_dump PASSED
Tests/test_image.py::TestImage::test_effect_mandelbrot PASSED
Tests/test_image.py::TestImage::test_effect_mandelbrot_bad_arguments PASSED
Tests/test_image.py::TestImage::test_effect_noise PASSED
Tests/test_image.py::TestImage::test_effect_spread PASSED
Tests/test_image.py::TestImage::test_effect_spread_zero PASSED
Tests/test_image.py::TestImage::test_empty_exif PASSED
Tests/test_image.py::TestImage::test_empty_image[size0] PASSED
Tests/test_image.py::TestImage::test_empty_image[size1] PASSED
Tests/test_image.py::TestImage::test_exception_inheritance PASSED
Tests/test_image.py::TestImage::test_exif_hide_offsets PASSED
Tests/test_image.py::TestImage::test_exif_ifd PASSED
Tests/test_image.py::TestImage::test_exif_ifd1 PASSED
Tests/test_image.py::TestImage::test_exif_interop PASSED
Tests/test_image.py::TestImage::test_exif_jpeg PASSED
Tests/test_image.py::TestImage::test_exif_load_from_fp PASSED
Tests/test_image.py::TestImage::test_exif_png PASSED
Tests/test_image.py::TestImage::test_exif_webp PASSED
Tests/test_image.py::TestImage::test_exit_fp PASSED
Tests/test_image.py::TestImage::test_expand_x PASSED
Tests/test_image.py::TestImage::test_expand_xy PASSED
Tests/test_image.py::TestImage::test_fli_overrun2 PASSED
Tests/test_image.py::TestImage::test_fp_name PASSED
Tests/test_image.py::TestImage::test_getbands PASSED
Tests/test_image.py::TestImage::test_getbbox PASSED
Tests/test_image.py::TestImage::test_getchannel PASSED
Tests/test_image.py::TestImage::test_getchannel_wrong_params PASSED
Tests/test_image.py::TestImage::test_has_transparency_data PASSED
Tests/test_image.py::TestImage::test_image_modes_fail[] PASSED
Tests/test_image.py::TestImage::test_image_modes_fail[bad] PASSED
Tests/test_image.py::TestImage::test_image_modes_fail[very very long] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[1] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[BGR;15] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[BGR;16] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[BGR;24] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[CMYK] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[F] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[HSV] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[I;16B] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[I;16L] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[I;16N] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[I;16] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[I] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[LAB] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[LA] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[L] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[La] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[PA] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[P] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[RGBA] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[RGBX] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[RGB] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[RGBa] PASSED
Tests/test_image.py::TestImage::test_image_modes_success[YCbCr] PASSED
Tests/test_image.py::TestImage::test_internals PASSED
Tests/test_image.py::TestImage::test_invalid_image PASSED
Tests/test_image.py::TestImage::test_linear_gradient[F] PASSED
Tests/test_image.py::TestImage::test_linear_gradient[I] PASSED
Tests/test_image.py::TestImage::test_linear_gradient[L] PASSED
Tests/test_image.py::TestImage::test_linear_gradient[P] PASSED
Tests/test_image.py::TestImage::test_linear_gradient_wrong_mode PASSED
Tests/test_image.py::TestImage::test_load_on_nonexclusive_multiframe PASSED
Tests/test_image.py::TestImage::test_ne PASSED
Tests/test_image.py::TestImage::test_no_new_file_on_error PASSED
Tests/test_image.py::TestImage::test_no_resource_warning_on_save PASSED
Tests/test_image.py::TestImage::test_one_item_tuple PASSED
Tests/test_image.py::TestImage::test_open_formats PASSED
Tests/test_image.py::TestImage::test_overrun[01r_00.pcx] PASSED
Tests/test_image.py::TestImage::test_overrun[fli_overrun.bin] PASSED
Tests/test_image.py::TestImage::test_overrun[ossfuzz-4836216264589312.pcx] PASSED
Tests/test_image.py::TestImage::test_overrun[pcx_overrun.bin] PASSED
Tests/test_image.py::TestImage::test_overrun[pcx_overrun2.bin] PASSED
Tests/test_image.py::TestImage::test_overrun[sgi_overrun.bin] PASSED
Tests/test_image.py::TestImage::test_overrun[sgi_overrun_expandrow.bin] PASSED
Tests/test_image.py::TestImage::test_overrun[sgi_overrun_expandrow2.bin] PASSED
Tests/test_image.py::TestImage::test_p_from_rgb_rgba[RGB-#DDEEFF] PASSED
Tests/test_image.py::TestImage::test_p_from_rgb_rgba[RGB-color1] PASSED
Tests/test_image.py::TestImage::test_p_from_rgb_rgba[RGBA-color2] PASSED
Tests/test_image.py::TestImage::test_pathlib PASSED
Tests/test_image.py::TestImage::test_radial_gradient[F] PASSED
Tests/test_image.py::TestImage::test_radial_gradient[I] PASSED
Tests/test_image.py::TestImage::test_radial_gradient[L] PASSED
Tests/test_image.py::TestImage::test_radial_gradient[P] PASSED
Tests/test_image.py::TestImage::test_radial_gradient_wrong_mode PASSED
Tests/test_image.py::TestImage::test_readonly_save PASSED
Tests/test_image.py::TestImage::test_register_extensions PASSED
Tests/test_image.py::TestImage::test_register_open_duplicates PASSED
Tests/test_image.py::TestImage::test_registered_extensions PASSED
Tests/test_image.py::TestImage::test_registered_extensions_uninitialized PASSED
Tests/test_image.py::TestImage::test_remap_palette PASSED
Tests/test_image.py::TestImage::test_remap_palette_transparency PASSED
Tests/test_image.py::TestImage::test_repr_pretty PASSED
Tests/test_image.py::TestImage::test_sanity PASSED
Tests/test_image.py::TestImage::test_set_mode PASSED
Tests/test_image.py::TestImage::test_storage_neg PASSED
Tests/test_image.py::TestImage::test_stringio PASSED
Tests/test_image.py::TestImage::test_tempfile PASSED
Tests/test_image.py::TestImage::test_unknown_extension PASSED
Tests/test_image.py::TestImage::test_width_height PASSED
Tests/test_image.py::TestImage::test_zero_frombytes[size0] PASSED
Tests/test_image.py::TestImage::test_zero_frombytes[size1] PASSED
Tests/test_image.py::TestImage::test_zero_frombytes[size2] PASSED
Tests/test_image.py::TestImage::test_zero_tobytes[size0] PASSED
Tests/test_image.py::TestImage::test_zero_tobytes[size1] PASSED
Tests/test_image.py::TestImage::test_zero_tobytes[size2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[1-1] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[BGR;15-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[BGR;16-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[BGR;24-3] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[CMYK-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[F-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[HSV-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[I-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[I;16-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[I;16B-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[I;16L-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[I;16N-2] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[L-1] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[LA-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[LAB-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[La-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[P-1] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[PA-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[RGB-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[RGBA-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[RGBX-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[RGBa-4] PASSED
Tests/test_image.py::TestImageBytes::test_getdata_putdata[YCbCr-4] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[1] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[BGR;15] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[BGR;16] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[BGR;24] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[CMYK] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[F] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[HSV] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[I;16B] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[I;16L] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[I;16N] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[I;16] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[I] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[LAB] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[LA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[L] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[La] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[PA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[P] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[RGBA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[RGBX] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[RGB] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[RGBa] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_constructor[YCbCr] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[1] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[BGR;15] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[BGR;16] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[BGR;24] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[CMYK] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[F] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[HSV] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[I;16B] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[I;16L] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[I;16N] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[I;16] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[I] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[LAB] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[LA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[L] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[La] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[PA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[P] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[RGBA] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[RGBX] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[RGB] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[RGBa] PASSED
Tests/test_image.py::TestImageBytes::test_roundtrip_bytes_method[YCbCr] PASSED
Tests/test_image.py::TestRegistry::test_encode_registry PASSED
Tests/test_image.py::TestRegistry::test_encode_registry_fail PASSED
Tests/test_image_access.py::TestCffi::test_get_vs_c PASSED
Tests/test_image_access.py::TestCffi::test_not_implemented PASSED
Tests/test_image_access.py::TestCffi::test_p_putpixel_rgb_rgba[PA] PASSED
Tests/test_image_access.py::TestCffi::test_p_putpixel_rgb_rgba[P] PASSED
Tests/test_image_access.py::TestCffi::test_reference_counting PASSED
Tests/test_image_access.py::TestCffi::test_set_vs_c PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[1] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[BGR;15] SKIPPED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[BGR;16] SKIPPED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[BGR;24] SKIPPED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[CMYK] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[F] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[I;16B] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[I;16] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[I] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[LA] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[L] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[PA] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[P] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[RGBA] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[RGBX] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[RGB] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_basic[YCbCr] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_list PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_p_putpixel_rgb_rgba[color0-PA] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_p_putpixel_rgb_rgba[color0-P] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_p_putpixel_rgb_rgba[color1-PA] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_p_putpixel_rgb_rgba[color1-P] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32767-I;16B] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32767-I;16] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32768-I;16B] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32768-I;16] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32769-I;16B] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[32769-I;16] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[65535-I;16B] PASSED
Tests/test_image_access.py::TestCffiGetPixel::test_signedness[65535-I;16] PASSED
Tests/test_image_access.py::TestCffiPutPixel::test_numpy PASSED
Tests/test_image_access.py::TestCffiPutPixel::test_sanity PASSED
Tests/test_image_access.py::TestCffiPutPixel::test_sanity_negative_index PASSED
Tests/test_image_access.py::TestEmbeddable::test_embeddable SKIPPED
Tests/test_image_access.py::TestImageGetPixel::test_basic[1] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[BGR;15] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[BGR;16] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[BGR;24] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[CMYK] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[F] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[I;16B] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[I;16] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[I] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[LA] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[L] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[PA] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[P] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[RGBA] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[RGBX] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[RGB] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_basic[YCbCr] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_list PASSED
Tests/test_image_access.py::TestImageGetPixel::test_p_putpixel_rgb_rgba[color0-PA] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_p_putpixel_rgb_rgba[color0-P] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_p_putpixel_rgb_rgba[color1-PA] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_p_putpixel_rgb_rgba[color1-P] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32767-I;16B] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32767-I;16] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32768-I;16B] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32768-I;16] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32769-I;16B] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[32769-I;16] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[65535-I;16B] PASSED
Tests/test_image_access.py::TestImageGetPixel::test_signedness[65535-I;16] PASSED
Tests/test_image_access.py::TestImagePutPixel::test_numpy PASSED
Tests/test_image_access.py::TestImagePutPixel::test_sanity PASSED
Tests/test_image_access.py::TestImagePutPixel::test_sanity_negative_index PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_invalid_number_of_bands[BGR;15-band_numbers2-color must be int, or tuple of one or three elements] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_invalid_number_of_bands[L-band_numbers0-color must be int or single-element tuple] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_invalid_number_of_bands[LA-band_numbers1-color must be int, or tuple of one or two elements] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_invalid_number_of_bands[RGB-band_numbers3-color must be int, or tuple of one, three or four elements] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[BGR;15] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[I;16] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[I] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[LA] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[L] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[RGBA] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_overflow_error[RGB] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error1[BGR;15] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error1[LA] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error1[RGBA] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error1[RGB] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error2[I;16] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error2[I] PASSED
Tests/test_image_access.py::TestImagePutPixelError::test_putpixel_type_error2[L] PASSED
Tests/test_image_array.py::test_fromarray PASSED
Tests/test_image_array.py::test_fromarray_palette PASSED
Tests/test_image_array.py::test_toarray PASSED
Tests/test_image_convert.py::test_16bit PASSED
Tests/test_image_convert.py::test_16bit_workaround PASSED
Tests/test_image_convert.py::test_8bit PASSED
Tests/test_image_convert.py::test_default PASSED
Tests/test_image_convert.py::test_gif_with_rgba_palette_to_p PASSED
Tests/test_image_convert.py::test_l_macro_rounding[I] PASSED
Tests/test_image_convert.py::test_l_macro_rounding[LA] PASSED
Tests/test_image_convert.py::test_l_macro_rounding[L] PASSED
Tests/test_image_convert.py::test_matrix_identity PASSED
Tests/test_image_convert.py::test_matrix_illegal_conversion PASSED
Tests/test_image_convert.py::test_matrix_wrong_mode PASSED
Tests/test_image_convert.py::test_matrix_xyz[L] PASSED
Tests/test_image_convert.py::test_matrix_xyz[RGB] PASSED
Tests/test_image_convert.py::test_opaque PASSED
Tests/test_image_convert.py::test_p2pa_alpha PASSED
Tests/test_image_convert.py::test_p2pa_palette PASSED
Tests/test_image_convert.py::test_p_la PASSED
Tests/test_image_convert.py::test_rgba PASSED
Tests/test_image_convert.py::test_rgba_p PASSED
Tests/test_image_convert.py::test_sanity PASSED
Tests/test_image_convert.py::test_trns_RGB PASSED
Tests/test_image_convert.py::test_trns_l PASSED
Tests/test_image_convert.py::test_trns_p PASSED
Tests/test_image_convert.py::test_trns_p_transparency[LA] PASSED
Tests/test_image_convert.py::test_trns_p_transparency[PA] PASSED
Tests/test_image_convert.py::test_trns_p_transparency[RGBA] PASSED
Tests/test_image_convert.py::test_unsupported_conversion PASSED
Tests/test_image_copy.py::test_copy[1] PASSED
Tests/test_image_copy.py::test_copy[F] PASSED
Tests/test_image_copy.py::test_copy[I] PASSED
Tests/test_image_copy.py::test_copy[L] PASSED
Tests/test_image_copy.py::test_copy[P] PASSED
Tests/test_image_copy.py::test_copy[RGB] PASSED
Tests/test_image_copy.py::test_copy_zero PASSED
Tests/test_image_copy.py::test_deepcopy PASSED
Tests/test_image_crop.py::test_crop[1] PASSED
Tests/test_image_crop.py::test_crop[F] PASSED
Tests/test_image_crop.py::test_crop[I] PASSED
Tests/test_image_crop.py::test_crop[L] PASSED
Tests/test_image_crop.py::test_crop[P] PASSED
Tests/test_image_crop.py::test_crop[RGB] PASSED
Tests/test_image_crop.py::test_crop_crash PASSED
Tests/test_image_crop.py::test_crop_float PASSED
Tests/test_image_crop.py::test_crop_zero PASSED
Tests/test_image_crop.py::test_negative_crop[box0] PASSED
Tests/test_image_crop.py::test_negative_crop[box1] PASSED
Tests/test_image_crop.py::test_negative_crop[box2] PASSED
Tests/test_image_crop.py::test_wide_crop PASSED
Tests/test_image_draft.py::test_mode PASSED
Tests/test_image_draft.py::test_several_drafts PASSED
Tests/test_image_draft.py::test_size PASSED
Tests/test_image_entropy.py::test_entropy PASSED
Tests/test_image_filter.py::test_builtinfilter_p PASSED
Tests/test_image_filter.py::test_consistency_3x3[CMYK] PASSED
Tests/test_image_filter.py::test_consistency_3x3[I] PASSED
Tests/test_image_filter.py::test_consistency_3x3[LA] PASSED
Tests/test_image_filter.py::test_consistency_3x3[L] PASSED
Tests/test_image_filter.py::test_consistency_3x3[RGB] PASSED
Tests/test_image_filter.py::test_consistency_5x5[CMYK] PASSED
Tests/test_image_filter.py::test_consistency_5x5[I] PASSED
Tests/test_image_filter.py::test_consistency_5x5[LA] PASSED
Tests/test_image_filter.py::test_consistency_5x5[L] PASSED
Tests/test_image_filter.py::test_consistency_5x5[RGB] PASSED
Tests/test_image_filter.py::test_crash[size0] PASSED
Tests/test_image_filter.py::test_crash[size1] PASSED
Tests/test_image_filter.py::test_crash[size2] PASSED
Tests/test_image_filter.py::test_invalid_box_blur_filter[-2] PASSED
Tests/test_image_filter.py::test_invalid_box_blur_filter[radius1] PASSED
Tests/test_image_filter.py::test_invalid_box_blur_filter[radius2] PASSED
Tests/test_image_filter.py::test_invalid_box_blur_filter[radius3] PASSED
Tests/test_image_filter.py::test_kernel_not_enough_coefficients PASSED
Tests/test_image_filter.py::test_modefilter[1-expected0] PASSED
Tests/test_image_filter.py::test_modefilter[L-expected1] PASSED
Tests/test_image_filter.py::test_modefilter[P-expected2] PASSED
Tests/test_image_filter.py::test_modefilter[RGB-expected3] PASSED
Tests/test_image_filter.py::test_rankfilter[1-expected0] PASSED
Tests/test_image_filter.py::test_rankfilter[F-expected4] PASSED
Tests/test_image_filter.py::test_rankfilter[I-expected3] PASSED
Tests/test_image_filter.py::test_rankfilter[L-expected1] PASSED
Tests/test_image_filter.py::test_rankfilter[RGB-expected2] PASSED
Tests/test_image_filter.py::test_rankfilter_error[MaxFilter] PASSED
Tests/test_image_filter.py::test_rankfilter_error[MedianFilter] PASSED
Tests/test_image_filter.py::test_rankfilter_error[MinFilter] PASSED
Tests/test_image_filter.py::test_rankfilter_properties PASSED
Tests/test_image_filter.py::test_sanity[CMYK-BLUR] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-CONTOUR] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-DETAIL] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-EDGE_ENHANCE] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-EDGE_ENHANCE_MORE] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-EMBOSS] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-FIND_EDGES] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-GaussianBlur] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-MaxFilter] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-MedianFilter] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-MinFilter] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-ModeFilter] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-SHARPEN] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-SMOOTH] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-SMOOTH_MORE] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-UnsharpMask] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply15] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply16] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply17] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply18] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply19] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply20] PASSED
Tests/test_image_filter.py::test_sanity[CMYK-filter_to_apply22] PASSED
Tests/test_image_filter.py::test_sanity[I-BLUR] PASSED
Tests/test_image_filter.py::test_sanity[I-CONTOUR] PASSED
Tests/test_image_filter.py::test_sanity[I-DETAIL] PASSED
Tests/test_image_filter.py::test_sanity[I-EDGE_ENHANCE] PASSED
Tests/test_image_filter.py::test_sanity[I-EDGE_ENHANCE_MORE] PASSED
Tests/test_image_filter.py::test_sanity[I-EMBOSS] PASSED
Tests/test_image_filter.py::test_sanity[I-FIND_EDGES] PASSED
Tests/test_image_filter.py::test_sanity[I-GaussianBlur] PASSED
Tests/test_image_filter.py::test_sanity[I-MaxFilter] PASSED
Tests/test_image_filter.py::test_sanity[I-MedianFilter] PASSED
Tests/test_image_filter.py::test_sanity[I-MinFilter] PASSED
Tests/test_image_filter.py::test_sanity[I-ModeFilter] PASSED
Tests/test_image_filter.py::test_sanity[I-SHARPEN] PASSED
Tests/test_image_filter.py::test_sanity[I-SMOOTH] PASSED
Tests/test_image_filter.py::test_sanity[I-SMOOTH_MORE] PASSED
Tests/test_image_filter.py::test_sanity[I-UnsharpMask] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply15] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply16] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply17] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply18] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply19] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply20] PASSED
Tests/test_image_filter.py::test_sanity[I-filter_to_apply22] PASSED
Tests/test_image_filter.py::test_sanity[L-BLUR] PASSED
Tests/test_image_filter.py::test_sanity[L-CONTOUR] PASSED
Tests/test_image_filter.py::test_sanity[L-DETAIL] PASSED
Tests/test_image_filter.py::test_sanity[L-EDGE_ENHANCE] PASSED
Tests/test_image_filter.py::test_sanity[L-EDGE_ENHANCE_MORE] PASSED
Tests/test_image_filter.py::test_sanity[L-EMBOSS] PASSED
Tests/test_image_filter.py::test_sanity[L-FIND_EDGES] PASSED
Tests/test_image_filter.py::test_sanity[L-GaussianBlur] PASSED
Tests/test_image_filter.py::test_sanity[L-MaxFilter] PASSED
Tests/test_image_filter.py::test_sanity[L-MedianFilter] PASSED
Tests/test_image_filter.py::test_sanity[L-MinFilter] PASSED
Tests/test_image_filter.py::test_sanity[L-ModeFilter] PASSED
Tests/test_image_filter.py::test_sanity[L-SHARPEN] PASSED
Tests/test_image_filter.py::test_sanity[L-SMOOTH] PASSED
Tests/test_image_filter.py::test_sanity[L-SMOOTH_MORE] PASSED
Tests/test_image_filter.py::test_sanity[L-UnsharpMask] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply15] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply16] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply17] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply18] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply19] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply20] PASSED
Tests/test_image_filter.py::test_sanity[L-filter_to_apply22] PASSED
Tests/test_image_filter.py::test_sanity[RGB-BLUR] PASSED
Tests/test_image_filter.py::test_sanity[RGB-CONTOUR] PASSED
Tests/test_image_filter.py::test_sanity[RGB-DETAIL] PASSED
Tests/test_image_filter.py::test_sanity[RGB-EDGE_ENHANCE] PASSED
Tests/test_image_filter.py::test_sanity[RGB-EDGE_ENHANCE_MORE] PASSED
Tests/test_image_filter.py::test_sanity[RGB-EMBOSS] PASSED
Tests/test_image_filter.py::test_sanity[RGB-FIND_EDGES] PASSED
Tests/test_image_filter.py::test_sanity[RGB-GaussianBlur] PASSED
Tests/test_image_filter.py::test_sanity[RGB-MaxFilter] PASSED
Tests/test_image_filter.py::test_sanity[RGB-MedianFilter] PASSED
Tests/test_image_filter.py::test_sanity[RGB-MinFilter] PASSED
Tests/test_image_filter.py::test_sanity[RGB-ModeFilter] PASSED
Tests/test_image_filter.py::test_sanity[RGB-SHARPEN] PASSED
Tests/test_image_filter.py::test_sanity[RGB-SMOOTH] PASSED
Tests/test_image_filter.py::test_sanity[RGB-SMOOTH_MORE] PASSED
Tests/test_image_filter.py::test_sanity[RGB-UnsharpMask] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply15] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply16] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply17] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply18] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply19] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply20] PASSED
Tests/test_image_filter.py::test_sanity[RGB-filter_to_apply22] PASSED
Tests/test_image_filter.py::test_sanity_error[CMYK] PASSED
Tests/test_image_filter.py::test_sanity_error[I] PASSED
Tests/test_image_filter.py::test_sanity_error[L] PASSED
Tests/test_image_filter.py::test_sanity_error[RGB] PASSED
Tests/test_image_frombytes.py::test_sanity[bytes] PASSED
Tests/test_image_frombytes.py::test_sanity[memoryview] PASSED
Tests/test_image_fromqimage.py::test_sanity_1 SKIPPED (Qt bindings a...)
Tests/test_image_fromqimage.py::test_sanity_l SKIPPED (Qt bindings a...)
Tests/test_image_fromqimage.py::test_sanity_p SKIPPED (Qt bindings a...)
Tests/test_image_fromqimage.py::test_sanity_rgb SKIPPED (Qt bindings...)
Tests/test_image_fromqimage.py::test_sanity_rgba SKIPPED (Qt binding...)
Tests/test_image_getbands.py::test_getbands PASSED
Tests/test_image_getbbox.py::test_bbox PASSED
Tests/test_image_getbbox.py::test_bbox_alpha_only_false[LA] PASSED
Tests/test_image_getbbox.py::test_bbox_alpha_only_false[La] PASSED
Tests/test_image_getbbox.py::test_bbox_alpha_only_false[PA] PASSED
Tests/test_image_getbbox.py::test_bbox_alpha_only_false[RGBA] PASSED
Tests/test_image_getbbox.py::test_bbox_alpha_only_false[RGBa] PASSED
Tests/test_image_getbbox.py::test_sanity PASSED
Tests/test_image_getcolors.py::test_getcolors PASSED
Tests/test_image_getcolors.py::test_pack PASSED
Tests/test_image_getdata.py::test_roundtrip PASSED
Tests/test_image_getdata.py::test_sanity PASSED
Tests/test_image_getextrema.py::test_extrema PASSED
Tests/test_image_getextrema.py::test_true_16 PASSED
Tests/test_image_getim.py::test_sanity PASSED
Tests/test_image_getpalette.py::test_palette PASSED
Tests/test_image_getpalette.py::test_palette_rawmode PASSED
Tests/test_image_getprojection.py::test_sanity PASSED
Tests/test_image_histogram.py::test_histogram PASSED
Tests/test_image_load.py::test_close PASSED
Tests/test_image_load.py::test_close_after_load PASSED
Tests/test_image_load.py::test_contextmanager PASSED
Tests/test_image_load.py::test_contextmanager_non_exclusive_fp PASSED
Tests/test_image_load.py::test_sanity PASSED
Tests/test_image_mode.py::test_properties[1-L-L-1-expected_band_names0] PASSED
Tests/test_image_mode.py::test_properties[CMYK-RGB-L-4-expected_band_names8] PASSED
Tests/test_image_mode.py::test_properties[F-L-F-1-expected_band_names4] PASSED
Tests/test_image_mode.py::test_properties[I-L-I-1-expected_band_names3] PASSED
Tests/test_image_mode.py::test_properties[L-L-L-1-expected_band_names1] PASSED
Tests/test_image_mode.py::test_properties[P-P-L-1-expected_band_names2] PASSED
Tests/test_image_mode.py::test_properties[RGB-RGB-L-3-expected_band_names5] PASSED
Tests/test_image_mode.py::test_properties[RGBA-RGB-L-4-expected_band_names6] PASSED
Tests/test_image_mode.py::test_properties[RGBX-RGB-L-4-expected_band_names7] PASSED
Tests/test_image_mode.py::test_properties[YCbCr-RGB-L-3-expected_band_names9] PASSED
Tests/test_image_mode.py::test_sanity PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_1[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_1[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_1[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_L[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_L[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_L[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBA[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBA[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBA[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBa[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBa[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_mask_RGBa[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_solid[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_solid[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_color_solid[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_different_sizes PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_1[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_1[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_1[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_LA[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_LA[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_LA[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_L[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_L[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_L[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBA[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBA[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBA[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBa[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBa[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_mask_RGBa[RGB] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_solid[L] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_solid[RGBA] PASSED
Tests/test_image_paste.py::TestImagingPaste::test_image_solid[RGB] PASSED
Tests/test_image_point.py::test_16bit_lut PASSED
Tests/test_image_point.py::test_f_lut PASSED
Tests/test_image_point.py::test_f_mode PASSED
Tests/test_image_point.py::test_sanity PASSED
Tests/test_image_putalpha.py::test_interface PASSED
Tests/test_image_putalpha.py::test_promote PASSED
Tests/test_image_putalpha.py::test_readonly PASSED
Tests/test_image_putdata.py::test_array_B PASSED
Tests/test_image_putdata.py::test_array_F PASSED
Tests/test_image_putdata.py::test_long_integers PASSED
Tests/test_image_putdata.py::test_mode_BGR[BGR;15] PASSED
Tests/test_image_putdata.py::test_mode_BGR[BGR;16] PASSED
Tests/test_image_putdata.py::test_mode_BGR[BGR;24] PASSED
Tests/test_image_putdata.py::test_mode_F PASSED
Tests/test_image_putdata.py::test_mode_i[I;16B] PASSED
Tests/test_image_putdata.py::test_mode_i[I;16L] PASSED
Tests/test_image_putdata.py::test_mode_i[I;16] PASSED
Tests/test_image_putdata.py::test_mode_i[I] PASSED
Tests/test_image_putdata.py::test_mode_with_L_with_float PASSED
Tests/test_image_putdata.py::test_not_flattened PASSED
Tests/test_image_putdata.py::test_pypy_performance PASSED
Tests/test_image_putdata.py::test_sanity PASSED
Tests/test_image_putpalette.py::test_empty_palette PASSED
Tests/test_image_putpalette.py::test_imagepalette PASSED
Tests/test_image_putpalette.py::test_putpalette PASSED
Tests/test_image_putpalette.py::test_putpalette_with_alpha_values PASSED
Tests/test_image_putpalette.py::test_rgba_palette[RGBA-palette0] PASSED
Tests/test_image_putpalette.py::test_rgba_palette[RGBAX-palette1] PASSED
Tests/test_image_putpalette.py::test_undefined_palette_index PASSED
Tests/test_image_quantize.py::test_colors PASSED
Tests/test_image_quantize.py::test_libimagequant_quantize SKIPPED (l...)
Tests/test_image_quantize.py::test_octree_quantize PASSED
Tests/test_image_quantize.py::test_palette[Quantize.FASTOCTREE-color2] PASSED
Tests/test_image_quantize.py::test_palette[Quantize.FASTOCTREE-color3] PASSED
Tests/test_image_quantize.py::test_palette[Quantize.MAXCOVERAGE-color1] PASSED
Tests/test_image_quantize.py::test_palette[Quantize.MEDIANCUT-color0] PASSED
Tests/test_image_quantize.py::test_quantize PASSED
Tests/test_image_quantize.py::test_quantize_dither_diff PASSED
Tests/test_image_quantize.py::test_quantize_kmeans[Quantize.MAXCOVERAGE] PASSED
Tests/test_image_quantize.py::test_quantize_kmeans[Quantize.MEDIANCUT] PASSED
Tests/test_image_quantize.py::test_quantize_no_dither PASSED
Tests/test_image_quantize.py::test_quantize_no_dither2 PASSED
Tests/test_image_quantize.py::test_rgba_quantize PASSED
Tests/test_image_quantize.py::test_sanity PASSED
Tests/test_image_quantize.py::test_small_palette PASSED
Tests/test_image_quantize.py::test_transparent_colors_equal PASSED
Tests/test_image_reduce.py::test_args_box[size0-expected0] PASSED
Tests/test_image_reduce.py::test_args_box[size1-expected1] PASSED
Tests/test_image_reduce.py::test_args_box_error[size1-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[size2-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[size3-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[size4-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[size5-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[size6-ValueError] PASSED
Tests/test_image_reduce.py::test_args_box_error[stri-TypeError] PASSED
Tests/test_image_reduce.py::test_args_factor[3-expected0] PASSED
Tests/test_image_reduce.py::test_args_factor[size1-expected1] PASSED
Tests/test_image_reduce.py::test_args_factor[size2-expected2] PASSED
Tests/test_image_reduce.py::test_args_factor_error[0-ValueError] PASSED
Tests/test_image_reduce.py::test_args_factor_error[2.0-TypeError] PASSED
Tests/test_image_reduce.py::test_args_factor_error[size2-ValueError] PASSED
Tests/test_image_reduce.py::test_jpeg2k PASSED
Tests/test_image_reduce.py::test_mode_F[1] PASSED
Tests/test_image_reduce.py::test_mode_F[2] PASSED
Tests/test_image_reduce.py::test_mode_F[3] PASSED
Tests/test_image_reduce.py::test_mode_F[4] PASSED
Tests/test_image_reduce.py::test_mode_F[5] PASSED
Tests/test_image_reduce.py::test_mode_F[6] PASSED
Tests/test_image_reduce.py::test_mode_F[factor10] PASSED
Tests/test_image_reduce.py::test_mode_F[factor11] PASSED
Tests/test_image_reduce.py::test_mode_F[factor12] PASSED
Tests/test_image_reduce.py::test_mode_F[factor13] PASSED
Tests/test_image_reduce.py::test_mode_F[factor14] PASSED
Tests/test_image_reduce.py::test_mode_F[factor15] PASSED
Tests/test_image_reduce.py::test_mode_F[factor16] PASSED
Tests/test_image_reduce.py::test_mode_F[factor17] PASSED
Tests/test_image_reduce.py::test_mode_F[factor18] PASSED
Tests/test_image_reduce.py::test_mode_F[factor6] PASSED
Tests/test_image_reduce.py::test_mode_F[factor7] PASSED
Tests/test_image_reduce.py::test_mode_F[factor8] PASSED
Tests/test_image_reduce.py::test_mode_F[factor9] PASSED
Tests/test_image_reduce.py::test_mode_I[1] PASSED
Tests/test_image_reduce.py::test_mode_I[2] PASSED
Tests/test_image_reduce.py::test_mode_I[3] PASSED
Tests/test_image_reduce.py::test_mode_I[4] PASSED
Tests/test_image_reduce.py::test_mode_I[5] PASSED
Tests/test_image_reduce.py::test_mode_I[6] PASSED
Tests/test_image_reduce.py::test_mode_I[factor10] PASSED
Tests/test_image_reduce.py::test_mode_I[factor11] PASSED
Tests/test_image_reduce.py::test_mode_I[factor12] PASSED
Tests/test_image_reduce.py::test_mode_I[factor13] PASSED
Tests/test_image_reduce.py::test_mode_I[factor14] PASSED
Tests/test_image_reduce.py::test_mode_I[factor15] PASSED
Tests/test_image_reduce.py::test_mode_I[factor16] PASSED
Tests/test_image_reduce.py::test_mode_I[factor17] PASSED
Tests/test_image_reduce.py::test_mode_I[factor18] PASSED
Tests/test_image_reduce.py::test_mode_I[factor6] PASSED
Tests/test_image_reduce.py::test_mode_I[factor7] PASSED
Tests/test_image_reduce.py::test_mode_I[factor8] PASSED
Tests/test_image_reduce.py::test_mode_I[factor9] PASSED
Tests/test_image_reduce.py::test_mode_LA[1] PASSED
Tests/test_image_reduce.py::test_mode_LA[2] PASSED
Tests/test_image_reduce.py::test_mode_LA[3] PASSED
Tests/test_image_reduce.py::test_mode_LA[4] PASSED
Tests/test_image_reduce.py::test_mode_LA[5] PASSED
Tests/test_image_reduce.py::test_mode_LA[6] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor10] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor11] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor12] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor13] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor14] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor15] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor16] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor17] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor18] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor6] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor7] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor8] PASSED
Tests/test_image_reduce.py::test_mode_LA[factor9] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[1] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[2] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[3] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[4] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[5] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[6] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor10] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor11] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor12] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor13] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor14] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor15] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor16] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor17] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor18] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor6] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor7] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor8] PASSED
Tests/test_image_reduce.py::test_mode_LA_opaque[factor9] PASSED
Tests/test_image_reduce.py::test_mode_L[1] PASSED
Tests/test_image_reduce.py::test_mode_L[2] PASSED
Tests/test_image_reduce.py::test_mode_L[3] PASSED
Tests/test_image_reduce.py::test_mode_L[4] PASSED
Tests/test_image_reduce.py::test_mode_L[5] PASSED
Tests/test_image_reduce.py::test_mode_L[6] PASSED
Tests/test_image_reduce.py::test_mode_L[factor10] PASSED
Tests/test_image_reduce.py::test_mode_L[factor11] PASSED
Tests/test_image_reduce.py::test_mode_L[factor12] PASSED
Tests/test_image_reduce.py::test_mode_L[factor13] PASSED
Tests/test_image_reduce.py::test_mode_L[factor14] PASSED
Tests/test_image_reduce.py::test_mode_L[factor15] PASSED
Tests/test_image_reduce.py::test_mode_L[factor16] PASSED
Tests/test_image_reduce.py::test_mode_L[factor17] PASSED
Tests/test_image_reduce.py::test_mode_L[factor18] PASSED
Tests/test_image_reduce.py::test_mode_L[factor6] PASSED
Tests/test_image_reduce.py::test_mode_L[factor7] PASSED
Tests/test_image_reduce.py::test_mode_L[factor8] PASSED
Tests/test_image_reduce.py::test_mode_L[factor9] PASSED
Tests/test_image_reduce.py::test_mode_La[1] PASSED
Tests/test_image_reduce.py::test_mode_La[2] PASSED
Tests/test_image_reduce.py::test_mode_La[3] PASSED
Tests/test_image_reduce.py::test_mode_La[4] PASSED
Tests/test_image_reduce.py::test_mode_La[5] PASSED
Tests/test_image_reduce.py::test_mode_La[6] PASSED
Tests/test_image_reduce.py::test_mode_La[factor10] PASSED
Tests/test_image_reduce.py::test_mode_La[factor11] PASSED
Tests/test_image_reduce.py::test_mode_La[factor12] PASSED
Tests/test_image_reduce.py::test_mode_La[factor13] PASSED
Tests/test_image_reduce.py::test_mode_La[factor14] PASSED
Tests/test_image_reduce.py::test_mode_La[factor15] PASSED
Tests/test_image_reduce.py::test_mode_La[factor16] PASSED
Tests/test_image_reduce.py::test_mode_La[factor17] PASSED
Tests/test_image_reduce.py::test_mode_La[factor18] PASSED
Tests/test_image_reduce.py::test_mode_La[factor6] PASSED
Tests/test_image_reduce.py::test_mode_La[factor7] PASSED
Tests/test_image_reduce.py::test_mode_La[factor8] PASSED
Tests/test_image_reduce.py::test_mode_La[factor9] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[1] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[2] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[3] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[4] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[5] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[6] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor10] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor11] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor12] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor13] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor14] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor15] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor16] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor17] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor18] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor6] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor7] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor8] PASSED
Tests/test_image_reduce.py::test_mode_RGBA[factor9] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[1] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[2] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[3] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[4] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[5] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[6] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor10] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor11] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor12] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor13] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor14] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor15] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor16] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor17] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor18] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor6] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor7] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor8] PASSED
Tests/test_image_reduce.py::test_mode_RGBA_opaque[factor9] PASSED
Tests/test_image_reduce.py::test_mode_RGB[1] PASSED
Tests/test_image_reduce.py::test_mode_RGB[2] PASSED
Tests/test_image_reduce.py::test_mode_RGB[3] PASSED
Tests/test_image_reduce.py::test_mode_RGB[4] PASSED
Tests/test_image_reduce.py::test_mode_RGB[5] PASSED
Tests/test_image_reduce.py::test_mode_RGB[6] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor10] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor11] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor12] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor13] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor14] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor15] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor16] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor17] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor18] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor6] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor7] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor8] PASSED
Tests/test_image_reduce.py::test_mode_RGB[factor9] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[1] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[2] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[3] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[4] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[5] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[6] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor10] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor11] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor12] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor13] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor14] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor15] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor16] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor17] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor18] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor6] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor7] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor8] PASSED
Tests/test_image_reduce.py::test_mode_RGBa[factor9] PASSED
Tests/test_image_reduce.py::test_unsupported_modes[1] PASSED
Tests/test_image_reduce.py::test_unsupported_modes[I;16] PASSED
Tests/test_image_reduce.py::test_unsupported_modes[P] PASSED
Tests/test_image_resample.py::TestCoreResampleAlphaCorrect::test_dirty_pixels_la PASSED
Tests/test_image_resample.py::TestCoreResampleAlphaCorrect::test_dirty_pixels_rgba PASSED
Tests/test_image_resample.py::TestCoreResampleAlphaCorrect::test_levels_la XFAIL
Tests/test_image_resample.py::TestCoreResampleAlphaCorrect::test_levels_rgba XFAIL
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-I] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-LA] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-L] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-RGBA] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-RGB] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.BILINEAR-] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-I] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-LA] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-L] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-RGBA] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-RGB] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_formats[Resampling.NEAREST-] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_no_passthrough PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_passthrough PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_skip_horizontal[Resampling.BICUBIC] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_skip_horizontal[Resampling.NEAREST] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_skip_vertical[Resampling.BICUBIC] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_skip_vertical[Resampling.NEAREST] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_subsample PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_tiles PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.BICUBIC] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.BILINEAR] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.BOX] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.HAMMING] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.LANCZOS] PASSED
Tests/test_image_resample.py::TestCoreResampleBox::test_wrong_arguments[Resampling.NEAREST] PASSED
Tests/test_image_resample.py::TestCoreResampleCoefficients::test_non_zero_coefficients PASSED
Tests/test_image_resample.py::TestCoreResampleCoefficients::test_reduce PASSED
Tests/test_image_resample.py::TestCoreResampleConsistency::test_32f PASSED
Tests/test_image_resample.py::TestCoreResampleConsistency::test_32i PASSED
Tests/test_image_resample.py::TestCoreResampleConsistency::test_8u PASSED
Tests/test_image_resample.py::TestCoreResamplePasses::test_both PASSED
Tests/test_image_resample.py::TestCoreResamplePasses::test_box_horizontal PASSED
Tests/test_image_resample.py::TestCoreResamplePasses::test_box_vertical PASSED
Tests/test_image_resample.py::TestCoreResamplePasses::test_horizontal PASSED
Tests/test_image_resample.py::TestCoreResamplePasses::test_vertical PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_box_filter_correct_range PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bicubic[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bicubic[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bicubic[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bicubic[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bilinear[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bilinear[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bilinear[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_bilinear[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_box[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_box[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_box[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_box[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_hamming[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_hamming[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_hamming[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_hamming[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_lanczos[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_lanczos[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_lanczos[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_enlarge_lanczos[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bicubic[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bicubic[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bicubic[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bicubic[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bilinear[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bilinear[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bilinear[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_bilinear[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_box[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_box[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_box[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_box[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_hamming[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_hamming[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_hamming[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_hamming[RGB] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_lanczos[L] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_lanczos[La] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_lanczos[RGBX] PASSED
Tests/test_image_resample.py::TestImagingCoreResampleAccuracy::test_reduce_lanczos[RGB] PASSED
Tests/test_image_resample.py::TestImagingResampleVulnerability::test_invalid_size PASSED
Tests/test_image_resample.py::TestImagingResampleVulnerability::test_modify_after_resizing PASSED
Tests/test_image_resample.py::TestImagingResampleVulnerability::test_overflow PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_bicubic[F] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_bicubic[I] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_bicubic[L] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_bicubic[RGB] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[1] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[BGR;15] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[BGR;16] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[I;16B] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[I;16L] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[I;16] PASSED
Tests/test_image_resize.py::TestImageResize::test_default_filter_nearest[P] PASSED
Tests/test_image_resize.py::TestImageResize::test_load_first PASSED
Tests/test_image_resize.py::TestImageResize::test_resize PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_convolution_modes PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_cross_platform PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[LA-channels_set2-Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGB-channels_set0-Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_endianness[RGBA-channels_set1-Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_filters[Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_enlarge_zero[Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[1] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[CMYK] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[F] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[I;16] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[I] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[L] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[P] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[RGBA] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[RGB] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_nearest_mode[YCbCr] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.BICUBIC] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.BILINEAR] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.BOX] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.HAMMING] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.LANCZOS] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_reduce_filters[Resampling.NEAREST] PASSED
Tests/test_image_resize.py::TestImagingCoreResize::test_unknown_filter PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_box_filter[box0-5.5] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_box_filter[box1-9.5] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_1[None-4] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_1[box1-4] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_1[box2-10] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_2[None-1.5] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_2[box1-1.5] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_2[box2-1] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_3[None-1] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_3[box1-1] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_3[box2-0.5] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_8[None] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_8[box1] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_8[box2] PASSED
Tests/test_image_resize.py::TestReducingGapResize::test_reducing_gap_values PASSED
Tests/test_image_rotate.py::test_alpha_rotate_no_fill PASSED
Tests/test_image_rotate.py::test_alpha_rotate_with_fill PASSED
Tests/test_image_rotate.py::test_angle[0] PASSED
Tests/test_image_rotate.py::test_angle[180] PASSED
Tests/test_image_rotate.py::test_angle[270] PASSED
Tests/test_image_rotate.py::test_angle[90] PASSED
Tests/test_image_rotate.py::test_center PASSED
Tests/test_image_rotate.py::test_center_0 PASSED
Tests/test_image_rotate.py::test_center_14 PASSED
Tests/test_image_rotate.py::test_fastpath_center PASSED
Tests/test_image_rotate.py::test_fastpath_translate PASSED
Tests/test_image_rotate.py::test_mode[1] PASSED
Tests/test_image_rotate.py::test_mode[F] PASSED
Tests/test_image_rotate.py::test_mode[I] PASSED
Tests/test_image_rotate.py::test_mode[L] PASSED
Tests/test_image_rotate.py::test_mode[P] PASSED
Tests/test_image_rotate.py::test_mode[RGB] PASSED
Tests/test_image_rotate.py::test_resample PASSED
Tests/test_image_rotate.py::test_rotate_no_fill PASSED
Tests/test_image_rotate.py::test_rotate_with_fill PASSED
Tests/test_image_rotate.py::test_translate PASSED
Tests/test_image_rotate.py::test_zero[0] PASSED
Tests/test_image_rotate.py::test_zero[180] PASSED
Tests/test_image_rotate.py::test_zero[270] PASSED
Tests/test_image_rotate.py::test_zero[45] PASSED
Tests/test_image_rotate.py::test_zero[90] PASSED
Tests/test_image_split.py::test_split PASSED
Tests/test_image_split.py::test_split_merge[1] PASSED
Tests/test_image_split.py::test_split_merge[CMYK] PASSED
Tests/test_image_split.py::test_split_merge[F] PASSED
Tests/test_image_split.py::test_split_merge[I] PASSED
Tests/test_image_split.py::test_split_merge[L] PASSED
Tests/test_image_split.py::test_split_merge[P] PASSED
Tests/test_image_split.py::test_split_merge[RGBA] PASSED
Tests/test_image_split.py::test_split_merge[RGB] PASSED
Tests/test_image_split.py::test_split_merge[YCbCr] PASSED
Tests/test_image_split.py::test_split_open PASSED
Tests/test_image_thumbnail.py::test_DCT_scaling_edges PASSED
Tests/test_image_thumbnail.py::test_aspect PASSED
Tests/test_image_thumbnail.py::test_division_by_zero PASSED
Tests/test_image_thumbnail.py::test_float PASSED
Tests/test_image_thumbnail.py::test_load_first PASSED
Tests/test_image_thumbnail.py::test_load_first_unless_jpeg PASSED
Tests/test_image_thumbnail.py::test_no_resize PASSED
Tests/test_image_thumbnail.py::test_reducing_gap_for_DCT_scaling PASSED
Tests/test_image_thumbnail.py::test_reducing_gap_values PASSED
Tests/test_image_thumbnail.py::test_sanity PASSED
Tests/test_image_tobitmap.py::test_sanity PASSED
Tests/test_image_tobytes.py::test_sanity PASSED
Tests/test_image_transform.py::TestImageTransform::test_alpha_premult_resize PASSED
Tests/test_image_transform.py::TestImageTransform::test_alpha_premult_transform PASSED
Tests/test_image_transform.py::TestImageTransform::test_blank_fill PASSED
Tests/test_image_transform.py::TestImageTransform::test_extent PASSED
Tests/test_image_transform.py::TestImageTransform::test_fill[LA-expected_pixel2] PASSED
Tests/test_image_transform.py::TestImageTransform::test_fill[RGB-expected_pixel0] PASSED
Tests/test_image_transform.py::TestImageTransform::test_fill[RGBA-expected_pixel1] PASSED
Tests/test_image_transform.py::TestImageTransform::test_info PASSED
Tests/test_image_transform.py::TestImageTransform::test_mesh PASSED
Tests/test_image_transform.py::TestImageTransform::test_missing_method_data PASSED
Tests/test_image_transform.py::TestImageTransform::test_nearest_resize[LA] PASSED
Tests/test_image_transform.py::TestImageTransform::test_nearest_resize[RGBA] PASSED
Tests/test_image_transform.py::TestImageTransform::test_nearest_transform[LA] PASSED
Tests/test_image_transform.py::TestImageTransform::test_nearest_transform[RGBA] PASSED
Tests/test_image_transform.py::TestImageTransform::test_palette PASSED
Tests/test_image_transform.py::TestImageTransform::test_quad PASSED
Tests/test_image_transform.py::TestImageTransform::test_sanity PASSED
Tests/test_image_transform.py::TestImageTransform::test_unknown_resampling_filter[Resampling.BOX] PASSED
Tests/test_image_transform.py::TestImageTransform::test_unknown_resampling_filter[unknown] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BICUBIC-1-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BICUBIC-1-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BICUBIC-1-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BICUBIC-1-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BICUBIC-1-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BILINEAR-2-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BILINEAR-2-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BILINEAR-2-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BILINEAR-2-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.BILINEAR-2-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.NEAREST-0-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.NEAREST-0-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.NEAREST-0-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.NEAREST-0-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_resize[Resampling.NEAREST-0-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_rotate[0-None] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_rotate[180-Transpose.ROTATE_180] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_rotate[270-Transpose.ROTATE_270] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_rotate[90-Transpose.ROTATE_90] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BICUBIC-1-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BICUBIC-1-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BICUBIC-1-50-50-0] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BILINEAR-1.5-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BILINEAR-1.5-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.BILINEAR-1.5-50-50-0] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.NEAREST-0-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.NEAREST-0-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformAffine::test_translate[Resampling.NEAREST-0-50-50-0] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BICUBIC-1-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BICUBIC-1-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BICUBIC-1-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BICUBIC-1-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BICUBIC-1-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BILINEAR-2-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BILINEAR-2-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BILINEAR-2-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BILINEAR-2-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.BILINEAR-2-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.NEAREST-0-1.1-6.9] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.NEAREST-0-1.5-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.NEAREST-0-2.0-5.5] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.NEAREST-0-2.3-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_resize[Resampling.NEAREST-0-2.5-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_rotate[0-None] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_rotate[180-Transpose.ROTATE_180] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_rotate[270-Transpose.ROTATE_270] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_rotate[90-Transpose.ROTATE_90] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BICUBIC-1-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BICUBIC-1-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BICUBIC-1-50-50-0] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BILINEAR-1.5-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BILINEAR-1.5-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.BILINEAR-1.5-50-50-0] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.NEAREST-0-0.1-0-3.7] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.NEAREST-0-0.6-0-9.1] PASSED
Tests/test_image_transform.py::TestImageTransformPerspective::test_translate[Resampling.NEAREST-0-50-50-0] PASSED
Tests/test_image_transpose.py::test_flip_left_right[I;16B] PASSED
Tests/test_image_transpose.py::test_flip_left_right[I;16L] PASSED
Tests/test_image_transpose.py::test_flip_left_right[I;16] PASSED
Tests/test_image_transpose.py::test_flip_left_right[L] PASSED
Tests/test_image_transpose.py::test_flip_left_right[RGB] PASSED
Tests/test_image_transpose.py::test_flip_top_bottom[I;16B] PASSED
Tests/test_image_transpose.py::test_flip_top_bottom[I;16L] PASSED
Tests/test_image_transpose.py::test_flip_top_bottom[I;16] PASSED
Tests/test_image_transpose.py::test_flip_top_bottom[L] PASSED
Tests/test_image_transpose.py::test_flip_top_bottom[RGB] PASSED
Tests/test_image_transpose.py::test_rotate_180[I;16B] PASSED
Tests/test_image_transpose.py::test_rotate_180[I;16L] PASSED
Tests/test_image_transpose.py::test_rotate_180[I;16] PASSED
Tests/test_image_transpose.py::test_rotate_180[L] PASSED
Tests/test_image_transpose.py::test_rotate_180[RGB] PASSED
Tests/test_image_transpose.py::test_rotate_270[I;16B] PASSED
Tests/test_image_transpose.py::test_rotate_270[I;16L] PASSED
Tests/test_image_transpose.py::test_rotate_270[I;16] PASSED
Tests/test_image_transpose.py::test_rotate_270[L] PASSED
Tests/test_image_transpose.py::test_rotate_270[RGB] PASSED
Tests/test_image_transpose.py::test_rotate_90[I;16B] PASSED
Tests/test_image_transpose.py::test_rotate_90[I;16L] PASSED
Tests/test_image_transpose.py::test_rotate_90[I;16] PASSED
Tests/test_image_transpose.py::test_rotate_90[L] PASSED
Tests/test_image_transpose.py::test_rotate_90[RGB] PASSED
Tests/test_image_transpose.py::test_roundtrip[I;16B] PASSED
Tests/test_image_transpose.py::test_roundtrip[I;16L] PASSED
Tests/test_image_transpose.py::test_roundtrip[I;16] PASSED
Tests/test_image_transpose.py::test_roundtrip[L] PASSED
Tests/test_image_transpose.py::test_roundtrip[RGB] PASSED
Tests/test_image_transpose.py::test_transpose[I;16B] PASSED
Tests/test_image_transpose.py::test_transpose[I;16L] PASSED
Tests/test_image_transpose.py::test_transpose[I;16] PASSED
Tests/test_image_transpose.py::test_transpose[L] PASSED
Tests/test_image_transpose.py::test_transpose[RGB] PASSED
Tests/test_image_transpose.py::test_tranverse[I;16B] PASSED
Tests/test_image_transpose.py::test_tranverse[I;16L] PASSED
Tests/test_image_transpose.py::test_tranverse[I;16] PASSED
Tests/test_image_transpose.py::test_tranverse[L] PASSED
Tests/test_image_transpose.py::test_tranverse[RGB] PASSED
Tests/test_imagechops.py::test_add PASSED
Tests/test_imagechops.py::test_add_clip PASSED
Tests/test_imagechops.py::test_add_modulo PASSED
Tests/test_imagechops.py::test_add_modulo_no_clip PASSED
Tests/test_imagechops.py::test_add_scale_offset PASSED
Tests/test_imagechops.py::test_blend PASSED
Tests/test_imagechops.py::test_constant PASSED
Tests/test_imagechops.py::test_darker_image PASSED
Tests/test_imagechops.py::test_darker_pixel PASSED
Tests/test_imagechops.py::test_difference PASSED
Tests/test_imagechops.py::test_difference_pixel PASSED
Tests/test_imagechops.py::test_duplicate PASSED
Tests/test_imagechops.py::test_hard_light PASSED
Tests/test_imagechops.py::test_invert PASSED
Tests/test_imagechops.py::test_lighter_image PASSED
Tests/test_imagechops.py::test_lighter_pixel PASSED
Tests/test_imagechops.py::test_logical PASSED
Tests/test_imagechops.py::test_multiply_black PASSED
Tests/test_imagechops.py::test_multiply_green PASSED
Tests/test_imagechops.py::test_multiply_white PASSED
Tests/test_imagechops.py::test_offset PASSED
Tests/test_imagechops.py::test_overlay PASSED
Tests/test_imagechops.py::test_sanity PASSED
Tests/test_imagechops.py::test_screen PASSED
Tests/test_imagechops.py::test_soft_light PASSED
Tests/test_imagechops.py::test_subtract PASSED
Tests/test_imagechops.py::test_subtract_clip PASSED
Tests/test_imagechops.py::test_subtract_modulo PASSED
Tests/test_imagechops.py::test_subtract_modulo_no_clip PASSED
Tests/test_imagechops.py::test_subtract_scale_offset PASSED
Tests/test_imagecms.py::test_auxiliary_channels_isolated PASSED
Tests/test_imagecms.py::test_copyright PASSED
Tests/test_imagecms.py::test_deprecation PASSED
Tests/test_imagecms.py::test_description PASSED
Tests/test_imagecms.py::test_display_profile PASSED
Tests/test_imagecms.py::test_exceptions PASSED
Tests/test_imagecms.py::test_extended_information PASSED
Tests/test_imagecms.py::test_extensions PASSED
Tests/test_imagecms.py::test_flags PASSED
Tests/test_imagecms.py::test_info PASSED
Tests/test_imagecms.py::test_intent PASSED
Tests/test_imagecms.py::test_invalid_color_temperature PASSED
Tests/test_imagecms.py::test_invalid_flag[-1] PASSED
Tests/test_imagecms.py::test_invalid_flag[my string] PASSED
Tests/test_imagecms.py::test_lab_color PASSED
Tests/test_imagecms.py::test_lab_color_profile PASSED
Tests/test_imagecms.py::test_lab_roundtrip PASSED
Tests/test_imagecms.py::test_lab_srgb PASSED
Tests/test_imagecms.py::test_long_modes PASSED
Tests/test_imagecms.py::test_manufacturer PASSED
Tests/test_imagecms.py::test_model PASSED
Tests/test_imagecms.py::test_name PASSED
Tests/test_imagecms.py::test_non_ascii_path PASSED
Tests/test_imagecms.py::test_preserve_auxiliary_channels_rgba PASSED
Tests/test_imagecms.py::test_preserve_auxiliary_channels_rgba_in_place PASSED
Tests/test_imagecms.py::test_preserve_auxiliary_channels_rgbx PASSED
Tests/test_imagecms.py::test_preserve_auxiliary_channels_rgbx_in_place PASSED
Tests/test_imagecms.py::test_profile_object PASSED
Tests/test_imagecms.py::test_profile_tobytes PASSED
Tests/test_imagecms.py::test_profile_typesafety PASSED
Tests/test_imagecms.py::test_rgb_lab[RGBA] PASSED
Tests/test_imagecms.py::test_rgb_lab[RGBX] PASSED
Tests/test_imagecms.py::test_rgb_lab[RGB] PASSED
Tests/test_imagecms.py::test_sanity PASSED
Tests/test_imagecms.py::test_simple_lab PASSED
Tests/test_imagecms.py::test_transform_typesafety PASSED
Tests/test_imagecms.py::test_unsupported_color_space PASSED
Tests/test_imagecolor.py::test_color_hsv PASSED
Tests/test_imagecolor.py::test_color_too_long PASSED
Tests/test_imagecolor.py::test_colormap PASSED
Tests/test_imagecolor.py::test_functions PASSED
Tests/test_imagecolor.py::test_hash PASSED
Tests/test_imagecolor.py::test_rounding_errors PASSED
Tests/test_imagedraw.py::test_arc[0-180-bbox0] PASSED
Tests/test_imagedraw.py::test_arc[0-180-bbox1] PASSED
Tests/test_imagedraw.py::test_arc[0-180-bbox2] PASSED
Tests/test_imagedraw.py::test_arc[0-180-bbox3] PASSED
Tests/test_imagedraw.py::test_arc[0.5-180.4-bbox0] PASSED
Tests/test_imagedraw.py::test_arc[0.5-180.4-bbox1] PASSED
Tests/test_imagedraw.py::test_arc[0.5-180.4-bbox2] PASSED
Tests/test_imagedraw.py::test_arc[0.5-180.4-bbox3] PASSED
Tests/test_imagedraw.py::test_arc_end_le_start[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_end_le_start[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_end_le_start[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_end_le_start[bbox3] PASSED
Tests/test_imagedraw.py::test_arc_high PASSED
Tests/test_imagedraw.py::test_arc_no_loops[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_no_loops[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_no_loops[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_no_loops[bbox3] PASSED
Tests/test_imagedraw.py::test_arc_width[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_width[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_width[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_width[bbox3] PASSED
Tests/test_imagedraw.py::test_arc_width_fill[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_width_fill[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_width_fill[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_width_fill[bbox3] PASSED
Tests/test_imagedraw.py::test_arc_width_non_whole_angle[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_width_non_whole_angle[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_width_non_whole_angle[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_width_non_whole_angle[bbox3] PASSED
Tests/test_imagedraw.py::test_arc_width_pieslice_large[bbox0] PASSED
Tests/test_imagedraw.py::test_arc_width_pieslice_large[bbox1] PASSED
Tests/test_imagedraw.py::test_arc_width_pieslice_large[bbox2] PASSED
Tests/test_imagedraw.py::test_arc_width_pieslice_large[bbox3] PASSED
Tests/test_imagedraw.py::test_big_rectangle PASSED
Tests/test_imagedraw.py::test_bitmap PASSED
Tests/test_imagedraw.py::test_chord[bbox0-L] PASSED
Tests/test_imagedraw.py::test_chord[bbox0-RGB] PASSED
Tests/test_imagedraw.py::test_chord[bbox1-L] PASSED
Tests/test_imagedraw.py::test_chord[bbox1-RGB] PASSED
Tests/test_imagedraw.py::test_chord[bbox2-L] PASSED
Tests/test_imagedraw.py::test_chord[bbox2-RGB] PASSED
Tests/test_imagedraw.py::test_chord[bbox3-L] PASSED
Tests/test_imagedraw.py::test_chord[bbox3-RGB] PASSED
Tests/test_imagedraw.py::test_chord_too_fat PASSED
Tests/test_imagedraw.py::test_chord_width[bbox0] PASSED
Tests/test_imagedraw.py::test_chord_width[bbox1] PASSED
Tests/test_imagedraw.py::test_chord_width[bbox2] PASSED
Tests/test_imagedraw.py::test_chord_width[bbox3] PASSED
Tests/test_imagedraw.py::test_chord_width_fill[bbox0] PASSED
Tests/test_imagedraw.py::test_chord_width_fill[bbox1] PASSED
Tests/test_imagedraw.py::test_chord_width_fill[bbox2] PASSED
Tests/test_imagedraw.py::test_chord_width_fill[bbox3] PASSED
Tests/test_imagedraw.py::test_chord_zero_width[bbox0] PASSED
Tests/test_imagedraw.py::test_chord_zero_width[bbox1] PASSED
Tests/test_imagedraw.py::test_chord_zero_width[bbox2] PASSED
Tests/test_imagedraw.py::test_chord_zero_width[bbox3] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices[3-expected_vertices0] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices[4-expected_vertices1] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices[5-expected_vertices2] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices[6-expected_vertices3] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[1-bounding_circle1-0-ValueError-n_sides should be an int > 2] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-50-0-TypeError-bounding_circle should be a sequence] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-bounding_circle3-0-ValueError-bounding_circle should contain 2D coordinates and a radius (e.g. (x, y, r) or ((x, y), r) )] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-bounding_circle4-0-ValueError-bounding_circle should only contain numeric data] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-bounding_circle5-0-ValueError-bounding_circle centre should contain 2D coordinates (e.g. (x, y))] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-bounding_circle6-0-ValueError-bounding_circle radius should be > 0] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[3-bounding_circle7-0-ValueError-rotation should be an int or float] PASSED
Tests/test_imagedraw.py::test_compute_regular_polygon_vertices_input_error_handling[None-bounding_circle0-0-TypeError-n_sides should be an int] PASSED
Tests/test_imagedraw.py::test_continuous_horizontal_edges_polygon PASSED
Tests/test_imagedraw.py::test_default_font_size PASSED
Tests/test_imagedraw.py::test_discontiguous_corners_polygon PASSED
Tests/test_imagedraw.py::test_draw_regular_polygon[3-triangle_width-args3] PASSED
Tests/test_imagedraw.py::test_draw_regular_polygon[4-square-args0] PASSED
Tests/test_imagedraw.py::test_draw_regular_polygon[4-square_rotate_45-args2] PASSED
Tests/test_imagedraw.py::test_draw_regular_polygon[8-regular_octagon-args1] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox0-L] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox0-RGB] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox1-L] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox1-RGB] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox2-L] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox2-RGB] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox3-L] PASSED
Tests/test_imagedraw.py::test_ellipse[bbox3-RGB] PASSED
Tests/test_imagedraw.py::test_ellipse_edge PASSED
Tests/test_imagedraw.py::test_ellipse_symmetric PASSED
Tests/test_imagedraw.py::test_ellipse_translucent[bbox0] PASSED
Tests/test_imagedraw.py::test_ellipse_translucent[bbox1] PASSED
Tests/test_imagedraw.py::test_ellipse_translucent[bbox2] PASSED
Tests/test_imagedraw.py::test_ellipse_translucent[bbox3] PASSED
Tests/test_imagedraw.py::test_ellipse_various_sizes PASSED
Tests/test_imagedraw.py::test_ellipse_various_sizes_filled PASSED
Tests/test_imagedraw.py::test_ellipse_width[bbox0] PASSED
Tests/test_imagedraw.py::test_ellipse_width[bbox1] PASSED
Tests/test_imagedraw.py::test_ellipse_width[bbox2] PASSED
Tests/test_imagedraw.py::test_ellipse_width[bbox3] PASSED
Tests/test_imagedraw.py::test_ellipse_width_fill[bbox0] PASSED
Tests/test_imagedraw.py::test_ellipse_width_fill[bbox1] PASSED
Tests/test_imagedraw.py::test_ellipse_width_fill[bbox2] PASSED
Tests/test_imagedraw.py::test_ellipse_width_fill[bbox3] PASSED
Tests/test_imagedraw.py::test_ellipse_width_large PASSED
Tests/test_imagedraw.py::test_ellipse_zero_width[bbox0] PASSED
Tests/test_imagedraw.py::test_ellipse_zero_width[bbox1] PASSED
Tests/test_imagedraw.py::test_ellipse_zero_width[bbox2] PASSED
Tests/test_imagedraw.py::test_ellipse_zero_width[bbox3] PASSED
Tests/test_imagedraw.py::test_floodfill[bbox0] PASSED
Tests/test_imagedraw.py::test_floodfill[bbox1] PASSED
Tests/test_imagedraw.py::test_floodfill[bbox2] PASSED
Tests/test_imagedraw.py::test_floodfill[bbox3] PASSED
Tests/test_imagedraw.py::test_floodfill_border[bbox0] PASSED
Tests/test_imagedraw.py::test_floodfill_border[bbox1] PASSED
Tests/test_imagedraw.py::test_floodfill_border[bbox2] PASSED
Tests/test_imagedraw.py::test_floodfill_border[bbox3] PASSED
Tests/test_imagedraw.py::test_floodfill_not_negative PASSED
Tests/test_imagedraw.py::test_floodfill_thresh[bbox0] PASSED
Tests/test_imagedraw.py::test_floodfill_thresh[bbox1] PASSED
Tests/test_imagedraw.py::test_floodfill_thresh[bbox2] PASSED
Tests/test_imagedraw.py::test_floodfill_thresh[bbox3] PASSED
Tests/test_imagedraw.py::test_incorrectly_ordered_coordinates[xy0] PASSED
Tests/test_imagedraw.py::test_incorrectly_ordered_coordinates[xy1] PASSED
Tests/test_imagedraw.py::test_line[points0] PASSED
Tests/test_imagedraw.py::test_line[points1] PASSED
Tests/test_imagedraw.py::test_line[points2] PASSED
Tests/test_imagedraw.py::test_line[points3] PASSED
Tests/test_imagedraw.py::test_line_h_s1_w2 SKIPPED (failing)
Tests/test_imagedraw.py::test_line_horizontal PASSED
Tests/test_imagedraw.py::test_line_joint[xy0] PASSED
Tests/test_imagedraw.py::test_line_joint[xy1] PASSED
Tests/test_imagedraw.py::test_line_joint[xy2] PASSED
Tests/test_imagedraw.py::test_line_oblique_45 PASSED
Tests/test_imagedraw.py::test_line_vertical PASSED
Tests/test_imagedraw.py::test_mode_mismatch PASSED
Tests/test_imagedraw.py::test_pieslice[-92-46-bbox0] PASSED
Tests/test_imagedraw.py::test_pieslice[-92-46-bbox1] PASSED
Tests/test_imagedraw.py::test_pieslice[-92-46-bbox2] PASSED
Tests/test_imagedraw.py::test_pieslice[-92-46-bbox3] PASSED
Tests/test_imagedraw.py::test_pieslice[-92.2-46.2-bbox0] PASSED
Tests/test_imagedraw.py::test_pieslice[-92.2-46.2-bbox1] PASSED
Tests/test_imagedraw.py::test_pieslice[-92.2-46.2-bbox2] PASSED
Tests/test_imagedraw.py::test_pieslice[-92.2-46.2-bbox3] PASSED
Tests/test_imagedraw.py::test_pieslice_no_spikes PASSED
Tests/test_imagedraw.py::test_pieslice_wide PASSED
Tests/test_imagedraw.py::test_pieslice_width[bbox0] PASSED
Tests/test_imagedraw.py::test_pieslice_width[bbox1] PASSED
Tests/test_imagedraw.py::test_pieslice_width[bbox2] PASSED
Tests/test_imagedraw.py::test_pieslice_width[bbox3] PASSED
Tests/test_imagedraw.py::test_pieslice_width_fill[bbox0] PASSED
Tests/test_imagedraw.py::test_pieslice_width_fill[bbox1] PASSED
Tests/test_imagedraw.py::test_pieslice_width_fill[bbox2] PASSED
Tests/test_imagedraw.py::test_pieslice_width_fill[bbox3] PASSED
Tests/test_imagedraw.py::test_pieslice_zero_width[bbox0] PASSED
Tests/test_imagedraw.py::test_pieslice_zero_width[bbox1] PASSED
Tests/test_imagedraw.py::test_pieslice_zero_width[bbox2] PASSED
Tests/test_imagedraw.py::test_pieslice_zero_width[bbox3] PASSED
Tests/test_imagedraw.py::test_point[points0] PASSED
Tests/test_imagedraw.py::test_point[points1] PASSED
Tests/test_imagedraw.py::test_point[points2] PASSED
Tests/test_imagedraw.py::test_point[points3] PASSED
Tests/test_imagedraw.py::test_point_I16 PASSED
Tests/test_imagedraw.py::test_polygon2 PASSED
Tests/test_imagedraw.py::test_polygon[points0] PASSED
Tests/test_imagedraw.py::test_polygon[points1] PASSED
Tests/test_imagedraw.py::test_polygon[points2] PASSED
Tests/test_imagedraw.py::test_polygon[points3] PASSED
Tests/test_imagedraw.py::test_polygon_1px_high PASSED
Tests/test_imagedraw.py::test_polygon_1px_high_translucent PASSED
Tests/test_imagedraw.py::test_polygon_kite[kite_points0-L] PASSED
Tests/test_imagedraw.py::test_polygon_kite[kite_points0-RGB] PASSED
Tests/test_imagedraw.py::test_polygon_kite[kite_points1-L] PASSED
Tests/test_imagedraw.py::test_polygon_kite[kite_points1-RGB] PASSED
Tests/test_imagedraw.py::test_polygon_translucent PASSED
Tests/test_imagedraw.py::test_rectangle[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle[bbox3] PASSED
Tests/test_imagedraw.py::test_rectangle_I16[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle_I16[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle_I16[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle_I16[bbox3] PASSED
Tests/test_imagedraw.py::test_rectangle_translucent_outline[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle_translucent_outline[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle_translucent_outline[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle_translucent_outline[bbox3] PASSED
Tests/test_imagedraw.py::test_rectangle_width[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle_width[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle_width[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle_width[bbox3] PASSED
Tests/test_imagedraw.py::test_rectangle_width_fill[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle_width_fill[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle_width_fill[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle_width_fill[bbox3] PASSED
Tests/test_imagedraw.py::test_rectangle_zero_width[bbox0] PASSED
Tests/test_imagedraw.py::test_rectangle_zero_width[bbox1] PASSED
Tests/test_imagedraw.py::test_rectangle_zero_width[bbox2] PASSED
Tests/test_imagedraw.py::test_rectangle_zero_width[bbox3] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle[xy0] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle[xy1] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle[xy2] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-False-False-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-False-False-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-False-True-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-False-True-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-True-False-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-True-False-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-True-True-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[False-True-True-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-False-False-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-False-False-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-False-True-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-False-True-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-True-False-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-True-False-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-True-True-False] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_corners[True-True-True-True] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_non_integer_radius[xy0-30.5-given] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_non_integer_radius[xy1-90-width] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_non_integer_radius[xy2-85-height] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy0-x] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy1-x_odd] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy2-x_odd] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy3-y] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy4-y_odd] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy5-y_odd] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_translucent[xy6-both] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_zero_radius[bbox0] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_zero_radius[bbox1] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_zero_radius[bbox2] PASSED
Tests/test_imagedraw.py::test_rounded_rectangle_zero_radius[bbox3] PASSED
Tests/test_imagedraw.py::test_same_color_outline[bbox0] PASSED
Tests/test_imagedraw.py::test_same_color_outline[bbox1] PASSED
Tests/test_imagedraw.py::test_same_color_outline[bbox2] PASSED
Tests/test_imagedraw.py::test_same_color_outline[bbox3] PASSED
Tests/test_imagedraw.py::test_sanity PASSED
Tests/test_imagedraw.py::test_setting_default_font PASSED
Tests/test_imagedraw.py::test_shape1 PASSED
Tests/test_imagedraw.py::test_shape2 PASSED
Tests/test_imagedraw.py::test_split_word PASSED
Tests/test_imagedraw.py::test_square PASSED
Tests/test_imagedraw.py::test_stroke PASSED
Tests/test_imagedraw.py::test_stroke_descender PASSED
Tests/test_imagedraw.py::test_stroke_multiline PASSED
Tests/test_imagedraw.py::test_textbbox_stroke PASSED
Tests/test_imagedraw.py::test_textsize_empty_string PASSED
Tests/test_imagedraw.py::test_transform PASSED
Tests/test_imagedraw.py::test_triangle_right PASSED
Tests/test_imagedraw.py::test_triangle_right_width[None-width_no_fill] PASSED
Tests/test_imagedraw.py::test_triangle_right_width[fill0-width] PASSED
Tests/test_imagedraw.py::test_valueerror PASSED
Tests/test_imagedraw.py::test_wide_line_dot PASSED
Tests/test_imagedraw.py::test_wide_line_larger_than_int PASSED
Tests/test_imagedraw2.py::test_big_rectangle PASSED
Tests/test_imagedraw2.py::test_ellipse[bbox0] PASSED
Tests/test_imagedraw2.py::test_ellipse[bbox1] PASSED
Tests/test_imagedraw2.py::test_ellipse[bbox2] PASSED
Tests/test_imagedraw2.py::test_ellipse[bbox3] PASSED
Tests/test_imagedraw2.py::test_ellipse_edge PASSED
Tests/test_imagedraw2.py::test_flush PASSED
Tests/test_imagedraw2.py::test_line[points0] PASSED
Tests/test_imagedraw2.py::test_line[points1] PASSED
Tests/test_imagedraw2.py::test_line[points2] PASSED
Tests/test_imagedraw2.py::test_line[points3] PASSED
Tests/test_imagedraw2.py::test_line_pen_as_brush[points0] PASSED
Tests/test_imagedraw2.py::test_line_pen_as_brush[points1] PASSED
Tests/test_imagedraw2.py::test_line_pen_as_brush[points2] PASSED
Tests/test_imagedraw2.py::test_line_pen_as_brush[points3] PASSED
Tests/test_imagedraw2.py::test_polygon[points0] PASSED
Tests/test_imagedraw2.py::test_polygon[points1] PASSED
Tests/test_imagedraw2.py::test_polygon[points2] PASSED
Tests/test_imagedraw2.py::test_polygon[points3] PASSED
Tests/test_imagedraw2.py::test_rectangle[bbox0] PASSED
Tests/test_imagedraw2.py::test_rectangle[bbox1] PASSED
Tests/test_imagedraw2.py::test_rectangle[bbox2] PASSED
Tests/test_imagedraw2.py::test_rectangle[bbox3] PASSED
Tests/test_imagedraw2.py::test_sanity PASSED
Tests/test_imagedraw2.py::test_text PASSED
Tests/test_imagedraw2.py::test_textbbox PASSED
Tests/test_imagedraw2.py::test_textsize_empty_string PASSED
Tests/test_imageenhance.py::test_alpha[Brightness] PASSED
Tests/test_imageenhance.py::test_alpha[Color] PASSED
Tests/test_imageenhance.py::test_alpha[Contrast] PASSED
Tests/test_imageenhance.py::test_alpha[Sharpness] PASSED
Tests/test_imageenhance.py::test_crash PASSED
Tests/test_imageenhance.py::test_sanity PASSED
Tests/test_imagefile.py::TestImageFile::test_broken_datastream_with_errors PASSED
Tests/test_imagefile.py::TestImageFile::test_broken_datastream_without_errors PASSED
Tests/test_imagefile.py::TestImageFile::test_ico PASSED
Tests/test_imagefile.py::TestImageFile::test_incremental_webp PASSED
Tests/test_imagefile.py::TestImageFile::test_negative_stride PASSED
Tests/test_imagefile.py::TestImageFile::test_no_format PASSED
Tests/test_imagefile.py::TestImageFile::test_oserror PASSED
Tests/test_imagefile.py::TestImageFile::test_parser PASSED
Tests/test_imagefile.py::TestImageFile::test_raise_oserror PASSED
Tests/test_imagefile.py::TestImageFile::test_raise_typeerror PASSED
Tests/test_imagefile.py::TestImageFile::test_safeblock PASSED
Tests/test_imagefile.py::TestImageFile::test_truncated PASSED
Tests/test_imagefile.py::TestImageFile::test_truncated_with_errors PASSED
Tests/test_imagefile.py::TestImageFile::test_truncated_without_errors PASSED
Tests/test_imagefile.py::TestPyDecoder::test_decode PASSED
Tests/test_imagefile.py::TestPyDecoder::test_extents_none PASSED
Tests/test_imagefile.py::TestPyDecoder::test_negsize PASSED
Tests/test_imagefile.py::TestPyDecoder::test_oversize PASSED
Tests/test_imagefile.py::TestPyDecoder::test_setimage PASSED
Tests/test_imagefile.py::TestPyEncoder::test_encode PASSED
Tests/test_imagefile.py::TestPyEncoder::test_extents_none PASSED
Tests/test_imagefile.py::TestPyEncoder::test_negsize PASSED
Tests/test_imagefile.py::TestPyEncoder::test_oversize PASSED
Tests/test_imagefile.py::TestPyEncoder::test_setimage PASSED
Tests/test_imagefile.py::TestPyEncoder::test_zero_height PASSED
Tests/test_imagefont.py::test_I16[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_I16[Layout.RAQM] SKIPPED (raqm not ava...)
Tests/test_imagefont.py::test_anchor[Layout.BASIC-ls] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-ma] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-mb] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-md] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-mm] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-ms] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-mt] PASSED
Tests/test_imagefont.py::test_anchor[Layout.BASIC-rs] PASSED
Tests/test_imagefont.py::test_anchor[Layout.RAQM-ls] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-ma] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-mb] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-md] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-mm] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-ms] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-mt] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor[Layout.RAQM-rs] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_anchor_invalid[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_anchor_invalid[Layout.RAQM] SKIPPED (r...)
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-lm-center] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-lm-left] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-lm-right] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-ma-center] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-md-center] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-mm-center] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-mm-left] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-mm-right] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-rm-center] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-rm-left] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.BASIC-rm-right] PASSED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-lm-center] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-lm-left] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-lm-right] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-ma-center] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-md-center] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-mm-center] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-mm-left] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-mm-right] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-rm-center] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-rm-left] SKIPPED
Tests/test_imagefont.py::test_anchor_multiline[Layout.RAQM-rm-right] SKIPPED
Tests/test_imagefont.py::test_bitmap_blend[Layout.BASIC-False] PASSED
Tests/test_imagefont.py::test_bitmap_blend[Layout.BASIC-True] PASSED
Tests/test_imagefont.py::test_bitmap_blend[Layout.RAQM-False] SKIPPED
Tests/test_imagefont.py::test_bitmap_blend[Layout.RAQM-True] SKIPPED
Tests/test_imagefont.py::test_bitmap_font[Layout.BASIC-1] PASSED
Tests/test_imagefont.py::test_bitmap_font[Layout.BASIC-2] PASSED
Tests/test_imagefont.py::test_bitmap_font[Layout.BASIC-4] PASSED
Tests/test_imagefont.py::test_bitmap_font[Layout.BASIC-8] PASSED
Tests/test_imagefont.py::test_bitmap_font[Layout.RAQM-1] SKIPPED (ra...)
Tests/test_imagefont.py::test_bitmap_font[Layout.RAQM-2] SKIPPED (ra...)
Tests/test_imagefont.py::test_bitmap_font[Layout.RAQM-4] SKIPPED (ra...)
Tests/test_imagefont.py::test_bitmap_font[Layout.RAQM-8] SKIPPED (ra...)
Tests/test_imagefont.py::test_bitmap_font_stroke[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_bitmap_font_stroke[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_cbdt[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_cbdt[Layout.RAQM] SKIPPED (raqm not av...)
Tests/test_imagefont.py::test_cbdt_mask[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_cbdt_mask[Layout.RAQM] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_colr[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_colr[Layout.RAQM] SKIPPED (raqm not av...)
Tests/test_imagefont.py::test_colr_mask[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_colr_mask[Layout.RAQM] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_complex_font_settings PASSED
Tests/test_imagefont.py::test_default_font PASSED
Tests/test_imagefont.py::test_draw_align[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_draw_align[Layout.RAQM] SKIPPED (raqm ...)
Tests/test_imagefont.py::test_find_font[darwin-/System/Library/Fonts] PASSED
Tests/test_imagefont.py::test_find_font[linux-/usr/local/share/fonts] PASSED
Tests/test_imagefont.py::test_float_coord[Layout.BASIC-1] PASSED
Tests/test_imagefont.py::test_float_coord[Layout.BASIC-L] PASSED
Tests/test_imagefont.py::test_float_coord[Layout.BASIC-RGBA] PASSED
Tests/test_imagefont.py::test_float_coord[Layout.RAQM-1] SKIPPED (ra...)
Tests/test_imagefont.py::test_float_coord[Layout.RAQM-L] SKIPPED (ra...)
Tests/test_imagefont.py::test_float_coord[Layout.RAQM-RGBA] SKIPPED
Tests/test_imagefont.py::test_float_size PASSED
Tests/test_imagefont.py::test_font_properties[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_font_properties[Layout.RAQM] SKIPPED (...)
Tests/test_imagefont.py::test_font_with_filelike[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_font_with_filelike[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_font_with_name[Layout.BASIC-Tests/fonts/FreeMono.ttf] PASSED
Tests/test_imagefont.py::test_font_with_name[Layout.BASIC-font1] PASSED
Tests/test_imagefont.py::test_font_with_name[Layout.RAQM-Tests/fonts/FreeMono.ttf] SKIPPED
Tests/test_imagefont.py::test_font_with_name[Layout.RAQM-font1] SKIPPED
Tests/test_imagefont.py::test_font_with_open_file[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_font_with_open_file[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_free_type_font_get_mask[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_free_type_font_get_mask[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_free_type_font_get_metrics[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_free_type_font_get_metrics[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_free_type_font_get_name[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_free_type_font_get_name[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_getbbox[Layout.BASIC-1] PASSED
Tests/test_imagefont.py::test_getbbox[Layout.BASIC-None] PASSED
Tests/test_imagefont.py::test_getbbox[Layout.BASIC-RGBA] PASSED
Tests/test_imagefont.py::test_getbbox[Layout.RAQM-1] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_getbbox[Layout.RAQM-None] SKIPPED (raq...)
Tests/test_imagefont.py::test_getbbox[Layout.RAQM-RGBA] SKIPPED (raq...)
Tests/test_imagefont.py::test_getbbox_empty[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_getbbox_empty[Layout.RAQM] SKIPPED (ra...)
Tests/test_imagefont.py::test_getlength[Layout.BASIC-ill-1-OpenSansCondensed-LightItalic.ttf-63-33-31.984375] PASSED
Tests/test_imagefont.py::test_getlength[Layout.BASIC-ill-L-OpenSansCondensed-LightItalic.ttf-63-33-31.984375] PASSED
Tests/test_imagefont.py::test_getlength[Layout.BASIC-rrr-1-DejaVuSans/DejaVuSans.ttf-18-24-22.21875] PASSED
Tests/test_imagefont.py::test_getlength[Layout.BASIC-rrr-L-DejaVuSans/DejaVuSans.ttf-18-21-22.21875] PASSED
Tests/test_imagefont.py::test_getlength[Layout.BASIC-text-1-FreeMono.ttf-15-36-36] PASSED
Tests/test_imagefont.py::test_getlength[Layout.BASIC-text-L-FreeMono.ttf-15-36-36] PASSED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-ill-1-OpenSansCondensed-LightItalic.ttf-63-33-31.984375] SKIPPED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-ill-L-OpenSansCondensed-LightItalic.ttf-63-33-31.984375] SKIPPED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-rrr-1-DejaVuSans/DejaVuSans.ttf-18-24-22.21875] SKIPPED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-rrr-L-DejaVuSans/DejaVuSans.ttf-18-21-22.21875] SKIPPED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-text-1-FreeMono.ttf-15-36-36] SKIPPED
Tests/test_imagefont.py::test_getlength[Layout.RAQM-text-L-FreeMono.ttf-15-36-36] SKIPPED
Tests/test_imagefont.py::test_getsize_stroke[Layout.BASIC-0] PASSED
Tests/test_imagefont.py::test_getsize_stroke[Layout.BASIC-2] PASSED
Tests/test_imagefont.py::test_getsize_stroke[Layout.RAQM-0] SKIPPED
Tests/test_imagefont.py::test_getsize_stroke[Layout.RAQM-2] SKIPPED
Tests/test_imagefont.py::test_imagefont_getters[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_imagefont_getters[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_invalid_truetype_sizes_raise_valueerror[Layout.BASIC--1] PASSED
Tests/test_imagefont.py::test_invalid_truetype_sizes_raise_valueerror[Layout.BASIC-0] PASSED
Tests/test_imagefont.py::test_invalid_truetype_sizes_raise_valueerror[Layout.RAQM--1] SKIPPED
Tests/test_imagefont.py::test_invalid_truetype_sizes_raise_valueerror[Layout.RAQM-0] SKIPPED
Tests/test_imagefont.py::test_load_non_font_bytes PASSED
Tests/test_imagefont.py::test_load_path_not_found PASSED
Tests/test_imagefont.py::test_multiline_bbox[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_multiline_bbox[Layout.RAQM] SKIPPED (r...)
Tests/test_imagefont.py::test_multiline_spacing[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_multiline_spacing[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_multiline_width[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_multiline_width[Layout.RAQM] SKIPPED (...)
Tests/test_imagefont.py::test_non_ascii_path[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_non_ascii_path[Layout.RAQM] SKIPPED (r...)
Tests/test_imagefont.py::test_oom[Tests/fonts/oom-4da0210eb7081b0bf15bf16cc4c52ce02c1e1bbc.ttf] PASSED
Tests/test_imagefont.py::test_oom[Tests/fonts/oom-e8e927ba6c0d38274a37c1567560eb33baf74627.ttf] PASSED
Tests/test_imagefont.py::test_raqm_missing_warning PASSED
Tests/test_imagefont.py::test_render_empty[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_render_empty[Layout.RAQM] SKIPPED (raq...)
Tests/test_imagefont.py::test_render_equal[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_render_equal[Layout.RAQM] SKIPPED (raq...)
Tests/test_imagefont.py::test_render_mono_size PASSED
Tests/test_imagefont.py::test_render_multiline[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_render_multiline[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_render_multiline_text[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_render_multiline_text[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.BASIC-center-_center] PASSED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.BASIC-left-] PASSED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.BASIC-right-_right] PASSED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.RAQM-center-_center] SKIPPED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.RAQM-left-] SKIPPED
Tests/test_imagefont.py::test_render_multiline_text_align[Layout.RAQM-right-_right] SKIPPED
Tests/test_imagefont.py::test_rotated_transposed_font[Layout.BASIC-Transpose.ROTATE_270] PASSED
Tests/test_imagefont.py::test_rotated_transposed_font[Layout.BASIC-Transpose.ROTATE_90] PASSED
Tests/test_imagefont.py::test_rotated_transposed_font[Layout.RAQM-Transpose.ROTATE_270] SKIPPED
Tests/test_imagefont.py::test_rotated_transposed_font[Layout.RAQM-Transpose.ROTATE_90] SKIPPED
Tests/test_imagefont.py::test_rotated_transposed_font_get_mask[Layout.BASIC-Transpose.ROTATE_270] PASSED
Tests/test_imagefont.py::test_rotated_transposed_font_get_mask[Layout.BASIC-Transpose.ROTATE_90] PASSED
Tests/test_imagefont.py::test_rotated_transposed_font_get_mask[Layout.RAQM-Transpose.ROTATE_270] SKIPPED
Tests/test_imagefont.py::test_rotated_transposed_font_get_mask[Layout.RAQM-Transpose.ROTATE_90] SKIPPED
Tests/test_imagefont.py::test_sanity PASSED
Tests/test_imagefont.py::test_sbix[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_sbix[Layout.RAQM] SKIPPED (raqm not av...)
Tests/test_imagefont.py::test_sbix_mask[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_sbix_mask[Layout.RAQM] SKIPPED (raqm n...)
Tests/test_imagefont.py::test_standard_embedded_color[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_standard_embedded_color[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_textbbox_equal[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_textbbox_equal[Layout.RAQM] SKIPPED (r...)
Tests/test_imagefont.py::test_too_many_characters[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_too_many_characters[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_transparent_background[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_transparent_background[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_unicode_extended[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_unicode_extended[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_unknown_align[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_unknown_align[Layout.RAQM] SKIPPED (ra...)
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.BASIC-None] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.BASIC-Transpose.FLIP_LEFT_RIGHT] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.BASIC-Transpose.FLIP_TOP_BOTTOM] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.BASIC-Transpose.ROTATE_180] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.RAQM-None] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.RAQM-Transpose.FLIP_LEFT_RIGHT] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.RAQM-Transpose.FLIP_TOP_BOTTOM] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font[Layout.RAQM-Transpose.ROTATE_180] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.BASIC-None] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.BASIC-Transpose.FLIP_LEFT_RIGHT] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.BASIC-Transpose.FLIP_TOP_BOTTOM] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.BASIC-Transpose.ROTATE_180] PASSED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.RAQM-None] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.RAQM-Transpose.FLIP_LEFT_RIGHT] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.RAQM-Transpose.FLIP_TOP_BOTTOM] SKIPPED
Tests/test_imagefont.py::test_unrotated_transposed_font_get_mask[Layout.RAQM-Transpose.ROTATE_180] SKIPPED
Tests/test_imagefont.py::test_variation_get[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_variation_get[Layout.RAQM] SKIPPED (ra...)
Tests/test_imagefont.py::test_variation_set_by_axes[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_variation_set_by_axes[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_variation_set_by_name[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_variation_set_by_name[Layout.RAQM] SKIPPED
Tests/test_imagefont.py::test_woff2[Layout.BASIC] PASSED
Tests/test_imagefont.py::test_woff2[Layout.RAQM] SKIPPED (raqm not a...)
Tests/test_imagefontctl.py::test_anchor_invalid_ttb SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_anchor_ttb[lt] SKIPPED (raqm not av...)
Tests/test_imagefontctl.py::test_anchor_ttb[mm] SKIPPED (raqm not av...)
Tests/test_imagefontctl.py::test_anchor_ttb[rb] SKIPPED (raqm not av...)
Tests/test_imagefontctl.py::test_anchor_ttb[sm] SKIPPED (raqm not av...)
Tests/test_imagefontctl.py::test_arabictext_features SKIPPED (raqm n...)
Tests/test_imagefontctl.py::test_combine[caron] SKIPPED (raqm not av...)
Tests/test_imagefontctl.py::test_combine[caron_below] SKIPPED (raqm ...)
Tests/test_imagefontctl.py::test_combine[caron_below_lb] SKIPPED (ra...)
Tests/test_imagefontctl.py::test_combine[caron_below_ld] SKIPPED (ra...)
Tests/test_imagefontctl.py::test_combine[caron_below_ls] SKIPPED (ra...)
Tests/test_imagefontctl.py::test_combine[caron_below_ttb] SKIPPED (r...)
Tests/test_imagefontctl.py::test_combine[caron_below_ttb_lb] SKIPPED
Tests/test_imagefontctl.py::test_combine[caron_la] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_combine[caron_ls] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_combine[caron_lt] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_combine[caron_ttb] SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_combine[caron_ttb_lt] SKIPPED (raqm...)
Tests/test_imagefontctl.py::test_combine[double_breve_below] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ma] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ra] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ttb] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ttb_mt] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ttb_rt] SKIPPED
Tests/test_imagefontctl.py::test_combine[double_breve_below_ttb_st] SKIPPED
Tests/test_imagefontctl.py::test_combine[overline] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_combine[overline_la] SKIPPED (raqm ...)
Tests/test_imagefontctl.py::test_combine[overline_ra] SKIPPED (raqm ...)
Tests/test_imagefontctl.py::test_combine[overline_ttb] SKIPPED (raqm...)
Tests/test_imagefontctl.py::test_combine[overline_ttb_mt] SKIPPED (r...)
Tests/test_imagefontctl.py::test_combine[overline_ttb_rt] SKIPPED (r...)
Tests/test_imagefontctl.py::test_combine[overline_ttb_st] SKIPPED (r...)
Tests/test_imagefontctl.py::test_combine_multiline[lm-center] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[lm-left] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[lm-right] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[mm-center] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[mm-left] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[mm-right] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[rm-center] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[rm-left] SKIPPED
Tests/test_imagefontctl.py::test_combine_multiline[rm-right] SKIPPED
Tests/test_imagefontctl.py::test_complex_text SKIPPED (raqm not avai...)
Tests/test_imagefontctl.py::test_complex_unicode_text SKIPPED (raqm ...)
Tests/test_imagefontctl.py::test_english SKIPPED (raqm not available)
Tests/test_imagefontctl.py::test_getlength[None-1] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_getlength[None-L] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_getlength[ltr-1] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength[ltr-L] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength[rtl-1] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength[rtl-L] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength[rtl2-1] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_getlength[rtl2-L] SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_getlength[ttb-1] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength[ttb-L] SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_getlength_combine[caron-above-ltr-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-above-ltr-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-above-ttb-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-above-ttb-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-below-ltr-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-below-ltr-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-below-ttb-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[caron-below-ttb-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[double-breve-ltr-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[double-breve-ltr-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[double-breve-ttb-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[double-breve-ttb-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[overline-ltr-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[overline-ltr-L] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[overline-ttb-1] SKIPPED
Tests/test_imagefontctl.py::test_getlength_combine[overline-ttb-L] SKIPPED
Tests/test_imagefontctl.py::test_kerning_features SKIPPED (raqm not ...)
Tests/test_imagefontctl.py::test_language SKIPPED (raqm not available)
Tests/test_imagefontctl.py::test_ligature_features SKIPPED (raqm not...)
Tests/test_imagefontctl.py::test_text_direction_ltr SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_text_direction_rtl SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_text_direction_rtl2 SKIPPED (raqm n...)
Tests/test_imagefontctl.py::test_text_direction_ttb SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_text_direction_ttb_stroke SKIPPED (...)
Tests/test_imagefontctl.py::test_x_max_and_y_offset SKIPPED (raqm no...)
Tests/test_imagefontctl.py::test_y_offset SKIPPED (raqm not available)
Tests/test_imagefontpil.py::test_decompression_bomb PASSED
Tests/test_imagefontpil.py::test_default_font PASSED
Tests/test_imagefontpil.py::test_oom PASSED
Tests/test_imagefontpil.py::test_size_without_freetype PASSED
Tests/test_imagefontpil.py::test_textbbox PASSED
Tests/test_imagefontpil.py::test_unicode PASSED
Tests/test_imagegrab.py::TestImageGrab::test_grab SKIPPED (requires ...)
Tests/test_imagegrab.py::TestImageGrab::test_grab_invalid_xdisplay PASSED
Tests/test_imagegrab.py::TestImageGrab::test_grab_no_xcb SKIPPED (te...)
Tests/test_imagegrab.py::TestImageGrab::test_grab_x11 SKIPPED (X con...)
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard PASSED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_file SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_png SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_wl_clipboard[gif] SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_wl_clipboard[ico] SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_wl_clipboard[png] SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_wl_clipboard_errors[--clear] SKIPPED
Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard_wl_clipboard_errors[text] SKIPPED
Tests/test_imagemath_lambda_eval.py::test_abs PASSED
Tests/test_imagemath_lambda_eval.py::test_binary_mod PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_and PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_invert PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_leftshift PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_or PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_rightshift PASSED
Tests/test_imagemath_lambda_eval.py::test_bitwise_xor PASSED
Tests/test_imagemath_lambda_eval.py::test_compare PASSED
Tests/test_imagemath_lambda_eval.py::test_convert PASSED
Tests/test_imagemath_lambda_eval.py::test_logical PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_eq PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_equal PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_ge PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_gt PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_le PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_lt PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_ne PASSED
Tests/test_imagemath_lambda_eval.py::test_logical_not_equal PASSED
Tests/test_imagemath_lambda_eval.py::test_one_image_larger PASSED
Tests/test_imagemath_lambda_eval.py::test_ops PASSED
Tests/test_imagemath_lambda_eval.py::test_sanity PASSED
Tests/test_imagemath_unsafe_eval.py::test_abs PASSED
Tests/test_imagemath_unsafe_eval.py::test_binary_mod PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_and PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_invert PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_leftshift PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_or PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_rightshift PASSED
Tests/test_imagemath_unsafe_eval.py::test_bitwise_xor PASSED
Tests/test_imagemath_unsafe_eval.py::test_compare PASSED
Tests/test_imagemath_unsafe_eval.py::test_convert PASSED
Tests/test_imagemath_unsafe_eval.py::test_eval_deprecated PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_eq PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_equal PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_ge PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_gt PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_le PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_lt PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_ne PASSED
Tests/test_imagemath_unsafe_eval.py::test_logical_not_equal PASSED
Tests/test_imagemath_unsafe_eval.py::test_one_image_larger PASSED
Tests/test_imagemath_unsafe_eval.py::test_ops PASSED
Tests/test_imagemath_unsafe_eval.py::test_prevent_builtins PASSED
Tests/test_imagemath_unsafe_eval.py::test_prevent_double_underscores PASSED
Tests/test_imagemath_unsafe_eval.py::test_prevent_exec[(lambda: (lambda: exec('pass'))())()] PASSED
Tests/test_imagemath_unsafe_eval.py::test_prevent_exec[(lambda: exec('pass'))()] PASSED
Tests/test_imagemath_unsafe_eval.py::test_prevent_exec[exec('pass')] PASSED
Tests/test_imagemath_unsafe_eval.py::test_sanity PASSED
Tests/test_imagemorph.py::test_add_patterns PASSED
Tests/test_imagemorph.py::test_corner PASSED
Tests/test_imagemorph.py::test_dialation8 PASSED
Tests/test_imagemorph.py::test_edge PASSED
Tests/test_imagemorph.py::test_erosion4 PASSED
Tests/test_imagemorph.py::test_erosion8 PASSED
Tests/test_imagemorph.py::test_incorrect_mode PASSED
Tests/test_imagemorph.py::test_load_invalid_mrl PASSED
Tests/test_imagemorph.py::test_lut[corner] PASSED
Tests/test_imagemorph.py::test_lut[dilation4] PASSED
Tests/test_imagemorph.py::test_lut[dilation8] PASSED
Tests/test_imagemorph.py::test_lut[edge] PASSED
Tests/test_imagemorph.py::test_lut[erosion4] PASSED
Tests/test_imagemorph.py::test_lut[erosion8] PASSED
Tests/test_imagemorph.py::test_mirroring PASSED
Tests/test_imagemorph.py::test_negate PASSED
Tests/test_imagemorph.py::test_no_operator_loaded PASSED
Tests/test_imagemorph.py::test_pattern_syntax_error PASSED
Tests/test_imagemorph.py::test_roundtrip_mrl PASSED
Tests/test_imagemorph.py::test_set_lut PASSED
Tests/test_imagemorph.py::test_str_to_img PASSED
Tests/test_imagemorph.py::test_unknown_pattern PASSED
Tests/test_imagemorph.py::test_wrong_mode PASSED
Tests/test_imageops.py::test_1pxfit PASSED
Tests/test_imageops.py::test_autocontrast_cutoff PASSED
Tests/test_imageops.py::test_autocontrast_mask_real_input PASSED
Tests/test_imageops.py::test_autocontrast_mask_toy_input PASSED
Tests/test_imageops.py::test_autocontrast_preserve_gradient PASSED
Tests/test_imageops.py::test_autocontrast_preserve_one_color[color0] PASSED
Tests/test_imageops.py::test_autocontrast_preserve_one_color[color1] PASSED
Tests/test_imageops.py::test_autocontrast_preserve_one_color[color2] PASSED
Tests/test_imageops.py::test_autocontrast_preserve_one_color[color3] PASSED
Tests/test_imageops.py::test_autocontrast_preserve_tone PASSED
Tests/test_imageops.py::test_autocontrast_unsupported_mode PASSED
Tests/test_imageops.py::test_colorize_2color PASSED
Tests/test_imageops.py::test_colorize_2color_offset PASSED
Tests/test_imageops.py::test_colorize_3color_offset PASSED
Tests/test_imageops.py::test_contain[new_size0] PASSED
Tests/test_imageops.py::test_contain[new_size1] PASSED
Tests/test_imageops.py::test_contain[new_size2] PASSED
Tests/test_imageops.py::test_contain_round PASSED
Tests/test_imageops.py::test_cover[colr_bungee.png-expected_size0] PASSED
Tests/test_imageops.py::test_cover[hopper.png-expected_size2] PASSED
Tests/test_imageops.py::test_cover[imagedraw_stroke_multiline.png-expected_size1] PASSED
Tests/test_imageops.py::test_exif_transpose PASSED
Tests/test_imageops.py::test_exif_transpose_in_place PASSED
Tests/test_imageops.py::test_expand_palette[10] PASSED
Tests/test_imageops.py::test_expand_palette[border1] PASSED
Tests/test_imageops.py::test_fit_same_ratio PASSED
Tests/test_imageops.py::test_pad PASSED
Tests/test_imageops.py::test_pad_round PASSED
Tests/test_imageops.py::test_palette[PA] PASSED
Tests/test_imageops.py::test_palette[P] PASSED
Tests/test_imageops.py::test_pil163 PASSED
Tests/test_imageops.py::test_sanity PASSED
Tests/test_imageops.py::test_scale PASSED
Tests/test_imageops_usm.py::test_blur_accuracy PASSED
Tests/test_imageops_usm.py::test_blur_formats PASSED
Tests/test_imageops_usm.py::test_filter_api PASSED
Tests/test_imageops_usm.py::test_usm_accuracy PASSED
Tests/test_imageops_usm.py::test_usm_formats PASSED
Tests/test_imagepalette.py::test_2bit_palette PASSED
Tests/test_imagepalette.py::test_file PASSED
Tests/test_imagepalette.py::test_getcolor PASSED
Tests/test_imagepalette.py::test_getcolor_not_special[0-palette0] PASSED
Tests/test_imagepalette.py::test_getcolor_not_special[255-palette1] PASSED
Tests/test_imagepalette.py::test_getcolor_rgba_color_rgb_palette PASSED
Tests/test_imagepalette.py::test_getdata PASSED
Tests/test_imagepalette.py::test_invalid_palette PASSED
Tests/test_imagepalette.py::test_make_gamma_lut PASSED
Tests/test_imagepalette.py::test_make_linear_lut PASSED
Tests/test_imagepalette.py::test_make_linear_lut_not_yet_implemented PASSED
Tests/test_imagepalette.py::test_rawmode_getdata PASSED
Tests/test_imagepalette.py::test_rawmode_valueerrors PASSED
Tests/test_imagepalette.py::test_reload PASSED
Tests/test_imagepalette.py::test_sanity PASSED
Tests/test_imagepath.py::test_getbbox[0-expected2] PASSED
Tests/test_imagepath.py::test_getbbox[1-expected3] PASSED
Tests/test_imagepath.py::test_getbbox[coords0-expected0] PASSED
Tests/test_imagepath.py::test_getbbox[coords1-expected1] PASSED
Tests/test_imagepath.py::test_getbbox_no_args PASSED
Tests/test_imagepath.py::test_invalid_path_constructors[coords0] PASSED
Tests/test_imagepath.py::test_invalid_path_constructors[coords1] PASSED
Tests/test_imagepath.py::test_invalid_path_constructors[coords2] PASSED
Tests/test_imagepath.py::test_invalid_path_constructors[coords3] PASSED
Tests/test_imagepath.py::test_invalid_path_constructors[coords4] PASSED
Tests/test_imagepath.py::test_map[0-expected0] PASSED
Tests/test_imagepath.py::test_map[coords1-expected1] PASSED
Tests/test_imagepath.py::test_overflow_segfault PASSED
Tests/test_imagepath.py::test_path PASSED
Tests/test_imagepath.py::test_path_constructors[\x00\x00\x00\x00\x00\x00\x80?] PASSED
Tests/test_imagepath.py::test_path_constructors[coords0] PASSED
Tests/test_imagepath.py::test_path_constructors[coords10] PASSED
Tests/test_imagepath.py::test_path_constructors[coords1] PASSED
Tests/test_imagepath.py::test_path_constructors[coords2] PASSED
Tests/test_imagepath.py::test_path_constructors[coords3] PASSED
Tests/test_imagepath.py::test_path_constructors[coords4] PASSED
Tests/test_imagepath.py::test_path_constructors[coords5] PASSED
Tests/test_imagepath.py::test_path_constructors[coords6] PASSED
Tests/test_imagepath.py::test_path_constructors[coords7] PASSED
Tests/test_imagepath.py::test_path_constructors[coords8] PASSED
Tests/test_imagepath.py::test_path_odd_number_of_coordinates[coords0] PASSED
Tests/test_imagepath.py::test_path_odd_number_of_coordinates[coords1] PASSED
Tests/test_imagepath.py::test_path_odd_number_of_coordinates[coords2] PASSED
Tests/test_imagepath.py::test_path_odd_number_of_coordinates[coords3] PASSED
Tests/test_imagepath.py::test_transform PASSED
Tests/test_imagepath.py::test_transform_with_wrap PASSED
Tests/test_imageqt.py::test_closed_file SKIPPED (Qt bindings are not...)
Tests/test_imageqt.py::test_image SKIPPED (Qt bindings are not insta...)
Tests/test_imageqt.py::test_rgb SKIPPED (Qt bindings are not installed)
Tests/test_imagesequence.py::test_all_frames PASSED
Tests/test_imagesequence.py::test_consecutive PASSED
Tests/test_imagesequence.py::test_iterator PASSED
Tests/test_imagesequence.py::test_iterator_min_frame PASSED
Tests/test_imagesequence.py::test_libtiff PASSED
Tests/test_imagesequence.py::test_palette_mmap PASSED
Tests/test_imagesequence.py::test_sanity PASSED
Tests/test_imagesequence.py::test_tiff PASSED
Tests/test_imageshow.py::test_ipythonviewer PASSED
Tests/test_imageshow.py::test_register PASSED
Tests/test_imageshow.py::test_sanity PASSED
Tests/test_imageshow.py::test_show[1] SKIPPED (Only run on CIs; hang...)
Tests/test_imageshow.py::test_show[I;16] SKIPPED (Only run on CIs; h...)
Tests/test_imageshow.py::test_show[LA] SKIPPED (Only run on CIs; han...)
Tests/test_imageshow.py::test_show[RGBA] SKIPPED (Only run on CIs; h...)
Tests/test_imageshow.py::test_show[RGB] SKIPPED (Only run on CIs; ha...)
Tests/test_imageshow.py::test_show_without_viewers PASSED
Tests/test_imageshow.py::test_viewer PASSED
Tests/test_imageshow.py::test_viewer_show[-1] PASSED
Tests/test_imageshow.py::test_viewer_show[0] PASSED
Tests/test_imageshow.py::test_viewers[viewer0] PASSED
Tests/test_imageshow.py::test_viewers[viewer1] PASSED
Tests/test_imageshow.py::test_viewers[viewer2] PASSED
Tests/test_imageshow.py::test_viewers[viewer3] PASSED
Tests/test_imagestat.py::test_constant PASSED
Tests/test_imagestat.py::test_hopper PASSED
Tests/test_imagestat.py::test_sanity PASSED
Tests/test_imagetk.py::test_bitmapimage SKIPPED (TCL Error: no displ...)
Tests/test_imagetk.py::test_kw SKIPPED (TCL Error: no display name a...)
Tests/test_imagetk.py::test_photoimage[1] SKIPPED (TCL Error: no dis...)
Tests/test_imagetk.py::test_photoimage[L] SKIPPED (TCL Error: no dis...)
Tests/test_imagetk.py::test_photoimage[P] SKIPPED (TCL Error: no dis...)
Tests/test_imagetk.py::test_photoimage[RGBA] SKIPPED (TCL Error: no ...)
Tests/test_imagetk.py::test_photoimage[RGB] SKIPPED (TCL Error: no d...)
Tests/test_imagetk.py::test_photoimage_apply_transparency SKIPPED (T...)
Tests/test_imagetk.py::test_photoimage_blank[1] SKIPPED (TCL Error: ...)
Tests/test_imagetk.py::test_photoimage_blank[L] SKIPPED (TCL Error: ...)
Tests/test_imagetk.py::test_photoimage_blank[P] SKIPPED (TCL Error: ...)
Tests/test_imagetk.py::test_photoimage_blank[RGBA] SKIPPED (TCL Erro...)
Tests/test_imagetk.py::test_photoimage_blank[RGB] SKIPPED (TCL Error...)
Tests/test_imagewin.py::TestImageWin::test_hdc PASSED
Tests/test_imagewin.py::TestImageWin::test_hwnd PASSED
Tests/test_imagewin.py::TestImageWin::test_sanity PASSED
Tests/test_imagewin.py::TestImageWinDib::test_dib_frombytes_tobytes_roundtrip SKIPPED
Tests/test_imagewin.py::TestImageWinDib::test_dib_image SKIPPED (Win...)
Tests/test_imagewin.py::TestImageWinDib::test_dib_mode_string SKIPPED
Tests/test_imagewin.py::TestImageWinDib::test_dib_paste SKIPPED (Win...)
Tests/test_imagewin.py::TestImageWinDib::test_dib_paste_bbox SKIPPED
Tests/test_lib_image.py::test_setmode PASSED
Tests/test_lib_pack.py::TestLibPack::test_1 PASSED
Tests/test_lib_pack.py::TestLibPack::test_CMYK PASSED
Tests/test_lib_pack.py::TestLibPack::test_F_float PASSED
Tests/test_lib_pack.py::TestLibPack::test_HSV PASSED
Tests/test_lib_pack.py::TestLibPack::test_I PASSED
Tests/test_lib_pack.py::TestLibPack::test_I16 PASSED
Tests/test_lib_pack.py::TestLibPack::test_L PASSED
Tests/test_lib_pack.py::TestLibPack::test_LA PASSED
Tests/test_lib_pack.py::TestLibPack::test_LAB PASSED
Tests/test_lib_pack.py::TestLibPack::test_La PASSED
Tests/test_lib_pack.py::TestLibPack::test_P PASSED
Tests/test_lib_pack.py::TestLibPack::test_PA PASSED
Tests/test_lib_pack.py::TestLibPack::test_RGB PASSED
Tests/test_lib_pack.py::TestLibPack::test_RGBA PASSED
Tests/test_lib_pack.py::TestLibPack::test_RGBX PASSED
Tests/test_lib_pack.py::TestLibPack::test_RGBa PASSED
Tests/test_lib_pack.py::TestLibPack::test_YCbCr PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_1 PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_BGR PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_CMYK PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_CMYK16 PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_F_float PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_F_int PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_HSV PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_I PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_I16 PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_L PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_LA PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_LAB PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_La PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_P PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_PA PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_RGB PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_RGBA PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_RGBX PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_RGBa PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_YCbCr PASSED
Tests/test_lib_pack.py::TestLibUnpack::test_value_error PASSED
Tests/test_locale.py::test_sanity SKIPPED (Polish locale not available)
Tests/test_main.py::test_main[args0-False] PASSED
Tests/test_main.py::test_main[args1-True] PASSED
Tests/test_main.py::test_main[args2-True] PASSED
Tests/test_map.py::test_overflow PASSED
Tests/test_map.py::test_tobytes PASSED
Tests/test_map.py::test_ysize PASSED
Tests/test_mode_i16.py::test_basic[I;16B] PASSED
Tests/test_mode_i16.py::test_basic[I;16L] PASSED
Tests/test_mode_i16.py::test_basic[I;16] PASSED
Tests/test_mode_i16.py::test_basic[I] PASSED
Tests/test_mode_i16.py::test_basic[L] PASSED
Tests/test_mode_i16.py::test_convert PASSED
Tests/test_mode_i16.py::test_tobytes PASSED
Tests/test_numpy.py::test_16bit PASSED
Tests/test_numpy.py::test_1bit PASSED
Tests/test_numpy.py::test_1d_array PASSED
Tests/test_numpy.py::test_3d_array PASSED
Tests/test_numpy.py::test_bool PASSED
Tests/test_numpy.py::test_load_first PASSED
Tests/test_numpy.py::test_no_resource_warning_for_numpy_array PASSED
Tests/test_numpy.py::test_numpy_to_image PASSED
Tests/test_numpy.py::test_point_lut PASSED
Tests/test_numpy.py::test_putdata PASSED
Tests/test_numpy.py::test_roundtrip_eye[bool] PASSED
Tests/test_numpy.py::test_roundtrip_eye[bool_] PASSED
Tests/test_numpy.py::test_roundtrip_eye[float32] PASSED
Tests/test_numpy.py::test_roundtrip_eye[float64] PASSED
Tests/test_numpy.py::test_roundtrip_eye[float] PASSED
Tests/test_numpy.py::test_roundtrip_eye[int16] PASSED
Tests/test_numpy.py::test_roundtrip_eye[int32] PASSED
Tests/test_numpy.py::test_roundtrip_eye[int8] PASSED
Tests/test_numpy.py::test_roundtrip_eye[uint16] PASSED
Tests/test_numpy.py::test_roundtrip_eye[uint32] PASSED
Tests/test_numpy.py::test_roundtrip_eye[uint8] PASSED
Tests/test_numpy.py::test_save_tiff_uint16 PASSED
Tests/test_numpy.py::test_to_array[CMYK-uint8] PASSED
Tests/test_numpy.py::test_to_array[F-float32] PASSED
Tests/test_numpy.py::test_to_array[HSV-uint8] PASSED
Tests/test_numpy.py::test_to_array[I-int32] PASSED
Tests/test_numpy.py::test_to_array[I;16-<u2] PASSED
Tests/test_numpy.py::test_to_array[I;16B->u2] PASSED
Tests/test_numpy.py::test_to_array[I;16L-<u2] PASSED
Tests/test_numpy.py::test_to_array[L-uint8] PASSED
Tests/test_numpy.py::test_to_array[LA-uint8] PASSED
Tests/test_numpy.py::test_to_array[RGB-uint8] PASSED
Tests/test_numpy.py::test_to_array[RGBA-uint8] PASSED
Tests/test_numpy.py::test_to_array[RGBX-uint8] PASSED
Tests/test_numpy.py::test_to_array[YCbCr-uint8] PASSED
Tests/test_numpy.py::test_zero_size PASSED
Tests/test_pdfparser.py::test_duplicate_xref_entry PASSED
Tests/test_pdfparser.py::test_indirect_refs PASSED
Tests/test_pdfparser.py::test_parsing PASSED
Tests/test_pdfparser.py::test_pdf_repr PASSED
Tests/test_pdfparser.py::test_text_encode_decode PASSED
Tests/test_pickle.py::test_pickle_font_file[0] PASSED
Tests/test_pickle.py::test_pickle_font_file[1] PASSED
Tests/test_pickle.py::test_pickle_font_file[2] PASSED
Tests/test_pickle.py::test_pickle_font_file[3] PASSED
Tests/test_pickle.py::test_pickle_font_file[4] PASSED
Tests/test_pickle.py::test_pickle_font_file[5] PASSED
Tests/test_pickle.py::test_pickle_font_string[0] PASSED
Tests/test_pickle.py::test_pickle_font_string[1] PASSED
Tests/test_pickle.py::test_pickle_font_string[2] PASSED
Tests/test_pickle.py::test_pickle_font_string[3] PASSED
Tests/test_pickle.py::test_pickle_font_string[4] PASSED
Tests/test_pickle.py::test_pickle_font_string[5] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[0-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[1-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[2-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[3-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[4-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/hopper.jpg-L] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/hopper.jpg-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/hopper.jpg-PA] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/hopper.tif-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/hopper.webp-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/itxt_chunks.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/non_zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/non_zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/p_trns_single.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/pil123p.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/test-card.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/zero_bb.png-None] PASSED
Tests/test_pickle.py::test_pickle_image[5-Tests/images/zero_bb_scale2.png-None] PASSED
Tests/test_pickle.py::test_pickle_la_mode_with_palette PASSED
Tests/test_pickle.py::test_pickle_tell PASSED
Tests/test_psdraw.py::test_draw_postscript PASSED
Tests/test_psdraw.py::test_stdout[False] PASSED
Tests/test_psdraw.py::test_stdout[True] PASSED
Tests/test_pyroma.py::test_pyroma PASSED
Tests/test_qt_image_qapplication.py::test_sanity SKIPPED (Qt binding...)
Tests/test_qt_image_toqimage.py::test_sanity[1] SKIPPED (Qt bindings...)
Tests/test_qt_image_toqimage.py::test_sanity[L] SKIPPED (Qt bindings...)
Tests/test_qt_image_toqimage.py::test_sanity[P] SKIPPED (Qt bindings...)
Tests/test_qt_image_toqimage.py::test_sanity[RGBA] SKIPPED (Qt bindi...)
Tests/test_qt_image_toqimage.py::test_sanity[RGB] SKIPPED (Qt bindin...)
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-465703f71a0f0094873a3e0e82c9f798161171b8.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-64834657ee604b8797bf99eac6a194c124a9a8ba.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-6b7f2244da6d0ae297ee0754a424213444e92778.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-754d9c7ec485ffb76a90eeaab191ef69a2a3a3cd.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-abcf1c97b8fe42a6c68f1fb0b978530c98d57ced.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-b82e64d4f3f76d7465b6af535283029eda211259.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-c1b2595b8b0b92cc5f38b6635e98e3a119ade807.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/crash-db8bfa78b19721225425530c5946217720d7df4e.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/ossfuzz-5730089102868480.sgi] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/sgi_crash.bin] PASSED
Tests/test_sgi_crash.py::test_crashes[Tests/images/sgi_overrun_expandrowF04.bin] PASSED
Tests/test_shell_injection.py::TestShellInjection::test_load_djpeg_filename PASSED
Tests/test_shell_injection.py::TestShellInjection::test_save_cjpeg_filename PASSED
Tests/test_shell_injection.py::TestShellInjection::test_save_netpbm_filename_bmp_mode PASSED
Tests/test_shell_injection.py::TestShellInjection::test_save_netpbm_filename_l_mode PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-0c7e0e8e11ce787078f00b5b0ca409a167f070e0.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-0da013a13571cc8eb457a39fee8db18f8a3c7127.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-0e16d3bfb83be87356d026d66919deaefca44dac.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-1152ec2d1a1a71395b6f2ce6721c38924d025bf3.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-1185209cf7655b5aed8ae5e77784dfdd18ab59e9.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-2020-10-test.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-338516dbd2f0e83caddb8ce256c22db3bd6dc40f.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-4f085cc12ece8cde18758d42608bed6a2a2cfb1c.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-63b1dffefc8c075ddc606c0a2f5fdc15ece78863.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-74d2a78403a5a59db1fb0a2b8735ac068a75f6e3.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-81154a65438ba5aaeca73fd502fa4850fbde60f8.tif] SKIPPED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-86214e58da443d2b80820cff9677a38a33dcbbca.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash-f46f5b2f43c370fe65706c11449f567ecc345e74.tif] PASSED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash_1.tif] SKIPPED
Tests/test_tiff_crashes.py::test_tiff_crashes[Tests/images/crash_2.tif] SKIPPED
Tests/test_tiff_ifdrational.py::test_ifd_rational_save PASSED
Tests/test_tiff_ifdrational.py::test_nonetype PASSED
Tests/test_tiff_ifdrational.py::test_ranges PASSED
Tests/test_tiff_ifdrational.py::test_sanity PASSED
Tests/test_util.py::test_deferred_error PASSED
Tests/test_util.py::test_is_directory PASSED
Tests/test_util.py::test_is_not_directory PASSED
Tests/test_util.py::test_is_not_path PASSED
Tests/test_util.py::test_is_path[filename.ext] PASSED
Tests/test_util.py::test_is_path[test_path1] PASSED
Tests/test_util.py::test_is_path[test_path2] PASSED
Tests/test_webp_leaks.py::TestWebPLeaks::test_leak_load PASSED
 
================================== XFAILURES ===================================
$(@D)/Tests/helper.py:96: Failed: got different content
$(@D)/Tests/test_image_resample.py:285: AssertionError: All colors should be present in resized image. Only 240 on 2 line.
$(@D)/Tests/test_image_resample.py:285: AssertionError: All colors should be present in resized image. Only 240 on 2 line.
=============================== warnings summary ===============================
Tests/test_imageshow.py::test_ipythonviewer
  $(PYTHON_DIR)/vendor-packages/_pytest/python.py:195: ResourceWarning: unclosed file <_io.BufferedReader name='$(@D)/Tests/images/hopper.ppm'>
    result = testfunction(**testargs)
  Enable tracemalloc to get traceback where the object was allocated.
  See https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings for more info.
 
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
======== 4310 passed, 243 skipped, 3 xfailed, 1 warning ========
  py$(PYV): OK
  congratulations :)