Marcel Telka
2023-12-12 51beb57ab912f19c8aec183f920be606f34f7b5c
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
py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
py$(PYV): commands[0]> python -m pytest --benchmark-disable $(@D)/tests/
============================= test session starts ==============================
platform sunos5 -- Python $(PYTHON_VERSION).X -- $(@D)/.tox/py$(PYV)/bin/python
cachedir: .tox/py$(PYV)/.pytest_cache
rootdir: $(@D)
configfile: pyproject.toml
collecting ... collected 2149 items
 
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_check_parallel_j2 PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j1 PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j1_all_checks_lots_of_files PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j1_all_checks_single_file PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j1_single_working_checker PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j2 PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_benchmark_j2_single_working_checker PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_lots_of_files_j1 PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_lots_of_files_j1_empty_checker PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_lots_of_files_j2 PASSED
tests/benchmark/test_baseline_benchmarks.py::TestEstablishBaselineBenchmarks::test_baseline_lots_of_files_j2_empty_checker PASSED
tests/checkers/base/unittest_base.py::TestNoSix::test_no_six SKIPPED
tests/checkers/base/unittest_multi_naming_style.py::TestMultiNamingStyle::test_multi_name_detection_exempt PASSED
tests/checkers/base/unittest_multi_naming_style.py::TestMultiNamingStyle::test_multi_name_detection_first_invalid PASSED
tests/checkers/base/unittest_multi_naming_style.py::TestMultiNamingStyle::test_multi_name_detection_group PASSED
tests/checkers/base/unittest_multi_naming_style.py::TestMultiNamingStyle::test_multi_name_detection_majority PASSED
tests/checkers/base/unittest_name_preset.py::TestNamePresets::test_camel_case PASSED
tests/checkers/base/unittest_name_preset.py::TestNamePresets::test_pascal_case PASSED
tests/checkers/base/unittest_name_preset.py::TestNamePresets::test_snake_case PASSED
tests/checkers/base/unittest_name_preset.py::TestNamePresets::test_upper_case PASSED
tests/checkers/unittest_base_checker.py::test_base_checker_consistent_hash PASSED
tests/checkers/unittest_base_checker.py::test_base_checker_doc PASSED
tests/checkers/unittest_base_checker.py::test_base_checker_invalid_message PASSED
tests/checkers/unittest_base_checker.py::test_base_checker_ordering PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_class_deprecated_arguments PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_class_call PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_class_import PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_class_import_from PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_decorator PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_decorator_with_arguments PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_function PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_method PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_method_alias PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_module PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_deprecated_module_from PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_arg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_arg_kwargs PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_kwarg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_kwarg_kwarg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_kwarg_only PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_function_deprecated_not_used PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_arg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_arg_kwargs PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_kwarg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_kwarg_kwarg PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_kwarg_only PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_method_deprecated_not_used PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_no_message PASSED
tests/checkers/unittest_deprecated.py::TestDeprecatedChecker::test_not_deprecated PASSED
tests/checkers/unittest_design.py::TestDesignChecker::test_exclude_too_few_methods_with_value PASSED
tests/checkers/unittest_design.py::TestDesignChecker::test_ignore_paths_with_no_value PASSED
tests/checkers/unittest_design.py::TestDesignChecker::test_too_many_ancestors_ignored_parents_are_skipped PASSED
tests/checkers/unittest_format.py::TestCheckSpace::test_encoding_token PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testCheckIfArgsAreNotUnicode PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testCheckKeywordParensHandlesUnnecessaryParens PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testCheckKeywordParensHandlesValidCases PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testFuturePrintStatementWithoutParensWarning PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testKeywordParensFalsePositive PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testNoSuperfluousParensWalrusOperatorIf PASSED
tests/checkers/unittest_format.py::TestSuperfluousParentheses::testPositiveSuperfluousParensWalrusOperatorIf PASSED
tests/checkers/unittest_format.py::test_disable_global_option_end_of_line PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_allow_reexport_package PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_preferred_module PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_relative_beyond_top_level PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_relative_beyond_top_level_four PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_relative_beyond_top_level_three PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_relative_beyond_top_level_two PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_wildcard_import_init PASSED
tests/checkers/unittest_imports.py::TestImportsChecker::test_wildcard_import_non_init PASSED
tests/checkers/unittest_misc.py::TestFixme::test_absent_codetag PASSED
tests/checkers/unittest_misc.py::TestFixme::test_dont_trigger_on_todoist PASSED
tests/checkers/unittest_misc.py::TestFixme::test_fixme_with_message PASSED
tests/checkers/unittest_misc.py::TestFixme::test_issue_2321_should_not_trigger PASSED
tests/checkers/unittest_misc.py::TestFixme::test_issue_2321_should_trigger PASSED
tests/checkers/unittest_misc.py::TestFixme::test_non_alphanumeric_codetag PASSED
tests/checkers/unittest_misc.py::TestFixme::test_other_present_codetag PASSED
tests/checkers/unittest_misc.py::TestFixme::test_todo_without_message PASSED
tests/checkers/unittest_misc.py::TestFixme::test_without_space_fixme PASSED
tests/checkers/unittest_misc.py::TestFixme::test_xxx_middle PASSED
tests/checkers/unittest_misc.py::TestFixme::test_xxx_without_space PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[class_attribute] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[for_loop_variable] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[function_variable] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[global_assign] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[inline_for_loop_variable] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_assignname[try-except] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_main_module] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_main_module_with_okay_alias] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_single_main_module] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_single_main_module_with_okay_alias] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_single_main_module_with_okay_alias_with_stdlib_import] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_single_main_module_with_stdlib_import] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_submodule] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_submodule_with_bad_alias] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[bad_submodule_with_okay_alias] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_bad_module_import_bad_as_good] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_bad_module_import_okay] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad_as_bad] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad_as_good] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad_as_good_and_bad0] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad_as_good_and_bad1] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_bad_as_good_and_star] XFAIL
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[from_okay_module_import_okay] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[stdlib_with_bad_alias] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_check_import[stdlib_with_bad_single_main_module] PASSED
tests/checkers/unittest_non_ascii_name.py::TestNonAsciiChecker::test_kwargs_and_position_only PASSED
tests/checkers/unittest_refactoring.py::test_issue_5724 PASSED
tests/checkers/unittest_refactoring.py::test_process_tokens PASSED
tests/checkers/unittest_similar.py::test_get_map_data PASSED
tests/checkers/unittest_similar.py::test_help PASSED
tests/checkers/unittest_similar.py::test_ignore_comments PASSED
tests/checkers/unittest_similar.py::test_ignore_docstrings PASSED
tests/checkers/unittest_similar.py::test_ignore_imports PASSED
tests/checkers/unittest_similar.py::test_ignore_multiline_imports PASSED
tests/checkers/unittest_similar.py::test_ignore_nothing PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_class_methods_fail PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_class_methods_pass PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_empty_functions_fail PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_empty_functions_pass PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_fail PASSED
tests/checkers/unittest_similar.py::test_ignore_signatures_pass PASSED
tests/checkers/unittest_similar.py::test_lines_without_meaningful_content_do_not_trigger_similarity PASSED
tests/checkers/unittest_similar.py::test_multiline_imports PASSED
tests/checkers/unittest_similar.py::test_no_args PASSED
tests/checkers/unittest_similar.py::test_no_hide_code_with_imports PASSED
tests/checkers/unittest_similar.py::test_set_duplicate_lines_to_zero PASSED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_check_bad_coment SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_check_bad_comment_custom_suggestion_count SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_check_bad_docstring SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_1 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_2 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_3 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_4 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_5 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_docstring_lines_that_look_like_comments_6 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_handle_words_joined_by_forward_slash SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_more_than_one_error_in_same_line_for_same_word_on_comment SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_more_than_one_error_in_same_line_for_same_word_on_docstring SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_camel_cased_words SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_code_flanked_in_double_backticks SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_code_flanked_in_single_backticks SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_directives_specified_in_pylintrc SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_email_address SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_python_coding_comments SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_shebangs SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_sphinx_directives SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_sphinx_directives_2 SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_top_level_pylint_enable_disable_comments SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: (NotAWord) -> NotAWord] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: Dict[NotAWord] -> Dict[NotAWord]] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: Dict[NotAWord]] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: ImmutableList[Manager]] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: List[NotAWord] -> List[NotAWord]] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: List[NotAWord]] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: NotAWord] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_type_comments[# type: ignore[attr-defined] NotAWord] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_urls SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_wiki_words SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_words_with_numbers SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_skip_words_with_underscores SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_spelling_dict_help_enchant SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_spelling_dict_help_no_enchant PASSED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[bandit directive] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[black directive to turn off formatting] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[black directive to turn on formatting] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[flake8 / zimports directive] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[isort directive] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[mypy top of file directive] SKIPPED
tests/checkers/unittest_spelling.py::TestSpellingChecker::test_tool_directives_handling[pycharm directive] SKIPPED
tests/checkers/unittest_stdlib.py::TestStdlibChecker::test_deprecated_no_qname_on_unexpected_nodes PASSED
tests/checkers/unittest_strings.py::test_str_eval PASSED
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_error_msg PASSED
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_info_msg PASSED
tests/checkers/unittest_typecheck.py::TestTypeCheckerOnDecorators::test_issue3882_class_decorators PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[backspace_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[backspace_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[backspace_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[backspace_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[backspace_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[carriage-return_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[carriage-return_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[carriage-return_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[carriage-return_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[carriage-return_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[esc_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[esc_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[esc_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[esc_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[esc_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[nul_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[nul_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[nul_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[nul_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[nul_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[sub_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[sub_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[sub_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[sub_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[sub_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[zero-width-space_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[zero-width-space_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test___check_invalid_chars[zero-width-space_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-nul_ascii] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-nul_iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-nul_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-nul_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-nul_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-zero-width-space_utf-16] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-zero-width-space_utf-32] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_bad_chars_that_would_currently_crash_python[invalid-character-zero-width-space_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[ascii_linux_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[ascii_windows_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[iso-8859-1_linux_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[iso-8859-1_windows_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-16_linux_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-16_linux_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-16_windows_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-16_windows_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-32_linux_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-32_linux_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-32_windows_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-32_windows_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-8_linux_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-8_linux_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-8_windows_not_decode_able_line] PASSED
tests/checkers/unittest_unicode/unittest_bad_chars.py::TestBadCharsChecker::test_find_bad_chars[utf-8_windows_valid_line] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[FIRST_STRONG_ISOLATE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[FIRST_STRONG_ISOLATE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[FIRST_STRONG_ISOLATE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[FIRST_STRONG_ISOLATE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[FIRST_STRONG_ISOLATE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_EMBEDDING_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_EMBEDDING_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_EMBEDDING_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_EMBEDDING_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_EMBEDDING_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_ISOLATE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_ISOLATE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_ISOLATE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_ISOLATE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_ISOLATE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_OVERRIDE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_OVERRIDE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_OVERRIDE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_OVERRIDE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[LEFT-TO-RIGHT_OVERRIDE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_FORMATTING_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_FORMATTING_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_FORMATTING_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_FORMATTING_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_FORMATTING_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_ISOLATE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_ISOLATE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_ISOLATE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_ISOLATE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[POP_DIRECTIONAL_ISOLATE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_EMBEDDING_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_EMBEDDING_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_EMBEDDING_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_EMBEDDING_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_EMBEDDING_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_ISOLATE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_ISOLATE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_ISOLATE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_ISOLATE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_ISOLATE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_MARK_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_MARK_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_MARK_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_MARK_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_MARK_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_OVERRIDE_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_OVERRIDE_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_OVERRIDE_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_OVERRIDE_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_find_bidi_string[RIGHT-TO-LEFT_OVERRIDE_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_bidirectional_unicode.py::TestBidirectionalUnicodeChecker::test_finds_bidirectional_unicode_that_currently_not_parsed PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16be_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16be_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16be_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16be_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16le_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16le_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16le_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-16le_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32be_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32be_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32be_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32be_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32le_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32le_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32le_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-32le_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-8_linux_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-8_linux_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-8_windows_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test___fix_utf16_32_line_stream[utf-8_windows_no_final_nl] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[ascii-1] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[latin1-1] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[utf-16-2] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[utf-32-4] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[utf-32-le-4] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__byte_to_str_length[utf-8-1] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[ASCII-ascii] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[Latin1-latin1] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[UTF-16 LE-utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[UTF-16BE-utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[UTF-32-le-utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[UTF-32-utf-32] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[UTF8-utf-8] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf 16 LE-utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf 16-utf-16] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf 32-BE-utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf 32-utf-32] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf 8-utf-8] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf-16-utf-16] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf-32-utf-32] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf-8-utf-80] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf-8-utf-81] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf-8sig-utf-8] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test__normalize_codec_name[utf8-utf-8] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[linux_byte] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[no_line_ending] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[no_line_ending_byte] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[windows_byte] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[wrong_order] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length[wrong_order_byte] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf16[linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf16[no_line_ending] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf16[windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf16[wrong_order] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf32[linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf32[no_line_ending] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf32[windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_line_length_utf32[wrong_order] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-backspace-linux-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-backspace-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-backspace-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-backspace-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-carrier-return-linux-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-carrier-return-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-carrier-return-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-carrier-return-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-esc-linux-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-esc-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-esc-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-esc-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-nul-linux-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-nul-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-nul-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-nul-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-sub-linux-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-sub-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-sub-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-sub-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-zero-width-space-linux] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[invalid-zero-width-space-windows] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[valid-windows-bytes] PASSED
tests/checkers/unittest_unicode/unittest_functions.py::test_map_positions_to_result[valid-windows] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test___check_codec[ascii] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test___check_codec[iso-8859-1] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test___check_codec[utf-16] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test___check_codec[utf-32] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test___check_codec[utf-8] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[bom_utf-16be] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[bom_utf-16le] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[bom_utf-32be] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[bom_utf-32le] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[bom_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[default_utf8] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_ascii] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_latin1] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_latin1_multiline] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_utf-16le_fake] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_utf-16le_real] XFAIL
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec[pep263_utf-8] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test__determine_codec_raises_syntax_error_on_invalid_input PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test_invalid_unicode_files[pep_bidirectional_utf_16_bom.txt-1] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test_invalid_unicode_files[pep_bidirectional_utf_16_le_no_bom.txt-2] XFAIL
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test_invalid_unicode_files[pep_bidirectional_utf_32_bom.txt-1] PASSED
tests/checkers/unittest_unicode/unittest_invalid_encoding.py::TestInvalidEncoding::test_invalid_unicode_files[pep_bidirectional_utf_32_le_no_bom.txt-2] XFAIL
tests/checkers/unittest_utils.py::testGetArgumentFromCall PASSED
tests/checkers/unittest_utils.py::testGetArgumentFromCallError[foo(3)-kw0] PASSED
tests/checkers/unittest_utils.py::testGetArgumentFromCallError[foo(one=a, two=b, three=c)-kw1] PASSED
tests/checkers/unittest_utils.py::testGetArgumentFromCallExists[foo(a, b, c)-kw1] PASSED
tests/checkers/unittest_utils.py::testGetArgumentFromCallExists[foo(bar=3)-kw0] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[__builtins__-True] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[__file__-False] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[__path__-False] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[min-True] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[mybuiltin-False] PASSED
tests/checkers/unittest_utils.py::testIsBuiltin[whatever-False] PASSED
tests/checkers/unittest_utils.py::test_error_of_type PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_class PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_combined PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_decorator PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_for PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_for_else PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_if_elseif_else PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_if_simple PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_method PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_simple PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_try PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_try_except_else PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_try_except_else_finally PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_try_except_finally PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_while PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_while_else PASSED
tests/checkers/unittest_utils.py::test_get_node_last_lineno_with PASSED
tests/checkers/unittest_utils.py::test_if_sys_guard PASSED
tests/checkers/unittest_utils.py::test_if_typing_guard PASSED
tests/checkers/unittest_utils.py::test_in_type_checking_block PASSED
tests/checkers/unittest_utils.py::test_inherit_from_std_ex_recursive_definition PASSED
tests/checkers/unittest_utils.py::test_is_empty_literal PASSED
tests/checkers/unittest_utils.py::test_is_subclass_of_node_b_derived_from_node_a PASSED
tests/checkers/unittest_utils.py::test_is_subclass_of_node_b_not_derived_from_node_a PASSED
tests/checkers/unittest_utils.py::test_is_subclass_of_not_classdefs PASSED
tests/checkers/unittest_utils.py::test_is_typing_member PASSED
tests/checkers/unittest_utils.py::test_node_ignores_exception PASSED
tests/checkers/unittest_utils.py::test_parse_format_method_string PASSED
tests/checkers/unittest_variables.py::TestMissingSubmodule::test_package_all PASSED
tests/checkers/unittest_variables.py::TestVariablesChecker::test_all_elements_without_parent PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_custom_callback_string PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_ignored_argument_names_no_message PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_ignored_argument_names_starred_args PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_import_as_underscore PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_lambda_in_classdef PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_nested_lambda PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_redefined_builtin_in_function PASSED
tests/checkers/unittest_variables.py::TestVariablesCheckerWithTearDown::test_redefined_builtin_modname_not_ignored PASSED
tests/config/pylint_config/test_pylint_config_generate.py::test_format_of_output PASSED
tests/config/pylint_config/test_pylint_config_generate.py::test_generate_interactive_exitcode PASSED
tests/config/pylint_config/test_pylint_config_generate.py::test_writing_minimal_file PASSED
tests/config/pylint_config/test_pylint_config_generate.py::test_writing_to_output_file PASSED
tests/config/pylint_config/test_pylint_config_help.py::test_pylint_config_main_messages PASSED
tests/config/pylint_config/test_pylint_config_utils.py::test_retrying_user_input_validation PASSED
tests/config/pylint_config/test_run_pylint_config.py::test_invocation_of_pylint_config PASSED
tests/config/test_argparse_config.py::TestArgparseOptionsProviderMixin::test_logger_commandline PASSED
tests/config/test_argparse_config.py::TestArgparseOptionsProviderMixin::test_logger_rcfile PASSED
tests/config/test_argparse_config.py::TestArgparseOptionsProviderMixin::test_logger_without_options PASSED
tests/config/test_argparse_config.py::TestArguments::test_unrecognized_argument PASSED
tests/config/test_argparse_config.py::TestDeprecationOptions::test_new_names PASSED
tests/config/test_argparse_config.py::TestDeprecationOptions::test_old_names PASSED
tests/config/test_config.py::test_argument_separator PASSED
tests/config/test_config.py::test_can_read_toml_env_variable PASSED
tests/config/test_config.py::test_clear_cache_post_run PASSED
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo, bar-expected2] PASSED
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo, bar{1,3}-expected3] PASSED
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo,bar-expected1] PASSED
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo-expected0] PASSED
tests/config/test_config.py::test_csv_regex_error PASSED
tests/config/test_config.py::test_disable_before_enable_all_takes_effect PASSED
tests/config/test_config.py::test_empty_confidence PASSED
tests/config/test_config.py::test_enable_all_disable_all_mutually_exclusive PASSED
tests/config/test_config.py::test_enable_before_disable_all_takes_effect PASSED
tests/config/test_config.py::test_regex_error PASSED
tests/config/test_config.py::test_short_verbose PASSED
tests/config/test_config.py::test_unknown_confidence PASSED
tests/config/test_config.py::test_unknown_message_id PASSED
tests/config/test_config.py::test_unknown_option_name PASSED
tests/config/test_config.py::test_unknown_py_version PASSED
tests/config/test_config.py::test_unknown_short_option_name PASSED
tests/config/test_config.py::test_unknown_yes_no PASSED
tests/config/test_find_default_config_files.py::test_cfg_has_config[(not valid .cfg)-False] PASSED
tests/config/test_find_default_config_files.py::test_cfg_has_config[-False] PASSED
tests/config/test_find_default_config_files.py::test_cfg_has_config[\n[metadata]\nname = pylint\n-False] PASSED
tests/config/test_find_default_config_files.py::test_cfg_has_config[\n[metadata]\nname = pylint\n\n[pylint.messages control]\ndisable = logging-not-lazy,logging-format-interpolation\n-True] PASSED
tests/config/test_find_default_config_files.py::test_non_existent_home PASSED
tests/config/test_find_default_config_files.py::test_permission_error PASSED
tests/config/test_find_default_config_files.py::test_pylintrc PASSED
tests/config/test_find_default_config_files.py::test_pylintrc_parentdir PASSED
tests/config/test_find_default_config_files.py::test_pylintrc_parentdir_no_package PASSED
tests/config/test_find_default_config_files.py::test_pyproject_toml_parentdir PASSED
tests/config/test_find_default_config_files.py::test_toml_has_config[(not toml valid)-False] PASSED
tests/config/test_find_default_config_files.py::test_toml_has_config[-False] PASSED
tests/config/test_find_default_config_files.py::test_toml_has_config[\n[build-system]\nrequires = ["setuptools ~= 58.0", "cython ~= 0.29.0"]\n-False] PASSED
tests/config/test_find_default_config_files.py::test_toml_has_config[\n[tool.pylint]\nmissing-member-hint = true\n-True] PASSED
tests/config/test_find_default_config_files.py::test_verbose_abbreviation PASSED
tests/config/test_find_default_config_files.py::test_verbose_output_no_config PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_deleted_message.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_interpolation_error.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_message_control.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_missing_comma.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_multi_line_init_hook.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[ini/pylintrc_with_quoted_init_hook.ini] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/do_not_read_other_tools_configuration/setup.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/identical_name_in_flake8/setup.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/issue_3630/not_setup.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/issue_3630/setup.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/issue_4272/option_in_wrong_section.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[setup_cfg/setup_cfg_with_message_control.cfg] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_3122/toml_with_missing_comma.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_3181/toml_decode_error.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_3181/top_level_list_of_disable.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/correct_basic_name_group.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/correct_import_preferred_module.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/rich_types.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/top_level_disable.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/valid_data_for_basic.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4580/valid_data_for_import.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/issue_4746/loaded_plugin_does_not_exists.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/rich_types.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/toml_with_enable.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/toml_with_message_control.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/toml_with_unknown_option.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/toml_without_pylint.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[toml/unknown_msgid/enable_unknown_msgid.toml] PASSED
tests/config/test_functional_config_loading.py::test_functional_config_loading[tox/unrecognized_options/tox.ini] PASSED
tests/config/test_per_directory_config.py::test_fall_back_on_base_config PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node0-expected0] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node1-expected1] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node2-expected2] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node3-expected3] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node4-expected4] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node5-expected5] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node6-expected6] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node7-expected7] PASSED
tests/extensions/test_check_docs_utils.py::test_exception[raise_node8-expected8] PASSED
tests/extensions/test_check_docs_utils.py::test_possible_exc_types_raising_potential_none PASSED
tests/extensions/test_check_docs_utils.py::test_space_indentation[   \n  abc-3] PASSED
tests/extensions/test_check_docs_utils.py::test_space_indentation[  abc-2] PASSED
tests/extensions/test_check_docs_utils.py::test_space_indentation[-0] PASSED
tests/extensions/test_check_docs_utils.py::test_space_indentation[\n  abc-0] PASSED
tests/extensions/test_check_docs_utils.py::test_space_indentation[abc-0] PASSED
tests/extensions/test_private_import.py::TestPrivateImport::test_external_module PASSED
tests/extensions/test_private_import.py::TestPrivateImport::test_external_module_dot_import PASSED
tests/extensions/test_private_import.py::TestPrivateImport::test_external_module_dot_import_outer_only PASSED
tests/extensions/test_private_import.py::TestPrivateImport::test_external_module_nested PASSED
tests/extensions/test_private_import.py::TestPrivateImport::test_internal_module PASSED
tests/functional/r/redundant_unittest_assert.py::RegressionWithArgs::test SKIPPED
tests/functional/r/redundant_unittest_assert.py::Tests::test_something SKIPPED
tests/lint/test_caching.py::test__get_pdata_path[-1-pylint_home0-expected0] PASSED
tests/lint/test_caching.py::test__get_pdata_path[-2-pylint_home1-expected1] PASSED
tests/lint/test_caching.py::test__get_pdata_path[a/path-42-pylint_home2-expected2] PASSED
tests/lint/test_caching.py::test__get_pdata_path_nix[/workspace/MyDir/test.py-1-pylint_home0-expected0] PASSED
tests/lint/test_caching.py::test__get_pdata_path_nix[/workspace/MyDir/test.py-1-pylint_home1-expected1] PASSED
tests/lint/test_caching.py::test__get_pdata_path_windows[C:\\MyDir\\test.py-1-pylint_home1-expected1] SKIPPED
tests/lint/test_caching.py::test__get_pdata_path_windows[D:\\MyDir\\test.py-1-pylint_home0-expected0] SKIPPED
tests/lint/test_caching.py::test_save_and_load_not_a_linter_stats[.tests/a/path/] PASSED
tests/lint/test_caching.py::test_save_and_load_not_a_linter_stats[.tests] PASSED
tests/lint/test_caching.py::test_save_and_load_result[.tests/] PASSED
tests/lint/test_caching.py::test_save_and_load_result[.tests/a/path/] PASSED
tests/lint/test_pylinter.py::test_crash_during_linting PASSED
tests/lint/test_pylinter.py::test_crash_in_file PASSED
tests/lint/test_run_pylint.py::test_run_pylint_with_invalid_argument PASSED
tests/lint/test_run_pylint.py::test_run_pylint_with_invalid_argument_in_config PASSED
tests/lint/test_utils.py::test_get_fatal_error_message PASSED
tests/lint/test_utils.py::test_issue_template_on_fatal_errors PASSED
tests/lint/test_utils.py::test_prepare_crash_report PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules[files_or_modules0-expected0] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules[files_or_modules1-expected1] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_deduplication[files_or_modules0-expected0] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_deduplication[files_or_modules1-expected1] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_relative_path[files_or_modules0-expected0] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_relative_path[files_or_modules1-expected1] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_with_ignore[files_or_modules0-expected0] PASSED
tests/lint/unittest_expand_modules.py::TestExpandModules::test_expand_modules_with_ignore[files_or_modules1-expected1] PASSED
tests/lint/unittest_expand_modules.py::test__is_in_ignore_list_re_match PASSED
tests/lint/unittest_lint.py::test_addmessage PASSED
tests/lint/unittest_lint.py::test_addmessage_invalid PASSED
tests/lint/unittest_lint.py::test_analyze_explicit_script PASSED
tests/lint/unittest_lint.py::test_by_module_statement_value PASSED
tests/lint/unittest_lint.py::test_custom_should_analyze_file PASSED
tests/lint/unittest_lint.py::test_disable_alot PASSED
tests/lint/unittest_lint.py::test_disable_similar PASSED
tests/lint/unittest_lint.py::test_enable_by_symbol PASSED
tests/lint/unittest_lint.py::test_enable_checkers PASSED
tests/lint/unittest_lint.py::test_enable_message PASSED
tests/lint/unittest_lint.py::test_enable_message_block PASSED
tests/lint/unittest_lint.py::test_enable_message_category PASSED
tests/lint/unittest_lint.py::test_enable_report PASSED
tests/lint/unittest_lint.py::test_errors_only PASSED
tests/lint/unittest_lint.py::test_filename_with__init__ PASSED
tests/lint/unittest_lint.py::test_full_documentation PASSED
tests/lint/unittest_lint.py::test_globbing PASSED
tests/lint/unittest_lint.py::test_import_sibling_module_from_namespace PASSED
tests/lint/unittest_lint.py::test_init_hooks_called_before_load_plugins PASSED
tests/lint/unittest_lint.py::test_lint_namespace_package_under_dir PASSED
tests/lint/unittest_lint.py::test_lint_namespace_package_under_dir_on_path PASSED
tests/lint/unittest_lint.py::test_list_msgs_enabled PASSED
tests/lint/unittest_lint.py::test_load_plugin_command_line PASSED
tests/lint/unittest_lint.py::test_load_plugin_command_line_before_init_hook PASSED
tests/lint/unittest_lint.py::test_load_plugin_command_line_with_init_hook_command_line PASSED
tests/lint/unittest_lint.py::test_load_plugin_config_file PASSED
tests/lint/unittest_lint.py::test_load_plugin_configuration PASSED
tests/lint/unittest_lint.py::test_load_plugin_path_manipulation_case_3 PASSED
tests/lint/unittest_lint.py::test_load_plugin_path_manipulation_case_6 PASSED
tests/lint/unittest_lint.py::test_load_plugin_pylintrc_order_independent PASSED
tests/lint/unittest_lint.py::test_message_state_scope PASSED
tests/lint/unittest_lint.py::test_more_args[case0] PASSED
tests/lint/unittest_lint.py::test_more_args[case1] PASSED
tests/lint/unittest_lint.py::test_more_args[case2] PASSED
tests/lint/unittest_lint.py::test_multiprocessing[1] PASSED
tests/lint/unittest_lint.py::test_multiprocessing[2] PASSED
tests/lint/unittest_lint.py::test_no_args PASSED
tests/lint/unittest_lint.py::test_one_arg[case0] PASSED
tests/lint/unittest_lint.py::test_one_arg[case1] PASSED
tests/lint/unittest_lint.py::test_one_arg[case2] PASSED
tests/lint/unittest_lint.py::test_one_arg[case3] PASSED
tests/lint/unittest_lint.py::test_one_arg[case4] PASSED
tests/lint/unittest_lint.py::test_pylint_home PASSED
tests/lint/unittest_lint.py::test_pylint_home_from_environ PASSED
tests/lint/unittest_lint.py::test_pylint_visit_method_taken_in_account PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-failing.py] PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-ignored_subdirectory] PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-paths-.*directory/ignored.*] PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-paths-.*ignored.*/failing.*] PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-patterns-failing.*] PASSED
tests/lint/unittest_lint.py::test_recursive_ignore[--ignore-patterns-ignored_*] PASSED
tests/lint/unittest_lint.py::test_recursive_implicit_namespace PASSED
tests/lint/unittest_lint.py::test_recursive_implicit_namespace_wrapper PASSED
tests/lint/unittest_lint.py::test_relative_imports PASSED
tests/lint/unittest_lint.py::test_report_output_format_aliased PASSED
tests/lint/unittest_lint.py::test_set_option_1 PASSED
tests/lint/unittest_lint.py::test_set_option_2 PASSED
tests/lint/unittest_lint.py::test_set_unsupported_reporter PASSED
tests/lint/unittest_lint.py::test_source_roots_globbing PASSED
tests/lint/unittest_lint.py::test_two_similar_args[case0] PASSED
tests/lint/unittest_lint.py::test_two_similar_args[case1] PASSED
tests/lint/unittest_lint.py::test_two_similar_args[case2] PASSED
tests/lint/unittest_lint.py::test_two_similar_args[case3] PASSED
tests/message/test_no_removed_msgid_or_symbol_used.py::test_no_removed_msgid_or_symbol_used PASSED
tests/message/unittest_message.py::test_new_message PASSED
tests/message/unittest_message_definition.py::TestMessagesDefinition::test_format_help PASSED
tests/message/unittest_message_definition.py::TestMessagesDefinition::test_may_be_emitted_default PASSED
tests/message/unittest_message_definition.py::TestMessagesDefinition::test_may_be_emitted_py_version PASSED
tests/message/unittest_message_definition.py::TestMessagesDefinition::test_repr PASSED
tests/message/unittest_message_definition.py::TestMessagesDefinition::test_str PASSED
tests/message/unittest_message_definition.py::test_create_invalid_message_type[Q1234-Bad message type Q in 'Q1234'] PASSED
tests/message/unittest_message_definition.py::test_create_invalid_message_type[W12345-Invalid message id 'W12345'] PASSED
tests/message/unittest_message_definition_store.py::TestMessageDefinitionStore::test_message_help PASSED
tests/message/unittest_message_definition_store.py::TestMessageDefinitionStore::test_message_help_minmax PASSED
tests/message/unittest_message_definition_store.py::test_check_message_id PASSED
tests/message/unittest_message_definition_store.py::test_format_help PASSED
tests/message/unittest_message_definition_store.py::test_get_msg_display_string PASSED
tests/message/unittest_message_definition_store.py::test_list_messages PASSED
tests/message/unittest_message_definition_store.py::test_multiple_child_of_old_name PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages0-Inconsistent checker part in message id 'W4321' (expected 'x12xx' because we already had ['W1234']).] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages1-Message id 'W1234' cannot have both 'msg-symbol-one' and 'old-symbol' as symbolic name.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages2-Message id 'W1234' cannot have both 'msg-symbol-one' and 'old-symbol' as symbolic name.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages3-Message id 'W1201' cannot have both 'old-symbol-one' and 'old-symbol-two' as symbolic name.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages4-Message symbol 'msg-symbol' cannot be used for 'W1234' and 'W1235' at the same time. If you're creating an 'old_names' use 'old-msg-symbol' as the old symbol.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages5-Message symbol 'msg-symbol-one' cannot be used for 'W1230' and 'W1234' at the same time. If you're creating an 'old_names' use 'old-msg-symbol-one' as the old symbol.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages6-Message symbol 'msg-symbol-one' cannot be used for 'W1230' and 'W1234' at the same time. If you're creating an 'old_names' use 'old-msg-symbol-one' as the old symbol.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error[messages7-Message symbol 'old-symbol-one' cannot be used for 'W1230' and 'W1231' at the same time. If you're creating an 'old_names' use 'old-old-symbol-one' as the old symbol.] PASSED
tests/message/unittest_message_definition_store.py::test_register_error_new_id_duplicate_of_new PASSED
tests/message/unittest_message_definition_store.py::test_renamed_message_register PASSED
tests/message/unittest_message_id_store.py::test_add_msgid_and_symbol PASSED
tests/message/unittest_message_id_store.py::test_duplicate_msgid PASSED
tests/message/unittest_message_id_store.py::test_duplicate_symbol PASSED
tests/message/unittest_message_id_store.py::test_exclusivity_of_msgids PASSED
tests/message/unittest_message_id_store.py::test_get_message_ids PASSED
tests/message/unittest_message_id_store.py::test_get_message_ids_not_existing PASSED
tests/message/unittest_message_id_store.py::test_len_str PASSED
tests/message/unittest_message_id_store.py::test_register_message_definitions PASSED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[__future__.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[__phello__.foo.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_aix_support.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_bootlocale.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_bootsubprocess.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_collections_abc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_compat_pickle.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_compression.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_markupbase.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_osx_support.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_py_abc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_pydecimal.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_pyio.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_sitebuiltins.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_strptime.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_sysconfigdata__sunos5_.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_threading_local.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[_weakrefset.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[abc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[aifc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[antigravity.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[argparse.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ast.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[asynchat.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[asyncio] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[asyncore.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[base64.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[bdb.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[binhex.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[bisect.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[bz2.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[cProfile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[calendar.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[cgi.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[cgitb.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[chunk.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[cmd.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[code.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[codecs.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[codeop.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[collections] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[colorsys.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[compileall.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[concurrent] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[configparser.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[contextlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[contextvars.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[copy.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[copyreg.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[crypt.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[csv.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ctypes] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[curses] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[dataclasses.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[datetime.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[dbm] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[decimal.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[difflib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[dis.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[distutils] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[doctest.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[email] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[encodings] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ensurepip] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[enum.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[filecmp.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[fileinput.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[fnmatch.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[formatter.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[fractions.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ftplib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[functools.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[genericpath.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[getopt.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[getpass.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[gettext.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[glob.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[graphlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[gzip.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[hashlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[heapq.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[hmac.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[html] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[http] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[idlelib] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[imaplib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[imghdr.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[imp.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[importlib] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[inspect.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[io.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ipaddress.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[json] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[keyword.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[lib2to3] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[linecache.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[locale.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[logging] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[lzma.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[mailbox.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[mailcap.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[mimetypes.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[modulefinder.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[multiprocessing] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[netrc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[nntplib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ntpath.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[nturl2path.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[numbers.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[opcode.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[operator.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[optparse.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[os.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pathlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pdb.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pickle.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pickletools.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pipes.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pkgutil.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[platform.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[plistlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[poplib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[posixpath.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pprint.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[profile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pstats.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pty.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[py_compile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pyclbr.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pydoc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[pydoc_data] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[queue.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[quopri.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[random.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[re.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[reprlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[rlcompleter.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[runpy.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sched.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[secrets.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[selectors.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[shelve.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[shlex.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[shutil.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[signal.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[site.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[smtpd.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[smtplib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sndhdr.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[socket.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[socketserver.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sqlite3] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sre_compile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sre_constants.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sre_parse.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[ssl.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[stat.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[statistics.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[string.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[stringprep.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[struct.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[subprocess.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sunau.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[symbol.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[symtable.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[sysconfig.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tabnanny.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tarfile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[telnetlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tempfile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[test] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[textwrap.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[this.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[threading.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[timeit.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tkinter] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[token.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tokenize.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[trace.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[traceback.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tracemalloc.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[tty.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[turtle.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[turtledemo] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[types.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[typing.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[unittest] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[urllib] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[uu.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[uuid.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[venv] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[warnings.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[wave.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[weakref.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[webbrowser.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[wsgiref] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[xdrlib.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[xml] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[xmlrpc] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[zipapp.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[zipfile.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[zipimport.py] SKIPPED
tests/primer/test_primer_stdlib.py::test_primer_stdlib_no_crash[zoneinfo] SKIPPED
tests/profile/test_profile_against_externals.py::test_run[numpy-https://github.com/numpy/numpy.git] SKIPPED
tests/pyreverse/test_diadefs.py::TestDefaultDiadefGenerator::test_extract_relations PASSED
tests/pyreverse/test_diadefs.py::TestDefaultDiadefGenerator::test_functional_relation_extraction PASSED
tests/pyreverse/test_diadefs.py::TestShowOptions::test_show_builtin PASSED
tests/pyreverse/test_diadefs.py::TestShowOptions::test_show_stdlib PASSED
tests/pyreverse/test_diadefs.py::test_default_values PASSED
tests/pyreverse/test_diadefs.py::test_known_values1 PASSED
tests/pyreverse/test_diadefs.py::test_known_values2 PASSED
tests/pyreverse/test_diadefs.py::test_known_values3 PASSED
tests/pyreverse/test_diadefs.py::test_known_values4 PASSED
tests/pyreverse/test_diadefs.py::test_option_values PASSED
tests/pyreverse/test_diadefs.py::test_regression_dataclasses_inference PASSED
tests/pyreverse/test_diagrams.py::test_property_handling PASSED
tests/pyreverse/test_inspector.py::test_from_directory PASSED
tests/pyreverse/test_inspector.py::test_instance_attrs_resolution PASSED
tests/pyreverse/test_inspector.py::test_locals_assignment_resolution PASSED
tests/pyreverse/test_inspector.py::test_project_node PASSED
tests/pyreverse/test_main.py::test_class_command PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[all_ancestors-None] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[all_associated-None] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[classes-expected_default1] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[colorized-0] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[ignore_list-expected_default12] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[max_color_depth-2] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[mode-PUB_ONLY] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[module_names-None] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[output_directory-] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[output_format-dot] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[project-] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[show_ancestors-None] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[show_associated-None] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[show_builtin-0] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_defaults[show_stdlib-0] PASSED
tests/pyreverse/test_main.py::test_command_line_arguments_yes_no PASSED
tests/pyreverse/test_main.py::test_graphviz_cant_determine_supported_formats PASSED
tests/pyreverse/test_main.py::test_graphviz_supported_image_format PASSED
tests/pyreverse/test_main.py::test_graphviz_unsupported_image_format PASSED
tests/pyreverse/test_main.py::test_project_root_in_sys_path[$(@D)/tests/data] PASSED
tests/pyreverse/test_main.py::test_project_root_in_sys_path[$(@D)/tests] PASSED
tests/pyreverse/test_main.py::test_verbose PASSED
tests/pyreverse/test_main.py::test_version_info PASSED
tests/pyreverse/test_printer.py::TestPlantUmlPrinter::test_node_without_properties PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.BOTTOM_TO_TOP-DotPrinter-rankdir=BT--2] PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.LEFT_TO_RIGHT-DotPrinter-rankdir=LR--2] PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.LEFT_TO_RIGHT-PlantUmlPrinter-left to right direction--1] PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.RIGHT_TO_LEFT-DotPrinter-rankdir=RL--2] PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.TOP_TO_BOTTOM-DotPrinter-rankdir=TB--2] PASSED
tests/pyreverse/test_printer.py::test_explicit_layout[Layout.TOP_TO_BOTTOM-PlantUmlPrinter-top to bottom direction--1] PASSED
tests/pyreverse/test_printer.py::test_method_arguments_none PASSED
tests/pyreverse/test_printer.py::test_unsupported_layout[Layout.BOTTOM_TO_TOP-PlantUmlPrinter] PASSED
tests/pyreverse/test_printer.py::test_unsupported_layout[Layout.RIGHT_TO_LEFT-PlantUmlPrinter] PASSED
tests/pyreverse/test_printer_factory.py::test_get_printer_for_filetype[dot-DotPrinter] PASSED
tests/pyreverse/test_printer_factory.py::test_get_printer_for_filetype[plantuml-PlantUmlPrinter] PASSED
tests/pyreverse/test_printer_factory.py::test_get_printer_for_filetype[png-DotPrinter] PASSED
tests/pyreverse/test_printer_factory.py::test_get_printer_for_filetype[puml-PlantUmlPrinter] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[attributes_annotation] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[colorized] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[custom_colors] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[delayed_external_monkey_patching] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[duplicates] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[fields] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[instance_attributes] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[line_breaks] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[method_annotation] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[no_standalone] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[pep420] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[regression_8031] PASSED
tests/pyreverse/test_pyreverse_functional.py::test_class_diagrams[simple_inheritance] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_annassign[a: Optional[str] = 'str'-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_annassign[a: Optional[str] = None-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_annassign[a: str = 'mystr'-str] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_annassign[a: str = None-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: Optional[str] = 'str'): self.x = x-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: Optional[str] = None):  self.x = x-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: Optional[str]):         self.x = x-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: str = 'str'):           self.x = x-str] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: str = None):            self.x = x-Optional[str]] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_assignattr[def __init__(self, x: str):                   self.x = x-str] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_label_of_return_type[def f() -> 'MyType': pass-'MyType'] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_label_of_return_type[def f() -> None: pass-None] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_label_of_return_type[def f() -> int: pass-int] PASSED
tests/pyreverse/test_utils.py::test_get_annotation_label_of_return_type[def f(a) -> Optional[int]: return 1 if a else None-Optional[int]] PASSED
tests/pyreverse/test_utils.py::test_get_visibility[names0-special] PASSED
tests/pyreverse/test_utils.py::test_get_visibility[names1-private] PASSED
tests/pyreverse/test_utils.py::test_get_visibility[names2-public] PASSED
tests/pyreverse/test_utils.py::test_get_visibility[names3-protected] PASSED
tests/pyreverse/test_utils.py::test_infer_node_1 PASSED
tests/pyreverse/test_utils.py::test_infer_node_2 PASSED
tests/pyreverse/test_utils.py::test_infer_node_3 PASSED
tests/pyreverse/test_utils.py::test_infer_node_4 PASSED
tests/pyreverse/test_writer.py::test_color_for_stdlib_module PASSED
tests/pyreverse/test_writer.py::test_colorized_dot_files[classes_colorized.dot] PASSED
tests/pyreverse/test_writer.py::test_colorized_dot_files[packages_colorized.dot] PASSED
tests/pyreverse/test_writer.py::test_colorized_puml_files[classes_colorized.puml] PASSED
tests/pyreverse/test_writer.py::test_colorized_puml_files[packages_colorized.puml] PASSED
tests/pyreverse/test_writer.py::test_dot_files[classes_No_Name.dot] PASSED
tests/pyreverse/test_writer.py::test_dot_files[packages_No_Name.dot] PASSED
tests/pyreverse/test_writer.py::test_html_files[classes_No_Name.html] PASSED
tests/pyreverse/test_writer.py::test_html_files[packages_No_Name.html] PASSED
tests/pyreverse/test_writer.py::test_mmd_files[classes_No_Name.mmd] PASSED
tests/pyreverse/test_writer.py::test_mmd_files[packages_No_Name.mmd] PASSED
tests/pyreverse/test_writer.py::test_no_standalone_dot_files[classes_no_standalone.dot] PASSED
tests/pyreverse/test_writer.py::test_no_standalone_dot_files[packages_no_standalone.dot] PASSED
tests/pyreverse/test_writer.py::test_package_name_with_slash PASSED
tests/pyreverse/test_writer.py::test_puml_files[classes_No_Name.puml] PASSED
tests/pyreverse/test_writer.py::test_puml_files[packages_No_Name.puml] PASSED
tests/pyreverse/test_writer.py::test_type_check_imports_dot_files[classes_type_check_imports.dot] PASSED
tests/pyreverse/test_writer.py::test_type_check_imports_dot_files[packages_type_check_imports.dot] PASSED
tests/reporters/unittest_json_reporter.py::test_json2_result_with_broken_score PASSED
tests/reporters/unittest_json_reporter.py::test_serialize_deserialize[everything-defined] PASSED
tests/reporters/unittest_json_reporter.py::test_serialize_deserialize_for_v2[everything-defined] PASSED
tests/reporters/unittest_json_reporter.py::test_serialize_deserialize_for_v2[not-everything-defined] PASSED
tests/reporters/unittest_json_reporter.py::test_simple_json2_output PASSED
tests/reporters/unittest_json_reporter.py::test_simple_json_output_no_score PASSED
tests/reporters/unittest_json_reporter.py::test_simple_json_output_no_score_with_end_line PASSED
tests/reporters/unittest_reporting.py::test_display_results_is_renamed PASSED
tests/reporters/unittest_reporting.py::test_multi_format_output PASSED
tests/reporters/unittest_reporting.py::test_multi_reporter_independant_messages PASSED
tests/reporters/unittest_reporting.py::test_parseable_output_deprecated PASSED
tests/reporters/unittest_reporting.py::test_parseable_output_regression PASSED
tests/reporters/unittest_reporting.py::test_template_option PASSED
tests/reporters/unittest_reporting.py::test_template_option_default PASSED
tests/reporters/unittest_reporting.py::test_template_option_end_line PASSED
tests/reporters/unittest_reporting.py::test_template_option_non_existing PASSED
tests/reporters/unittest_reporting.py::test_template_option_with_header PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[1-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[1-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[1-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[10-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[10-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[10-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[2-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[2-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[2-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-1-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-1-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-1-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_compare_workers_to_single_proc[3-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_cyclic_import_parallel PASSED
tests/test_check_parallel.py::TestCheckParallel::test_cyclic_import_parallel_disabled_globally PASSED
tests/test_check_parallel.py::TestCheckParallel::test_cyclic_import_parallel_disabled_locally PASSED
tests/test_check_parallel.py::TestCheckParallel::test_invoke_single_job PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[10-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[10-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[10-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[2-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[2-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[2-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-1-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-1-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-1-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-2-1] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-2-2] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_map_reduce[3-2-3] PASSED
tests/test_check_parallel.py::TestCheckParallel::test_no_deadlock_due_to_initializer_error PASSED
tests/test_check_parallel.py::TestCheckParallel::test_sequential_checkers_work PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_linter_with_unpickleable_plugins_is_pickleable PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_check_sequential_checker PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_check_single_file_no_checkers PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_check_single_file_uninitialised PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_initialize PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_initialize_pickling PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_initialize_reregisters_custom_plugins PASSED
tests/test_check_parallel.py::TestCheckParallelFramework::test_worker_initialize_with_package_paths PASSED
tests/test_func.py::test_functionality[func_i0011.py] PASSED
tests/test_func.py::test_functionality[func_i0012.py] PASSED
tests/test_func.py::test_functionality[func_i0013.py] PASSED
tests/test_func.py::test_functionality[func_i0014.py] PASSED
tests/test_func.py::test_functionality[func_i0020.py] PASSED
tests/test_func.py::test_functionality[func_i0022.py] PASSED
tests/test_func.py::test_functionality[func_noerror_cycle] PASSED
tests/test_func.py::test_functionality[func_w0401.py] PASSED
tests/test_func.py::test_functionality[func_w0401_disabled.py] PASSED
tests/test_func.py::test_functionality[func_w0401_disabled_in_func.py] PASSED
tests/test_func.py::test_functionality[func_w0401_package] PASSED
tests/test_func.py::test_functionality[func_w0801.py] PASSED
tests/test_functional.py::test_functional[.#emacs_file_lock] PASSED
tests/test_functional.py::test_functional[.#emacs_file_lock_by_conf] PASSED
tests/test_functional.py::test_functional[.#emacs_file_lock_redefined_conf] PASSED
tests/test_functional.py::test_functional[abstract_abc_methods] PASSED
tests/test_functional.py::test_functional[abstract_class_instantiated] PASSED
tests/test_functional.py::test_functional[abstract_class_instantiated_in_class] PASSED
tests/test_functional.py::test_functional[abstract_method] PASSED
tests/test_functional.py::test_functional[access_attr_before_def_false_positive] PASSED
tests/test_functional.py::test_functional[access_member_before_definition] PASSED
tests/test_functional.py::test_functional[access_to__name__] PASSED
tests/test_functional.py::test_functional[access_to_protected_members] PASSED
tests/test_functional.py::test_functional[access_to_protected_members_typing] PASSED
tests/test_functional.py::test_functional[alternative_union_syntax] SKIPPED
tests/test_functional.py::test_functional[alternative_union_syntax_error] PASSED
tests/test_functional.py::test_functional[alternative_union_syntax_py37] PASSED
tests/test_functional.py::test_functional[alternative_union_syntax_regession_8119] SKIPPED
tests/test_functional.py::test_functional[anomalous_backslash_escape] PASSED
tests/test_functional.py::test_functional[anomalous_unicode_escape] PASSED
tests/test_functional.py::test_functional[arguments] PASSED
tests/test_functional.py::test_functional[arguments_differ] PASSED
tests/test_functional.py::test_functional[arguments_differ_issue5371] PASSED
tests/test_functional.py::test_functional[arguments_out_of_order] PASSED
tests/test_functional.py::test_functional[arguments_renamed] PASSED
tests/test_functional.py::test_functional[assert_on_string_literal] PASSED
tests/test_functional.py::test_functional[assert_on_tuple] PASSED
tests/test_functional.py::test_functional[assigning_non_slot] PASSED
tests/test_functional.py::test_functional[assigning_non_slot_4509] PASSED
tests/test_functional.py::test_functional[assignment_expression] PASSED
tests/test_functional.py::test_functional[assignment_from_no_return] PASSED
tests/test_functional.py::test_functional[assignment_from_no_return_2] PASSED
tests/test_functional.py::test_functional[assignment_from_no_return_py3] PASSED
tests/test_functional.py::test_functional[async_functions] PASSED
tests/test_functional.py::test_functional[attribute_defined_outside_init] PASSED
tests/test_functional.py::test_functional[attribute_defined_outside_init_py38] PASSED
tests/test_functional.py::test_functional[await_outside_async] PASSED
tests/test_functional.py::test_functional[bad_builtin_extension] PASSED
tests/test_functional.py::test_functional[bad_builtins] PASSED
tests/test_functional.py::test_functional[bad_chained_comparison] PASSED
tests/test_functional.py::test_functional[bad_char_backspace] PASSED
tests/test_functional.py::test_functional[bad_char_carriage_return] PASSED
tests/test_functional.py::test_functional[bad_char_esc] PASSED
tests/test_functional.py::test_functional[bad_char_sub] PASSED
tests/test_functional.py::test_functional[bad_char_zero_width_space] PASSED
tests/test_functional.py::test_functional[bad_dunder_name] PASSED
tests/test_functional.py::test_functional[bad_except_order] PASSED
tests/test_functional.py::test_functional[bad_exception_cause] PASSED
tests/test_functional.py::test_functional[bad_indentation] PASSED
tests/test_functional.py::test_functional[bad_inline_option] PASSED
tests/test_functional.py::test_functional[bad_open_mode] PASSED
tests/test_functional.py::test_functional[bad_option_value] PASSED
tests/test_functional.py::test_functional[bad_option_value_disable] PASSED
tests/test_functional.py::test_functional[bad_reversed_sequence] PASSED
tests/test_functional.py::test_functional[bad_reversed_sequence_py37] PASSED
tests/test_functional.py::test_functional[bad_reversed_sequence_py38] PASSED
tests/test_functional.py::test_functional[bad_staticmethod_argument] PASSED
tests/test_functional.py::test_functional[bad_string_format_type] PASSED
tests/test_functional.py::test_functional[bad_thread_instantiation] PASSED
tests/test_functional.py::test_functional[bare_except] PASSED
tests/test_functional.py::test_functional[base_init_vars] PASSED
tests/test_functional.py::test_functional[boolean_datetime] PASSED
tests/test_functional.py::test_functional[broad_exception_caught] PASSED
tests/test_functional.py::test_functional[broad_exception_raised] PASSED
tests/test_functional.py::test_functional[broad_try_clause_extension] PASSED
tests/test_functional.py::test_functional[bugfix_local_scope_metaclass_1177] PASSED
tests/test_functional.py::test_functional[builtin_module_test] PASSED
tests/test_functional.py::test_functional[cached_property] PASSED
tests/test_functional.py::test_functional[cell_var_from_loop_enabled_regression] PASSED
tests/test_functional.py::test_functional[cellvar_escaping_loop] PASSED
tests/test_functional.py::test_functional[check_elif] PASSED
tests/test_functional.py::test_functional[class_attributes] PASSED
tests/test_functional.py::test_functional[class_members] PASSED
tests/test_functional.py::test_functional[class_members_py30] PASSED
tests/test_functional.py::test_functional[class_protocol_ellipsis] PASSED
tests/test_functional.py::test_functional[class_scope] PASSED
tests/test_functional.py::test_functional[class_variable_slots_conflict_exempted] PASSED
tests/test_functional.py::test_functional[classes_meth_could_be_a_function] PASSED
tests/test_functional.py::test_functional[classes_protected_member_access] PASSED
tests/test_functional.py::test_functional[comparison_of_constants] PASSED
tests/test_functional.py::test_functional[comparison_with_callable] PASSED
tests/test_functional.py::test_functional[comparison_with_callable_typing_constants] PASSED
tests/test_functional.py::test_functional[condition_evals_to_constant] PASSED
tests/test_functional.py::test_functional[confidence_filter] PASSED
tests/test_functional.py::test_functional[confusing_elif] PASSED
tests/test_functional.py::test_functional[confusing_with_statement] PASSED
tests/test_functional.py::test_functional[consider_iterating_dictionary] PASSED
tests/test_functional.py::test_functional[consider_join] PASSED
tests/test_functional.py::test_functional[consider_merging_isinstance] PASSED
tests/test_functional.py::test_functional[consider_refactoring_into_while_condition] PASSED
tests/test_functional.py::test_functional[consider_refactoring_into_while_condition_py38] PASSED
tests/test_functional.py::test_functional[consider_swap_variables] PASSED
tests/test_functional.py::test_functional[consider_ternary_expression] PASSED
tests/test_functional.py::test_functional[consider_using_dict_comprehension] PASSED
tests/test_functional.py::test_functional[consider_using_dict_items] PASSED
tests/test_functional.py::test_functional[consider_using_enumerate] PASSED
tests/test_functional.py::test_functional[consider_using_f_string] PASSED
tests/test_functional.py::test_functional[consider_using_generator] PASSED
tests/test_functional.py::test_functional[consider_using_get] PASSED
tests/test_functional.py::test_functional[consider_using_in] PASSED
tests/test_functional.py::test_functional[consider_using_min_max_builtin] PASSED
tests/test_functional.py::test_functional[consider_using_set_comprehension] PASSED
tests/test_functional.py::test_functional[consider_using_sys_exit] PASSED
tests/test_functional.py::test_functional[consider_using_sys_exit_exempted] PASSED
tests/test_functional.py::test_functional[consider_using_sys_exit_local_scope] PASSED
tests/test_functional.py::test_functional[consider_using_with] PASSED
tests/test_functional.py::test_functional[consider_using_with_open] PASSED
tests/test_functional.py::test_functional[continue_in_finally] PASSED
tests/test_functional.py::test_functional[control_pragmas] PASSED
tests/test_functional.py::test_functional[crash_missing_module_type] PASSED
tests/test_functional.py::test_functional[cs_consider_using_assignment_expr] PASSED
tests/test_functional.py::test_functional[cs_consider_using_augmented_assign] PASSED
tests/test_functional.py::test_functional[cs_consider_using_namedtuple_or_dataclass] PASSED
tests/test_functional.py::test_functional[cs_consider_using_tuple] PASSED
tests/test_functional.py::test_functional[cs_default] PASSED
tests/test_functional.py::test_functional[cs_prefer_typing_namedtuple] PASSED
tests/test_functional.py::test_functional[cs_py_version_35] PASSED
tests/test_functional.py::test_functional[ctor_arguments] PASSED
tests/test_functional.py::test_functional[dangerous_default_value] PASSED
tests/test_functional.py::test_functional[dataclass_kw_only] SKIPPED
tests/test_functional.py::test_functional[dataclass_parameter] SKIPPED
tests/test_functional.py::test_functional[dataclass_typecheck] PASSED
tests/test_functional.py::test_functional[dataclass_with_default_factory] PASSED
tests/test_functional.py::test_functional[dataclass_with_field] PASSED
tests/test_functional.py::test_functional[decorator_scope] PASSED
tests/test_functional.py::test_functional[decorator_unused] PASSED
tests/test_functional.py::test_functional[defined_and_used_on_same_line] PASSED
tests/test_functional.py::test_functional[deprecated_class_py33] PASSED
tests/test_functional.py::test_functional[deprecated_decorators] PASSED
tests/test_functional.py::test_functional[deprecated_method_suppression] PASSED
tests/test_functional.py::test_functional[deprecated_methods_py$(PYV)] PASSED
tests/test_functional.py::test_functional[deprecated_methods_py36] PASSED
tests/test_functional.py::test_functional[deprecated_methods_py38] SKIPPED
tests/test_functional.py::test_functional[deprecated_methods_py3] SKIPPED
tests/test_functional.py::test_functional[deprecated_module_py$(PYV)] PASSED
tests/test_functional.py::test_functional[deprecated_module_py$(PYV)_earlier_pyversion] PASSED
tests/test_functional.py::test_functional[deprecated_module_py310] SKIPPED
tests/test_functional.py::test_functional[deprecated_module_py33] PASSED
tests/test_functional.py::test_functional[deprecated_module_py36] PASSED
tests/test_functional.py::test_functional[deprecated_module_py3] PASSED
tests/test_functional.py::test_functional[deprecated_module_py4] PASSED
tests/test_functional.py::test_functional[deprecated_module_redundant] PASSED
tests/test_functional.py::test_functional[deprecated_module_uninstalled] PASSED
tests/test_functional.py::test_functional[dict_init_mutate] PASSED
tests/test_functional.py::test_functional[dict_iter_missing_items] PASSED
tests/test_functional.py::test_functional[disable_msg_github_issue_1389] PASSED
tests/test_functional.py::test_functional[disable_msg_next_line] PASSED
tests/test_functional.py::test_functional[disable_ungrouped_imports] PASSED
tests/test_functional.py::test_functional[disable_wrong_import_order] PASSED
tests/test_functional.py::test_functional[disable_wrong_import_position] PASSED
tests/test_functional.py::test_functional[disabled_msgid_in_pylintrc] PASSED
tests/test_functional.py::test_functional[disallowed_name] PASSED
tests/test_functional.py::test_functional[docparams] PASSED
tests/test_functional.py::test_functional[docparams_py38] PASSED
tests/test_functional.py::test_functional[docstrings] PASSED
tests/test_functional.py::test_functional[docstyle_first_line_empty] PASSED
tests/test_functional.py::test_functional[docstyle_quotes] PASSED
tests/test_functional.py::test_functional[dot_dot_relative_import] PASSED
tests/test_functional.py::test_functional[dot_relative_import] PASSED
tests/test_functional.py::test_functional[dotted_ancestor] PASSED
tests/test_functional.py::test_functional[duplicate_argument_name] PASSED
tests/test_functional.py::test_functional[duplicate_argument_name_py3] PASSED
tests/test_functional.py::test_functional[duplicate_bases] PASSED
tests/test_functional.py::test_functional[duplicate_dict_literal_key] PASSED
tests/test_functional.py::test_functional[duplicate_except] PASSED
tests/test_functional.py::test_functional[duplicate_string_formatting_argument] PASSED
tests/test_functional.py::test_functional[duplicate_value] PASSED
tests/test_functional.py::test_functional[e1101_9588_base_attr_aug_assign] PASSED
tests/test_functional.py::test_functional[empty_comment] PASSED
tests/test_functional.py::test_functional[empty_docstring] PASSED
tests/test_functional.py::test_functional[enum_self_defined_member_5138] PASSED
tests/test_functional.py::test_functional[enum_self_defined_member_6805] PASSED
tests/test_functional.py::test_functional[enum_subclasses] PASSED
tests/test_functional.py::test_functional[eq_without_hash] PASSED
tests/test_functional.py::test_functional[eval_used] PASSED
tests/test_functional.py::test_functional[exception_is_binary_op] PASSED
tests/test_functional.py::test_functional[excess_escapes] PASSED
tests/test_functional.py::test_functional[exec_used] PASSED
tests/test_functional.py::test_functional[external_classmethod_crash] PASSED
tests/test_functional.py::test_functional[f_string_without_interpolation] PASSED
tests/test_functional.py::test_functional[fallback_import_disabled] PASSED
tests/test_functional.py::test_functional[fallback_import_enabled] PASSED
tests/test_functional.py::test_functional[first_arg] PASSED
tests/test_functional.py::test_functional[fixme] PASSED
tests/test_functional.py::test_functional[fixme_bad_formatting_1139] PASSED
tests/test_functional.py::test_functional[for_any_all] PASSED
tests/test_functional.py::test_functional[forgotten_debug_statement] PASSED
tests/test_functional.py::test_functional[formatted_string_literal_with_if] PASSED
tests/test_functional.py::test_functional[func_disable_linebased] PASSED
tests/test_functional.py::test_functional[function_redefined] PASSED
tests/test_functional.py::test_functional[function_redefined_2540] PASSED
tests/test_functional.py::test_functional[future_import] PASSED
tests/test_functional.py::test_functional[future_unicode_literals] PASSED
tests/test_functional.py::test_functional[generated_members] PASSED
tests/test_functional.py::test_functional[generic_alias_collections] PASSED
tests/test_functional.py::test_functional[generic_alias_collections_py37] SKIPPED
tests/test_functional.py::test_functional[generic_alias_collections_py37_with_typing] SKIPPED
tests/test_functional.py::test_functional[generic_alias_mixed_py$(PYV)] PASSED
tests/test_functional.py::test_functional[generic_alias_mixed_py37] SKIPPED
tests/test_functional.py::test_functional[generic_alias_postponed_evaluation_py37] SKIPPED
tests/test_functional.py::test_functional[generic_alias_related] PASSED
tests/test_functional.py::test_functional[generic_alias_related_py$(PYV)] PASSED
tests/test_functional.py::test_functional[generic_alias_side_effects] PASSED
tests/test_functional.py::test_functional[generic_alias_typing] PASSED
tests/test_functional.py::test_functional[genexp_in_class_scope] PASSED
tests/test_functional.py::test_functional[genexpr_variable_scope] PASSED
tests/test_functional.py::test_functional[globals] PASSED
tests/test_functional.py::test_functional[implicit_flag_alias] PASSED
tests/test_functional.py::test_functional[implicit_str_concat] PASSED
tests/test_functional.py::test_functional[implicit_str_concat_latin1] PASSED
tests/test_functional.py::test_functional[implicit_str_concat_multiline] PASSED
tests/test_functional.py::test_functional[implicit_str_concat_utf8] PASSED
tests/test_functional.py::test_functional[import_aliasing] PASSED
tests/test_functional.py::test_functional[import_dummy] PASSED
tests/test_functional.py::test_functional[import_error] PASSED
tests/test_functional.py::test_functional[import_itself] PASSED
tests/test_functional.py::test_functional[import_outside_toplevel] PASSED
tests/test_functional.py::test_functional[inconsistent_mro] PASSED
tests/test_functional.py::test_functional[inconsistent_quotes2] PASSED
tests/test_functional.py::test_functional[inconsistent_quotes] PASSED
tests/test_functional.py::test_functional[inconsistent_quotes_fstring] PASSED
tests/test_functional.py::test_functional[inconsistent_quotes_fstring_py312] SKIPPED
tests/test_functional.py::test_functional[inconsistent_quotes_fstring_py312_311] SKIPPED
tests/test_functional.py::test_functional[inconsistent_returns] PASSED
tests/test_functional.py::test_functional[inconsistent_returns_noreturn] PASSED
tests/test_functional.py::test_functional[inference_crash_4692] PASSED
tests/test_functional.py::test_functional[inherit_non_class] PASSED
tests/test_functional.py::test_functional[init_is_generator] PASSED
tests/test_functional.py::test_functional[init_not_called] PASSED
tests/test_functional.py::test_functional[init_return_from_inner_function] PASSED
tests/test_functional.py::test_functional[init_subclass_classmethod] PASSED
tests/test_functional.py::test_functional[inner_classes] PASSED
tests/test_functional.py::test_functional[invalid_all_format] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_1] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_2] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_3] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_4] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_5] PASSED
tests/test_functional.py::test_functional[invalid_all_format_valid_6] PASSED
tests/test_functional.py::test_functional[invalid_all_object] PASSED
tests/test_functional.py::test_functional[invalid_bool_returned] PASSED
tests/test_functional.py::test_functional[invalid_bytes_returned] PASSED
tests/test_functional.py::test_functional[invalid_class_object] PASSED
tests/test_functional.py::test_functional[invalid_enum_extension] PASSED
tests/test_functional.py::test_functional[invalid_envvar_value] PASSED
tests/test_functional.py::test_functional[invalid_exceptions_caught] PASSED
tests/test_functional.py::test_functional[invalid_exceptions_raised] PASSED
tests/test_functional.py::test_functional[invalid_field_call] PASSED
tests/test_functional.py::test_functional[invalid_format_returned] PASSED
tests/test_functional.py::test_functional[invalid_getnewargs_ex_returned] PASSED
tests/test_functional.py::test_functional[invalid_getnewargs_returned] PASSED
tests/test_functional.py::test_functional[invalid_hash_returned] PASSED
tests/test_functional.py::test_functional[invalid_index_returned] PASSED
tests/test_functional.py::test_functional[invalid_length_hint_returned] PASSED
tests/test_functional.py::test_functional[invalid_length_returned] PASSED
tests/test_functional.py::test_functional[invalid_metaclass] PASSED
tests/test_functional.py::test_functional[invalid_metaclass_py3] PASSED
tests/test_functional.py::test_functional[invalid_name-module-disable] PASSED
tests/test_functional.py::test_functional[invalid_name] PASSED
tests/test_functional.py::test_functional[invalid_name_enum] PASSED
tests/test_functional.py::test_functional[invalid_name_issue_3405] PASSED
tests/test_functional.py::test_functional[invalid_name_module_level] PASSED
tests/test_functional.py::test_functional[invalid_name_multinaming_style] PASSED
tests/test_functional.py::test_functional[invalid_name_property] PASSED
tests/test_functional.py::test_functional[invalid_overridden_method] PASSED
tests/test_functional.py::test_functional[invalid_repr_returned] PASSED
tests/test_functional.py::test_functional[invalid_sequence_index] PASSED
tests/test_functional.py::test_functional[invalid_slice_index] PASSED
tests/test_functional.py::test_functional[invalid_star_assignment_target] PASSED
tests/test_functional.py::test_functional[invalid_str_returned] PASSED
tests/test_functional.py::test_functional[invalid_unary_operand_type] PASSED
tests/test_functional.py::test_functional[isinstance_second_argument] PASSED
tests/test_functional.py::test_functional[isinstance_second_argument_py310] SKIPPED
tests/test_functional.py::test_functional[iterable_context] PASSED
tests/test_functional.py::test_functional[iterable_context_asyncio] PASSED
tests/test_functional.py::test_functional[iterable_context_py36] PASSED
tests/test_functional.py::test_functional[iterable_context_py3] PASSED
tests/test_functional.py::test_functional[keyword_arg_before_vararg] PASSED
tests/test_functional.py::test_functional[keyword_arg_before_vararg_positional_only] PASSED
tests/test_functional.py::test_functional[kwarg_superseded_by_positional_arg] PASSED
tests/test_functional.py::test_functional[lambda_use_before_assign] PASSED
tests/test_functional.py::test_functional[line_endings] PASSED
tests/test_functional.py::test_functional[line_too_long] PASSED
tests/test_functional.py::test_functional[line_too_long_end_of_module] PASSED
tests/test_functional.py::test_functional[line_too_long_with_utf8] PASSED
tests/test_functional.py::test_functional[line_too_long_with_utf8_2] PASSED
tests/test_functional.py::test_functional[literal_comparison] PASSED
tests/test_functional.py::test_functional[logging_format_interpolation] PASSED
tests/test_functional.py::test_functional[logging_format_interpolation_py36] PASSED
tests/test_functional.py::test_functional[logging_format_interpolation_style] PASSED
tests/test_functional.py::test_functional[logging_fstring_interpolation_py36] PASSED
tests/test_functional.py::test_functional[logging_fstring_interpolation_py37] PASSED
tests/test_functional.py::test_functional[logging_not_lazy] PASSED
tests/test_functional.py::test_functional[logging_not_lazy_module] PASSED
tests/test_functional.py::test_functional[logging_not_lazy_with_logger] PASSED
tests/test_functional.py::test_functional[logging_too_few_args] PASSED
tests/test_functional.py::test_functional[logging_too_many_args] PASSED
tests/test_functional.py::test_functional[logical_tautology] PASSED
tests/test_functional.py::test_functional[loopvar_in_dict_comp] PASSED
tests/test_functional.py::test_functional[lost_exception] PASSED
tests/test_functional.py::test_functional[magic_value_comparison] PASSED
tests/test_functional.py::test_functional[mapping_context] PASSED
tests/test_functional.py::test_functional[mapping_context_py3] PASSED
tests/test_functional.py::test_functional[mccabe] PASSED
tests/test_functional.py::test_functional[member_checks] PASSED
tests/test_functional.py::test_functional[member_checks_async] PASSED
tests/test_functional.py::test_functional[member_checks_hints] PASSED
tests/test_functional.py::test_functional[member_checks_ignore_none] PASSED
tests/test_functional.py::test_functional[member_checks_inference_improvements] PASSED
tests/test_functional.py::test_functional[member_checks_no_hints] PASSED
tests/test_functional.py::test_functional[member_checks_opaque] PASSED
tests/test_functional.py::test_functional[member_checks_typed_annotations] PASSED
tests/test_functional.py::test_functional[membership_protocol] PASSED
tests/test_functional.py::test_functional[membership_protocol_py3] PASSED
tests/test_functional.py::test_functional[metaclass_attr_access] PASSED
tests/test_functional.py::test_functional[method_cache_max_size_none] PASSED
tests/test_functional.py::test_functional[method_cache_max_size_none_py$(PYV)] PASSED
tests/test_functional.py::test_functional[method_hidden] PASSED
tests/test_functional.py::test_functional[method_hidden_py$(PYV)] PASSED
tests/test_functional.py::test_functional[misplaced_bare_raise] PASSED
tests/test_functional.py::test_functional[misplaced_comparison_constant] PASSED
tests/test_functional.py::test_functional[misplaced_format_function] PASSED
tests/test_functional.py::test_functional[misplaced_future] PASSED
tests/test_functional.py::test_functional[missing_class_docstring] PASSED
tests/test_functional.py::test_functional[missing_docstring] PASSED
tests/test_functional.py::test_functional[missing_docstring_new_style] PASSED
tests/test_functional.py::test_functional[missing_final_newline] PASSED
tests/test_functional.py::test_functional[missing_function_docstring] PASSED
tests/test_functional.py::test_functional[missing_function_docstring_min_length] PASSED
tests/test_functional.py::test_functional[missing_function_docstring_rgx] PASSED
tests/test_functional.py::test_functional[missing_kwoa] PASSED
tests/test_functional.py::test_functional[missing_module_docstring] PASSED
tests/test_functional.py::test_functional[missing_module_docstring_disabled] PASSED
tests/test_functional.py::test_functional[missing_module_docstring_empty] PASSED
tests/test_functional.py::test_functional[missing_param_doc0] PASSED
tests/test_functional.py::test_functional[missing_param_doc1] PASSED
tests/test_functional.py::test_functional[missing_param_doc_py38] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_Google] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_Numpy] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_min_length] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_no_doc_rgx_check_init] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_no_doc_rgx_check_none] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_no_doc_rgx_default] PASSED
tests/test_functional.py::test_functional[missing_param_doc_required_no_doc_rgx_test_all] PASSED
tests/test_functional.py::test_functional[missing_parentheses_for_call_in_test] PASSED
tests/test_functional.py::test_functional[missing_raises_doc] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_Google] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_Numpy] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_options] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_required] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_required_Google] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_required_Numpy] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_required_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_raises_doc_required_exc_inheritance] PASSED
tests/test_functional.py::test_functional[missing_return_doc] PASSED
tests/test_functional.py::test_functional[missing_return_doc_Google] PASSED
tests/test_functional.py::test_functional[missing_return_doc_Numpy] PASSED
tests/test_functional.py::test_functional[missing_return_doc_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_return_doc_required] PASSED
tests/test_functional.py::test_functional[missing_return_doc_required_Google] PASSED
tests/test_functional.py::test_functional[missing_return_doc_required_Numpy] PASSED
tests/test_functional.py::test_functional[missing_return_doc_required_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_self_argument] PASSED
tests/test_functional.py::test_functional[missing_timeout] PASSED
tests/test_functional.py::test_functional[missing_yield_doc] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_Google] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_Numpy] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_Sphinx] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_required] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_required_Google] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_required_Numpy] PASSED
tests/test_functional.py::test_functional[missing_yield_doc_required_Sphinx] PASSED
tests/test_functional.py::test_functional[mixin_class_rgx] PASSED
tests/test_functional.py::test_functional[modified_iterating] PASSED
tests/test_functional.py::test_functional[module___dict__] PASSED
tests/test_functional.py::test_functional[monkeypatch_method] PASSED
tests/test_functional.py::test_functional[multiple_imports] PASSED
tests/test_functional.py::test_functional[multiple_statements] PASSED
tests/test_functional.py::test_functional[multiple_statements_single_line] PASSED
tests/test_functional.py::test_functional[namePresetCamelCase] PASSED
tests/test_functional.py::test_functional[name_final] PASSED
tests/test_functional.py::test_functional[name_final_snake_case] PASSED
tests/test_functional.py::test_functional[name_good_bad_names_regex] PASSED
tests/test_functional.py::test_functional[name_preset_snake_case] PASSED
tests/test_functional.py::test_functional[name_styles] PASSED
tests/test_functional.py::test_functional[named_expr_without_context_py38] PASSED
tests/test_functional.py::test_functional[namedtuple_member_inference] PASSED
tests/test_functional.py::test_functional[names_in__all__] PASSED
tests/test_functional.py::test_functional[nan_comparison_check] PASSED
tests/test_functional.py::test_functional[nested_blocks_issue1088] PASSED
tests/test_functional.py::test_functional[nested_func_defined_in_loop] PASSED
tests/test_functional.py::test_functional[nested_min_max] PASSED
tests/test_functional.py::test_functional[nested_min_max_py$(PYV)] PASSED
tests/test_functional.py::test_functional[new_style_class_py_30] PASSED
tests/test_functional.py::test_functional[no_classmethod_decorator] PASSED
tests/test_functional.py::test_functional[no_dummy_redefined] PASSED
tests/test_functional.py::test_functional[no_else_break] PASSED
tests/test_functional.py::test_functional[no_else_continue] PASSED
tests/test_functional.py::test_functional[no_else_raise] PASSED
tests/test_functional.py::test_functional[no_else_return] PASSED
tests/test_functional.py::test_functional[no_member] PASSED
tests/test_functional.py::test_functional[no_member_assign_same_line] PASSED
tests/test_functional.py::test_functional[no_member_augassign] PASSED
tests/test_functional.py::test_functional[no_member_binary_operations] PASSED
tests/test_functional.py::test_functional[no_member_dataclasses] PASSED
tests/test_functional.py::test_functional[no_member_if_statements] PASSED
tests/test_functional.py::test_functional[no_member_imports] PASSED
tests/test_functional.py::test_functional[no_member_nested_namedtuple] PASSED
tests/test_functional.py::test_functional[no_member_subclassed_dataclasses] PASSED
tests/test_functional.py::test_functional[no_member_typevar] PASSED
tests/test_functional.py::test_functional[no_method_argument_py38] PASSED
tests/test_functional.py::test_functional[no_name_in_module] PASSED
tests/test_functional.py::test_functional[no_self_argument] PASSED
tests/test_functional.py::test_functional[no_self_use] PASSED
tests/test_functional.py::test_functional[no_staticmethod_decorator] PASSED
tests/test_functional.py::test_functional[no_warning_docstring] PASSED
tests/test_functional.py::test_functional[non_ascii_import] PASSED
tests/test_functional.py::test_functional[non_ascii_import_as_bad] PASSED
tests/test_functional.py::test_functional[non_ascii_import_as_okay] PASSED
tests/test_functional.py::test_functional[non_ascii_import_from_as] PASSED
tests/test_functional.py::test_functional[non_ascii_name] PASSED
tests/test_functional.py::test_functional[non_ascii_name_assignment_expressions] PASSED
tests/test_functional.py::test_functional[non_ascii_name_backward_test_code] PASSED
tests/test_functional.py::test_functional[non_ascii_name_backward_test_msg] PASSED
tests/test_functional.py::test_functional[non_ascii_name_class] PASSED
tests/test_functional.py::test_functional[non_ascii_name_class_attribute] PASSED
tests/test_functional.py::test_functional[non_ascii_name_class_constant] PASSED
tests/test_functional.py::test_functional[non_ascii_name_class_method] PASSED
tests/test_functional.py::test_functional[non_ascii_name_decorator] PASSED
tests/test_functional.py::test_functional[non_ascii_name_dict_kwargs] PASSED
tests/test_functional.py::test_functional[non_ascii_name_for_loop] PASSED
tests/test_functional.py::test_functional[non_ascii_name_function] PASSED
tests/test_functional.py::test_functional[non_ascii_name_function_argument_py$(PYV)plus] PASSED
tests/test_functional.py::test_functional[non_ascii_name_function_argument_py38] SKIPPED
tests/test_functional.py::test_functional[non_ascii_name_inline_var] PASSED
tests/test_functional.py::test_functional[non_ascii_name_kwargs_py$(PYV)plus] PASSED
tests/test_functional.py::test_functional[non_ascii_name_kwargs_py38] SKIPPED
tests/test_functional.py::test_functional[non_ascii_name_lo\u0142] PASSED
tests/test_functional.py::test_functional[non_ascii_name_local] PASSED
tests/test_functional.py::test_functional[non_ascii_name_pos_and_kwonly_function] PASSED
tests/test_functional.py::test_functional[non_ascii_name_staticmethod] PASSED
tests/test_functional.py::test_functional[non_ascii_name_try_except] PASSED
tests/test_functional.py::test_functional[non_ascii_name_variable] PASSED
tests/test_functional.py::test_functional[non_init_parent_called] PASSED
tests/test_functional.py::test_functional[non_iterator_returned] PASSED
tests/test_functional.py::test_functional[non_parent_init_called] PASSED
tests/test_functional.py::test_functional[non_str_assignment_to_dunder_name] PASSED
tests/test_functional.py::test_functional[none_dunder_protocols] PASSED
tests/test_functional.py::test_functional[none_dunder_protocols_py38] PASSED
tests/test_functional.py::test_functional[nonexistent_operator] PASSED
tests/test_functional.py::test_functional[nonlocal_and_global] PASSED
tests/test_functional.py::test_functional[nonlocal_without_binding] PASSED
tests/test_functional.py::test_functional[not_async_context_manager] PASSED
tests/test_functional.py::test_functional[not_async_context_manager_py37] PASSED
tests/test_functional.py::test_functional[not_callable] PASSED
tests/test_functional.py::test_functional[not_context_manager] PASSED
tests/test_functional.py::test_functional[not_in_loop] PASSED
tests/test_functional.py::test_functional[object_as_class_attribute] PASSED
tests/test_functional.py::test_functional[overlapping_exceptions] PASSED
tests/test_functional.py::test_functional[overloaded_operator] PASSED
tests/test_functional.py::test_functional[overridden_final_method_py38] PASSED
tests/test_functional.py::test_functional[overridden_final_method_regression] PASSED
tests/test_functional.py::test_functional[pattern_matching] SKIPPED
tests/test_functional.py::test_functional[plugin_does_not_exists] PASSED
tests/test_functional.py::test_functional[positional_only_arguments_expected] PASSED
tests/test_functional.py::test_functional[postponed_evaluation_activated] PASSED
tests/test_functional.py::test_functional[postponed_evaluation_activated_with_alias] PASSED
tests/test_functional.py::test_functional[postponed_evaluation_not_activated] PASSED
tests/test_functional.py::test_functional[postponed_evaluation_pep585] SKIPPED
tests/test_functional.py::test_functional[postponed_evaluation_pep585_error] SKIPPED
tests/test_functional.py::test_functional[postponed_evaluation_pep585_py$(PYV)] PASSED
tests/test_functional.py::test_functional[potential_index_error] PASSED
tests/test_functional.py::test_functional[pragma_after_backslash] PASSED
tests/test_functional.py::test_functional[preferred_module] PASSED
tests/test_functional.py::test_functional[private_import] PASSED
tests/test_functional.py::test_functional[property_affectation_py26] PASSED
tests/test_functional.py::test_functional[property_with_parameters] PASSED
tests/test_functional.py::test_functional[protected_access] PASSED
tests/test_functional.py::test_functional[protected_access_access_different_scopes] PASSED
tests/test_functional.py::test_functional[protected_access_special_methods_off] PASSED
tests/test_functional.py::test_functional[protected_access_special_methods_on] PASSED
tests/test_functional.py::test_functional[protocol_classes] PASSED
tests/test_functional.py::test_functional[protocol_classes_abstract] PASSED
tests/test_functional.py::test_functional[py_version_35] PASSED
tests/test_functional.py::test_functional[raise_missing_from] PASSED
tests/test_functional.py::test_functional[raising_bad_type] PASSED
tests/test_functional.py::test_functional[raising_format_tuple] PASSED
tests/test_functional.py::test_functional[raising_non_exception] PASSED
tests/test_functional.py::test_functional[raising_self] PASSED
tests/test_functional.py::test_functional[recursion_error_2667] PASSED
tests/test_functional.py::test_functional[recursion_error_2836] PASSED
tests/test_functional.py::test_functional[recursion_error_2861] PASSED
tests/test_functional.py::test_functional[recursion_error_2899] PASSED
tests/test_functional.py::test_functional[recursion_error_2906] PASSED
tests/test_functional.py::test_functional[recursion_error_3152] PASSED
tests/test_functional.py::test_functional[recursion_error_3159] PASSED
tests/test_functional.py::test_functional[recursion_error_940] PASSED
tests/test_functional.py::test_functional[recursion_error_crash] PASSED
tests/test_functional.py::test_functional[recursion_error_crash_2683] PASSED
tests/test_functional.py::test_functional[recursion_error_crash_astroid_623] PASSED
tests/test_functional.py::test_functional[recursion_regression_2960] PASSED
tests/test_functional.py::test_functional[redeclared_assigned_name] PASSED
tests/test_functional.py::test_functional[redefine_loop] PASSED
tests/test_functional.py::test_functional[redefined_argument_from_local] PASSED
tests/test_functional.py::test_functional[redefined_builtin] PASSED
tests/test_functional.py::test_functional[redefined_builtin_allowed] PASSED
tests/test_functional.py::test_functional[redefined_except_handler] PASSED
tests/test_functional.py::test_functional[redefined_loop_name] PASSED
tests/test_functional.py::test_functional[redefined_outer_name_type_checking] PASSED
tests/test_functional.py::test_functional[redefined_slots] PASSED
tests/test_functional.py::test_functional[redefined_variable_type] PASSED
tests/test_functional.py::test_functional[redundant_typehint_argument] PASSED
tests/test_functional.py::test_functional[redundant_typehint_argument_py310] SKIPPED
tests/test_functional.py::test_functional[redundant_u_string_prefix] PASSED
tests/test_functional.py::test_functional[redundant_unittest_assert] PASSED
tests/test_functional.py::test_functional[regression_1326_crash_uninferable] PASSED
tests/test_functional.py::test_functional[regression_2306_enum_value] PASSED
tests/test_functional.py::test_functional[regression_2443_duplicate_bases] PASSED
tests/test_functional.py::test_functional[regression_2567] PASSED
tests/test_functional.py::test_functional[regression_2913] PASSED
tests/test_functional.py::test_functional[regression_2937_ifexp] PASSED
tests/test_functional.py::test_functional[regression_2964] PASSED
tests/test_functional.py::test_functional[regression_3091] PASSED
tests/test_functional.py::test_functional[regression_3231_no_member_property] PASSED
tests/test_functional.py::test_functional[regression_3416_unused_argument_raise] PASSED
tests/test_functional.py::test_functional[regression_3507_typing_alias_isinstance] PASSED
tests/test_functional.py::test_functional[regression_3535_double_enum_inherit] PASSED
tests/test_functional.py::test_functional[regression_3595_notcallable_collections] PASSED
tests/test_functional.py::test_functional[regression_3866] PASSED
tests/test_functional.py::test_functional[regression_3976] PASSED
tests/test_functional.py::test_functional[regression_3979] PASSED
tests/test_functional.py::test_functional[regression_4083_sequence_index] PASSED
tests/test_functional.py::test_functional[regression_4221_object_instanceattr] PASSED
tests/test_functional.py::test_functional[regression_4358_unsubscriptable_enum] PASSED
tests/test_functional.py::test_functional[regression_4439] PASSED
tests/test_functional.py::test_functional[regression_4612_crash_pytest_fixture] PASSED
tests/test_functional.py::test_functional[regression_4660] PASSED
tests/test_functional.py::test_functional[regression_4680] PASSED
tests/test_functional.py::test_functional[regression_4688_duplicated_bases_member_hints] PASSED
tests/test_functional.py::test_functional[regression_4723] PASSED
tests/test_functional.py::test_functional[regression_4891] PASSED
tests/test_functional.py::test_functional[regression_4982] PASSED
tests/test_functional.py::test_functional[regression_5030] PASSED
tests/test_functional.py::test_functional[regression_5048] PASSED
tests/test_functional.py::test_functional[regression_5244] PASSED
tests/test_functional.py::test_functional[regression_5408] PASSED
tests/test_functional.py::test_functional[regression_5461] PASSED
tests/test_functional.py::test_functional[regression_5479] PASSED
tests/test_functional.py::test_functional[regression_5776] PASSED
tests/test_functional.py::test_functional[regression_5801] PASSED
tests/test_functional.py::test_functional[regression_6531_crash_index_error] PASSED
tests/test_functional.py::test_functional[regression_8067] PASSED
tests/test_functional.py::test_functional[regression_8109] PASSED
tests/test_functional.py::test_functional[regression_8207] PASSED
tests/test_functional.py::test_functional[regression_9074_refactor_loop_with_unary_variable] PASSED
tests/test_functional.py::test_functional[regression___file___global] PASSED
tests/test_functional.py::test_functional[regression_distutil_import_error_73] PASSED
tests/test_functional.py::test_functional[regression_enum_1734] PASSED
tests/test_functional.py::test_functional[regression_implicit_none_with_no_return] PASSED
tests/test_functional.py::test_functional[regression_infer_call_result_3690] PASSED
tests/test_functional.py::test_functional[regression_issue_4631] PASSED
tests/test_functional.py::test_functional[regression_issue_4633] PASSED
tests/test_functional.py::test_functional[regression_newtype_fstring] PASSED
tests/test_functional.py::test_functional[regression_no_member_1078] PASSED
tests/test_functional.py::test_functional[regression_no_member_7631] PASSED
tests/test_functional.py::test_functional[regression_no_value_for_parameter] PASSED
tests/test_functional.py::test_functional[regression_node_statement] PASSED
tests/test_functional.py::test_functional[regression_node_statement_two] PASSED
tests/test_functional.py::test_functional[regression_posonly_args] PASSED
tests/test_functional.py::test_functional[regression_properties_in_class_context] PASSED
tests/test_functional.py::test_functional[regression_property_no_member_2641] PASSED
tests/test_functional.py::test_functional[regression_property_no_member_3269] PASSED
tests/test_functional.py::test_functional[regression_property_no_member_844] PASSED
tests/test_functional.py::test_functional[regression_property_no_member_870] PASSED
tests/test_functional.py::test_functional[regression_property_slots_2439] PASSED
tests/test_functional.py::test_functional[regression_protected_access] PASSED
tests/test_functional.py::test_functional[regression_too_many_arguments_2335] PASSED
tests/test_functional.py::test_functional[reimport] PASSED
tests/test_functional.py::test_functional[reimported] PASSED
tests/test_functional.py::test_functional[renamed_import_logging_not_lazy] PASSED
tests/test_functional.py::test_functional[repeated_keyword] PASSED
tests/test_functional.py::test_functional[return_in_finally] PASSED
tests/test_functional.py::test_functional[return_in_init] PASSED
tests/test_functional.py::test_functional[return_outside_function] PASSED
tests/test_functional.py::test_functional[reused_outer_loop_variable] PASSED
tests/test_functional.py::test_functional[self_assigning_variable] PASSED
tests/test_functional.py::test_functional[self_cls_assignment] PASSED
tests/test_functional.py::test_functional[shadowed_import] PASSED
tests/test_functional.py::test_functional[shallow_copy_environ] PASSED
tests/test_functional.py::test_functional[signature_differs] PASSED
tests/test_functional.py::test_functional[simplifiable_condition] PASSED
tests/test_functional.py::test_functional[simplifiable_if_expression] PASSED
tests/test_functional.py::test_functional[simplifiable_if_statement] PASSED
tests/test_functional.py::test_functional[simplify_chained_comparison] PASSED
tests/test_functional.py::test_functional[singledispatch_functions] PASSED
tests/test_functional.py::test_functional[singledispatch_method_py37] PASSED
tests/test_functional.py::test_functional[singledispatch_method_py38] PASSED
tests/test_functional.py::test_functional[singledispatchmethod_function_py38] PASSED
tests/test_functional.py::test_functional[singleton_comparison] PASSED
tests/test_functional.py::test_functional[slots_checks] PASSED
tests/test_functional.py::test_functional[socketerror_import] PASSED
tests/test_functional.py::test_functional[star_needs_assignment_target] PASSED
tests/test_functional.py::test_functional[star_needs_assignment_target_py38] SKIPPED
tests/test_functional.py::test_functional[statement_without_effect] PASSED
tests/test_functional.py::test_functional[statement_without_effect_py312] SKIPPED
tests/test_functional.py::test_functional[statement_without_effect_py36] PASSED
tests/test_functional.py::test_functional[stop_iteration_inside_generator] PASSED
tests/test_functional.py::test_functional[string_formatting] PASSED
tests/test_functional.py::test_functional[string_formatting_disable] PASSED
tests/test_functional.py::test_functional[string_formatting_error] PASSED
tests/test_functional.py::test_functional[string_formatting_failed_inference] PASSED
tests/test_functional.py::test_functional[string_formatting_failed_inference_py35] PASSED
tests/test_functional.py::test_functional[string_formatting_py3] PASSED
tests/test_functional.py::test_functional[string_log_formatting] PASSED
tests/test_functional.py::test_functional[subclassed_final_class_py38] PASSED
tests/test_functional.py::test_functional[subprocess_popen_preexec_fn] PASSED
tests/test_functional.py::test_functional[subprocess_run_check] PASSED
tests/test_functional.py::test_functional[super_checks] PASSED
tests/test_functional.py::test_functional[super_init_not_called] PASSED
tests/test_functional.py::test_functional[super_init_not_called_extensions] SKIPPED
tests/test_functional.py::test_functional[super_init_not_called_extensions_py310] SKIPPED
tests/test_functional.py::test_functional[super_init_not_called_py38] PASSED
tests/test_functional.py::test_functional[super_with_arguments] PASSED
tests/test_functional.py::test_functional[super_without_brackets] PASSED
tests/test_functional.py::test_functional[superfluous_parens] PASSED
tests/test_functional.py::test_functional[superfluous_parens_walrus_py38] PASSED
tests/test_functional.py::test_functional[suspicious_str_strip_call] PASSED
tests/test_functional.py::test_functional[symlink_module0] PASSED
tests/test_functional.py::test_functional[symlink_module1] PASSED
tests/test_functional.py::test_functional[syntax_error] PASSED
tests/test_functional.py::test_functional[syntax_error_jython] SKIPPED
tests/test_functional.py::test_functional[sys_stream_regression_1004] PASSED
tests/test_functional.py::test_functional[ternary] PASSED
tests/test_functional.py::test_functional[test_compile] PASSED
tests/test_functional.py::test_functional[tokenize_error] PASSED
tests/test_functional.py::test_functional[tokenize_error_jython] SKIPPED
tests/test_functional.py::test_functional[tokenize_error_py312] SKIPPED
tests/test_functional.py::test_functional[too_few_public_methods] PASSED
tests/test_functional.py::test_functional[too_few_public_methods_37] PASSED
tests/test_functional.py::test_functional[too_few_public_methods_excluded] PASSED
tests/test_functional.py::test_functional[too_many_ancestors] PASSED
tests/test_functional.py::test_functional[too_many_ancestors_ignored_parents] PASSED
tests/test_functional.py::test_functional[too_many_arguments] PASSED
tests/test_functional.py::test_functional[too_many_arguments_issue_1045] PASSED
tests/test_functional.py::test_functional[too_many_arguments_overload] PASSED
tests/test_functional.py::test_functional[too_many_boolean_expressions] PASSED
tests/test_functional.py::test_functional[too_many_branches] PASSED
tests/test_functional.py::test_functional[too_many_function_args] PASSED
tests/test_functional.py::test_functional[too_many_instance_attributes] PASSED
tests/test_functional.py::test_functional[too_many_instance_attributes_py37] PASSED
tests/test_functional.py::test_functional[too_many_lines] PASSED
tests/test_functional.py::test_functional[too_many_lines_disabled] PASSED
tests/test_functional.py::test_functional[too_many_locals] PASSED
tests/test_functional.py::test_functional[too_many_nested_blocks] PASSED
tests/test_functional.py::test_functional[too_many_public_methods] PASSED
tests/test_functional.py::test_functional[too_many_return_statements] PASSED
tests/test_functional.py::test_functional[too_many_star_expressions] PASSED
tests/test_functional.py::test_functional[too_many_statements] PASSED
tests/test_functional.py::test_functional[trailing_comma_tuple] PASSED
tests/test_functional.py::test_functional[trailing_newlines] PASSED
tests/test_functional.py::test_functional[trailing_whitespaces] PASSED
tests/test_functional.py::test_functional[try_except_raise] PASSED
tests/test_functional.py::test_functional[try_except_raise_crash] PASSED
tests/test_functional.py::test_functional[typealias_naming_style_default] SKIPPED
tests/test_functional.py::test_functional[typealias_naming_style_rgx] SKIPPED
tests/test_functional.py::test_functional[typedDict] PASSED
tests/test_functional.py::test_functional[typevar_double_variance] PASSED
tests/test_functional.py::test_functional[typevar_name_incorrect_variance] PASSED
tests/test_functional.py::test_functional[typevar_name_mismatch] PASSED
tests/test_functional.py::test_functional[typevar_naming_style_default] PASSED
tests/test_functional.py::test_functional[typevar_naming_style_rgx] PASSED
tests/test_functional.py::test_functional[typing_broken_callable] PASSED
tests/test_functional.py::test_functional[typing_broken_callable_deprecated_alias] PASSED
tests/test_functional.py::test_functional[typing_broken_callable_future_import] PASSED
tests/test_functional.py::test_functional[typing_broken_noreturn] PASSED
tests/test_functional.py::test_functional[typing_broken_noreturn_future_import] PASSED
tests/test_functional.py::test_functional[typing_broken_noreturn_py372] PASSED
tests/test_functional.py::test_functional[typing_consider_using_alias] PASSED
tests/test_functional.py::test_functional[typing_consider_using_alias_without_future] PASSED
tests/test_functional.py::test_functional[typing_consider_using_union] PASSED
tests/test_functional.py::test_functional[typing_consider_using_union_py310] SKIPPED
tests/test_functional.py::test_functional[typing_consider_using_union_without_future] PASSED
tests/test_functional.py::test_functional[typing_deprecated_alias] PASSED
tests/test_functional.py::test_functional[typing_generic] PASSED
tests/test_functional.py::test_functional[typing_use] PASSED
tests/test_functional.py::test_functional[unbalanced_dict_unpacking] PASSED
tests/test_functional.py::test_functional[unbalanced_tuple_unpacking] PASSED
tests/test_functional.py::test_functional[unbalanced_tuple_unpacking_py30] PASSED
tests/test_functional.py::test_functional[undefined_all_variable_edge_case] PASSED
tests/test_functional.py::test_functional[undefined_loop_variable] PASSED
tests/test_functional.py::test_functional[undefined_loop_variable_py311] SKIPPED
tests/test_functional.py::test_functional[undefined_loop_variable_py38] PASSED
tests/test_functional.py::test_functional[undefined_variable] PASSED
tests/test_functional.py::test_functional[undefined_variable_classes] PASSED
tests/test_functional.py::test_functional[undefined_variable_crash_on_attribute] PASSED
tests/test_functional.py::test_functional[undefined_variable_decorators] PASSED
tests/test_functional.py::test_functional[undefined_variable_py30] PASSED
tests/test_functional.py::test_functional[undefined_variable_py312] SKIPPED
tests/test_functional.py::test_functional[undefined_variable_py38] PASSED
tests/test_functional.py::test_functional[undefined_variable_typing] PASSED
tests/test_functional.py::test_functional[unexpected_keyword_arg] PASSED
tests/test_functional.py::test_functional[unexpected_special_method_signature] PASSED
tests/test_functional.py::test_functional[ungrouped_imports] PASSED
tests/test_functional.py::test_functional[ungrouped_imports_isort_compatible] PASSED
tests/test_functional.py::test_functional[ungrouped_imports_suppression] PASSED
tests/test_functional.py::test_functional[unhashable_member] PASSED
tests/test_functional.py::test_functional[unhashable_member_py312] SKIPPED
tests/test_functional.py::test_functional[unicode_bidi_commenting_out] PASSED
tests/test_functional.py::test_functional[unicode_bidi_early_return] PASSED
tests/test_functional.py::test_functional[unicode_bidi_pep672] PASSED
tests/test_functional.py::test_functional[unidiomatic_typecheck] PASSED
tests/test_functional.py::test_functional[uninferable_all_object] PASSED
tests/test_functional.py::test_functional[unknown_encoding_jython] SKIPPED
tests/test_functional.py::test_functional[unnecessary_comprehension] PASSED
tests/test_functional.py::test_functional[unnecessary_dict_index_lookup] PASSED
tests/test_functional.py::test_functional[unnecessary_direct_lambda_call] PASSED
tests/test_functional.py::test_functional[unnecessary_dunder_call_async_py$(PYV)] PASSED
tests/test_functional.py::test_functional[unnecessary_dunder_call_async_py310] PASSED
tests/test_functional.py::test_functional[unnecessary_dunder_call_py$(PYV)] PASSED
tests/test_functional.py::test_functional[unnecessary_dunder_call_py38] SKIPPED
tests/test_functional.py::test_functional[unnecessary_dunder_call_py38_pypy] SKIPPED
tests/test_functional.py::test_functional[unnecessary_ellipsis] PASSED
tests/test_functional.py::test_functional[unnecessary_lambda] PASSED
tests/test_functional.py::test_functional[unnecessary_lambda_assignment] PASSED
tests/test_functional.py::test_functional[unnecessary_list_index_lookup] PASSED
tests/test_functional.py::test_functional[unnecessary_negation] PASSED
tests/test_functional.py::test_functional[unnecessary_pass] PASSED
tests/test_functional.py::test_functional[unpacking] PASSED
tests/test_functional.py::test_functional[unpacking_generalizations] PASSED
tests/test_functional.py::test_functional[unpacking_non_sequence] PASSED
tests/test_functional.py::test_functional[unpacking_non_sequence_py310] SKIPPED
tests/test_functional.py::test_functional[unpacking_non_sequence_py37] PASSED
tests/test_functional.py::test_functional[unreachable] PASSED
tests/test_functional.py::test_functional[unrecognized_inline_option] PASSED
tests/test_functional.py::test_functional[unspecified_encoding_py38] PASSED
tests/test_functional.py::test_functional[unsubscriptable_object] PASSED
tests/test_functional.py::test_functional[unsubscriptable_value] PASSED
tests/test_functional.py::test_functional[unsubscriptable_value_py37] PASSED
tests/test_functional.py::test_functional[unsupported_assignment_operation] PASSED
tests/test_functional.py::test_functional[unsupported_binary_operation] SKIPPED
tests/test_functional.py::test_functional[unsupported_delete_operation] PASSED
tests/test_functional.py::test_functional[unsupported_version_for_f_string] PASSED
tests/test_functional.py::test_functional[unsupported_version_for_final] PASSED
tests/test_functional.py::test_functional[unused_argument] PASSED
tests/test_functional.py::test_functional[unused_argument_py3] PASSED
tests/test_functional.py::test_functional[unused_global_variable1] PASSED
tests/test_functional.py::test_functional[unused_global_variable2] PASSED
tests/test_functional.py::test_functional[unused_global_variable3] PASSED
tests/test_functional.py::test_functional[unused_global_variable4] PASSED
tests/test_functional.py::test_functional[unused_import] PASSED
tests/test_functional.py::test_functional[unused_import_assigned_to] PASSED
tests/test_functional.py::test_functional[unused_import_class_def_keyword] PASSED
tests/test_functional.py::test_functional[unused_import_everything_disabled] PASSED
tests/test_functional.py::test_functional[unused_import_positional_only_py38] PASSED
tests/test_functional.py::test_functional[unused_import_py$(PYV)] PASSED
tests/test_functional.py::test_functional[unused_import_py30] PASSED
tests/test_functional.py::test_functional[unused_module] PASSED
tests/test_functional.py::test_functional[unused_name_from_wildcard_import] PASSED
tests/test_functional.py::test_functional[unused_name_in_string_literal_type_annotation] PASSED
tests/test_functional.py::test_functional[unused_name_in_string_literal_type_annotation_py$(PYV)] PASSED
tests/test_functional.py::test_functional[unused_name_in_string_literal_type_annotation_py310] SKIPPED
tests/test_functional.py::test_functional[unused_name_in_string_literal_type_annotation_py38] PASSED
tests/test_functional.py::test_functional[unused_private_member] PASSED
tests/test_functional.py::test_functional[unused_typing_imports] PASSED
tests/test_functional.py::test_functional[unused_variable] PASSED
tests/test_functional.py::test_functional[unused_variable_after_inference] PASSED
tests/test_functional.py::test_functional[unused_variable_py36] PASSED
tests/test_functional.py::test_functional[unused_variable_py38] PASSED
tests/test_functional.py::test_functional[use_a_generator] PASSED
tests/test_functional.py::test_functional[use_implicit_booleaness_not_comparison] PASSED
tests/test_functional.py::test_functional[use_implicit_booleaness_not_comparison_to_string] PASSED
tests/test_functional.py::test_functional[use_implicit_booleaness_not_comparison_to_zero] PASSED
tests/test_functional.py::test_functional[use_implicit_booleaness_not_len] PASSED
tests/test_functional.py::test_functional[use_literal_dict] PASSED
tests/test_functional.py::test_functional[use_literal_list] PASSED
tests/test_functional.py::test_functional[use_maxsplit_arg] PASSED
tests/test_functional.py::test_functional[use_sequence_for_iteration] PASSED
tests/test_functional.py::test_functional[use_set_membership] PASSED
tests/test_functional.py::test_functional[use_symbolic_message_instead] PASSED
tests/test_functional.py::test_functional[used_before_assignment] PASSED
tests/test_functional.py::test_functional[used_before_assignment_488] PASSED
tests/test_functional.py::test_functional[used_before_assignment_class_nested_under_function] PASSED
tests/test_functional.py::test_functional[used_before_assignment_comprehension_homonyms] PASSED
tests/test_functional.py::test_functional[used_before_assignment_conditional] PASSED
tests/test_functional.py::test_functional[used_before_assignment_else_return] PASSED
tests/test_functional.py::test_functional[used_before_assignment_except_handler_for_try_with_return] PASSED
tests/test_functional.py::test_functional[used_before_assignment_except_handler_for_try_with_return_py38] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue1081] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue2615] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue4761] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue626] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue853] PASSED
tests/test_functional.py::test_functional[used_before_assignment_issue85] PASSED
tests/test_functional.py::test_functional[used_before_assignment_nonlocal] PASSED
tests/test_functional.py::test_functional[used_before_assignment_postponed_evaluation] PASSED
tests/test_functional.py::test_functional[used_before_assignment_py310] SKIPPED
tests/test_functional.py::test_functional[used_before_assignment_py312] SKIPPED
tests/test_functional.py::test_functional[used_before_assignment_py37] PASSED
tests/test_functional.py::test_functional[used_before_assignment_scoping] PASSED
tests/test_functional.py::test_functional[used_before_assignment_ternary] PASSED
tests/test_functional.py::test_functional[used_before_assignment_type_annotations] PASSED
tests/test_functional.py::test_functional[used_before_assignment_typing] PASSED
tests/test_functional.py::test_functional[used_prior_global_declaration] PASSED
tests/test_functional.py::test_functional[useless_else_on_loop] PASSED
tests/test_functional.py::test_functional[useless_object_inheritance] PASSED
tests/test_functional.py::test_functional[useless_parent_delegation] PASSED
tests/test_functional.py::test_functional[useless_parent_delegation_py38] PASSED
tests/test_functional.py::test_functional[useless_return] PASSED
tests/test_functional.py::test_functional[useless_suppression] PASSED
tests/test_functional.py::test_functional[useless_type_doc] PASSED
tests/test_functional.py::test_functional[useless_with_lock] PASSED
tests/test_functional.py::test_functional[using_constant_test] PASSED
tests/test_functional.py::test_functional[while_used] PASSED
tests/test_functional.py::test_functional[wildcard_import] PASSED
tests/test_functional.py::test_functional[wildcard_import_allowed] PASSED
tests/test_functional.py::test_functional[with_used_before_assign] PASSED
tests/test_functional.py::test_functional[with_using_generator] PASSED
tests/test_functional.py::test_functional[wrong_exception_operation] SKIPPED
tests/test_functional.py::test_functional[wrong_exception_operation_py37] PASSED
tests/test_functional.py::test_functional[wrong_import_order2] PASSED
tests/test_functional.py::test_functional[wrong_import_order] PASSED
tests/test_functional.py::test_functional[wrong_import_position10] PASSED
tests/test_functional.py::test_functional[wrong_import_position11] PASSED
tests/test_functional.py::test_functional[wrong_import_position12] PASSED
tests/test_functional.py::test_functional[wrong_import_position13] PASSED
tests/test_functional.py::test_functional[wrong_import_position14] PASSED
tests/test_functional.py::test_functional[wrong_import_position15] PASSED
tests/test_functional.py::test_functional[wrong_import_position2] PASSED
tests/test_functional.py::test_functional[wrong_import_position3] PASSED
tests/test_functional.py::test_functional[wrong_import_position4] PASSED
tests/test_functional.py::test_functional[wrong_import_position5] PASSED
tests/test_functional.py::test_functional[wrong_import_position6] PASSED
tests/test_functional.py::test_functional[wrong_import_position7] PASSED
tests/test_functional.py::test_functional[wrong_import_position8] PASSED
tests/test_functional.py::test_functional[wrong_import_position9] PASSED
tests/test_functional.py::test_functional[wrong_import_position] PASSED
tests/test_functional.py::test_functional[wrong_import_position_exclude_dunder_main] PASSED
tests/test_functional.py::test_functional[yield_assign] PASSED
tests/test_functional.py::test_functional[yield_from_iterable] PASSED
tests/test_functional.py::test_functional[yield_from_outside_func] PASSED
tests/test_functional.py::test_functional[yield_inside_async_function] PASSED
tests/test_functional.py::test_functional[yield_outside_func] PASSED
tests/test_functional.py::test_functional[yield_return_mix] PASSED
tests/test_functional_directories.py::test_directories PASSED
tests/test_import_graph.py::test_checker_dep_graphs PASSED
tests/test_import_graph.py::test_dependencies_graph[foo.dot] PASSED
tests/test_import_graph.py::test_dependencies_graph[foo.gv] PASSED
tests/test_import_graph.py::test_dependencies_graph[tests/regrtest_data/foo.dot] PASSED
tests/test_import_graph.py::test_missing_graphviz[graph.png] SKIPPED
tests/test_import_graph.py::test_missing_graphviz[graph] SKIPPED (do...)
tests/test_numversion.py::test_numversion[-expected_numversion5] PASSED
tests/test_numversion.py::test_numversion[1.a-expected_numversion4] PASSED
tests/test_numversion.py::test_numversion[2.8.1-expected_numversion0] PASSED
tests/test_numversion.py::test_numversion[2.8.2+-expected_numversion1] PASSED
tests/test_numversion.py::test_numversion[2.8.3.dev3+g28c093c2.d20210428-expected_numversion10] PASSED
tests/test_numversion.py::test_numversion[3..0-expected_numversion3] PASSED
tests/test_numversion.py::test_numversion[3.0.0a0-expected_numversion2] PASSED
tests/test_numversion.py::test_numversion[3.0.0b1-expected_numversion6] PASSED
tests/test_numversion.py::test_numversion[3.0.0dev-234324234234f23abc4-expected_numversion8] PASSED
tests/test_numversion.py::test_numversion[3.0.0rc1-expected_numversion7] PASSED
tests/test_numversion.py::test_numversion[pylint-2.4.7-expected_numversion9] PASSED
tests/test_pragma_parser.py::test_disable_checker_with_number_in_name PASSED
tests/test_pragma_parser.py::test_missing_assignment PASSED
tests/test_pragma_parser.py::test_missing_keyword PASSED
tests/test_pragma_parser.py::test_missing_message PASSED
tests/test_pragma_parser.py::test_multiple_pragma_multiple_messages PASSED
tests/test_pragma_parser.py::test_parse_message_with_dash PASSED
tests/test_pragma_parser.py::test_simple_pragma PASSED
tests/test_pragma_parser.py::test_simple_pragma_multiple_messages PASSED
tests/test_pragma_parser.py::test_simple_pragma_no_messages PASSED
tests/test_pragma_parser.py::test_unknown_keyword_with_messages PASSED
tests/test_pragma_parser.py::test_unknown_keyword_with_missing_messages PASSED
tests/test_pragma_parser.py::test_unknown_keyword_without_messages PASSED
tests/test_pragma_parser.py::test_unsupported_assignment PASSED
tests/test_pylint_runners.py::test_pylint_argument_deduplication PASSED
tests/test_pylint_runners.py::test_pylint_run_jobs_equal_zero_dont_crash_with_cpu_fraction PASSED
tests/test_pylint_runners.py::test_runner[run_pylint] PASSED
tests/test_pylint_runners.py::test_runner[run_pyreverse] PASSED
tests/test_pylint_runners.py::test_runner[run_symilar] PASSED
tests/test_pylint_runners.py::test_runner_with_arguments[run_pylint] PASSED
tests/test_pylint_runners.py::test_runner_with_arguments[run_pyreverse] PASSED
tests/test_pylint_runners.py::test_runner_with_arguments[run_symilar] PASSED
tests/test_regr.py::test_check_package___init__ PASSED
tests/test_regr.py::test_crash[file_names0] PASSED
tests/test_regr.py::test_crash[file_names1] PASSED
tests/test_regr.py::test_crash[file_names2] PASSED
tests/test_regr.py::test_descriptor_crash[application_crash.py] PASSED
tests/test_regr.py::test_descriptor_crash[descriptor_crash.py] PASSED
tests/test_regr.py::test_descriptor_crash[special_attr_scope_lookup_crash.py] PASSED
tests/test_regr.py::test_descriptor_crash[try_finally_disable_msg_crash.py] PASSED
tests/test_regr.py::test_hang[file_names0] PASSED
tests/test_regr.py::test_package[file_names0-<lambda>] PASSED
tests/test_regr.py::test_package[file_names1-<lambda>] PASSED
tests/test_regr.py::test_package[file_names2-<lambda>] PASSED
tests/test_regr.py::test_package[file_names3-<lambda>] PASSED
tests/test_regr.py::test_package[file_names4-<lambda>] PASSED
tests/test_regr.py::test_package[file_names5-<lambda>] PASSED
tests/test_regr.py::test_package[file_names6-<lambda>] PASSED
tests/test_regr.py::test_package[file_names7-<lambda>] PASSED
tests/test_regr.py::test_package[file_names8-<lambda>] PASSED
tests/test_self.py::TestCallbackOptions::test_enable_all_extensions PASSED
tests/test_self.py::TestCallbackOptions::test_errors_only PASSED
tests/test_self.py::TestCallbackOptions::test_errors_only_functions_as_disable PASSED
tests/test_self.py::TestCallbackOptions::test_generate_config_disable_symbolic_names PASSED
tests/test_self.py::TestCallbackOptions::test_generate_rcfile PASSED
tests/test_self.py::TestCallbackOptions::test_generate_toml_config PASSED
tests/test_self.py::TestCallbackOptions::test_generate_toml_config_disable_symbolic_names PASSED
tests/test_self.py::TestCallbackOptions::test_help_msg[args0-:unreachable (W0101)-False] PASSED
tests/test_self.py::TestCallbackOptions::test_help_msg[args1-No such message id-False] PASSED
tests/test_self.py::TestCallbackOptions::test_help_msg[args2---help-msg: expected at least one argumen-True] PASSED
tests/test_self.py::TestCallbackOptions::test_help_msg[args3-:invalid-name (C0103):-False] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command0-Emittable messages with current interpreter:] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command1-Enabled messages:] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command2-nonascii-checker] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command3-Confidence(name='HIGH', description=] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command4-pylint.extensions.empty_comment] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command5-Pylint global options and switches] PASSED
tests/test_self.py::TestCallbackOptions::test_output_of_callback_options[command6-Environment variables:] PASSED
tests/test_self.py::TestCallbackOptions::test_verbose PASSED
tests/test_self.py::TestRunTC::test_abbreviations_are_not_supported XFAIL
tests/test_self.py::TestRunTC::test_all PASSED
tests/test_self.py::TestRunTC::test_allow_import_of_files_found_in_modules_during_parallel_check PASSED
tests/test_self.py::TestRunTC::test_bom_marker PASSED
tests/test_self.py::TestRunTC::test_can_list_directories_without_dunder_init PASSED
tests/test_self.py::TestRunTC::test_confidence_levels PASSED
tests/test_self.py::TestRunTC::test_disable_all PASSED
tests/test_self.py::TestRunTC::test_do_not_import_files_from_local_directory[args0] PASSED
tests/test_self.py::TestRunTC::test_do_not_import_files_from_local_directory[args1] PASSED
tests/test_self.py::TestRunTC::test_enable_all_works PASSED
tests/test_self.py::TestRunTC::test_encoding[bad_missing_num.py-(bad-file-encoding)] PASSED
tests/test_self.py::TestRunTC::test_encoding[bad_wrong_num.py-(syntax-error)] PASSED
tests/test_self.py::TestRunTC::test_encoding[good.py-] PASSED
tests/test_self.py::TestRunTC::test_error_missing_arguments PASSED
tests/test_self.py::TestRunTC::test_error_mode_shows_no_score PASSED
tests/test_self.py::TestRunTC::test_evaluation_score_shown_by_default PASSED
tests/test_self.py::TestRunTC::test_exit_zero PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-C-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-C0115-fail_under_plus7_5.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-C0116-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-broad-exception-caught-fail_under_minus10.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-broad-exception-caught-fail_under_plus7_5.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-fake1,C,fake2-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-missing-function-docstring-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-10-missing-function-docstring-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-11-broad-exception-caught-fail_under_minus10.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-11-missing-function-docstring-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-5-broad-exception-caught-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-5-missing-function-docstring-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-9-broad-exception-caught-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[-9-missing-function-docstring-fail_under_minus10.py-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on[6-broad-exception-caught-fail_under_plus7_5.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[6-missing-function-docstring-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[7.5-broad-exception-caught-fail_under_plus7_5.py-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on[7.5-missing-function-docstring-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[7.6-broad-exception-caught-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on[7.6-missing-function-docstring-fail_under_plus7_5.py-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on_edge_case[opts0-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_edge_case[opts1-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_edge_case[opts2-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on_edge_case[opts3-16] PASSED
tests/test_self.py::TestRunTC::test_fail_on_edge_case[opts4-4] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args0-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args1-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args2-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args3-6] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args4-6] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args5-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args6-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args7-6] PASSED
tests/test_self.py::TestRunTC::test_fail_on_exit_code[args8-22] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args0-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args1-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args2-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args3-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args4-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args5-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args6-0] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args7-1] PASSED
tests/test_self.py::TestRunTC::test_fail_on_info_only_exit_code[args8-1] PASSED
tests/test_self.py::TestRunTC::test_fail_under PASSED
tests/test_self.py::TestRunTC::test_getdefaultencoding_crashes_with_lc_ctype_utf8 PASSED
tests/test_self.py::TestRunTC::test_ignore_path_recursive[.*failing.*] PASSED
tests/test_self.py::TestRunTC::test_ignore_path_recursive[.*ignored.*] PASSED
tests/test_self.py::TestRunTC::test_ignore_path_recursive_current_dir PASSED
tests/test_self.py::TestRunTC::test_ignore_pattern_from_stdin PASSED
tests/test_self.py::TestRunTC::test_ignore_pattern_recursive[failing.*] PASSED
tests/test_self.py::TestRunTC::test_ignore_pattern_recursive[ignored_.*] PASSED
tests/test_self.py::TestRunTC::test_ignore_recursive[failing.py] PASSED
tests/test_self.py::TestRunTC::test_ignore_recursive[ignored_subdirectory] PASSED
tests/test_self.py::TestRunTC::test_import_itself_not_accounted_for_relative_imports PASSED
tests/test_self.py::TestRunTC::test_import_plugin_from_local_directory_if_pythonpath_cwd PASSED
tests/test_self.py::TestRunTC::test_information_category_disabled_by_default PASSED
tests/test_self.py::TestRunTC::test_jobs_score PASSED
tests/test_self.py::TestRunTC::test_json_report_does_not_escape_quotes PASSED
tests/test_self.py::TestRunTC::test_json_report_when_file_has_syntax_error PASSED
tests/test_self.py::TestRunTC::test_json_report_when_file_is_missing PASSED
tests/test_self.py::TestRunTC::test_line_too_long_useless_suppression PASSED
tests/test_self.py::TestRunTC::test_load_text_repoter_if_not_provided PASSED
tests/test_self.py::TestRunTC::test_max_inferred_for_complicated_class_hierarchy PASSED
tests/test_self.py::TestRunTC::test_modify_sys_path PASSED
tests/test_self.py::TestRunTC::test_no_crash_with_formatting_regex_defaults PASSED
tests/test_self.py::TestRunTC::test_no_ext_file PASSED
tests/test_self.py::TestRunTC::test_no_name_in_module PASSED
tests/test_self.py::TestRunTC::test_no_out_encoding PASSED
tests/test_self.py::TestRunTC::test_nonexistent_config_file PASSED
tests/test_self.py::TestRunTC::test_one_module_fatal_error PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_custom_reporter PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[colorized-{path}:4:4: W0612: \x1b[35mUnused variable 'variable'\x1b[0m (\x1b[35munused-variable\x1b[0m)] PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[json-"message": "Unused variable 'variable'",] PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[json2-"message": "Unused variable 'variable'",] PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[msvs-{path}(4): [W0612(unused-variable)test] Unused variable 'variable'] PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[parseable-{path}:4: [W0612(unused-variable), test] Unused variable 'variable'] PASSED
tests/test_self.py::TestRunTC::test_output_file_can_be_combined_with_output_format_option[text-{path}:4:4: W0612: Unused variable 'variable' (unused-variable)] PASSED
tests/test_self.py::TestRunTC::test_output_file_invalid_path_exits_with_code_32 PASSED
tests/test_self.py::TestRunTC::test_output_file_specified_in_rcfile PASSED
tests/test_self.py::TestRunTC::test_output_file_valid_path PASSED
tests/test_self.py::TestRunTC::test_output_no_header PASSED
tests/test_self.py::TestRunTC::test_parallel_execution PASSED
tests/test_self.py::TestRunTC::test_parallel_execution_missing_arguments PASSED
tests/test_self.py::TestRunTC::test_parseable_file_path PASSED
tests/test_self.py::TestRunTC::test_pkginfo PASSED
tests/test_self.py::TestRunTC::test_plugin_that_imports_from_open PASSED
tests/test_self.py::TestRunTC::test_pylintrc_comments_in_values PASSED
tests/test_self.py::TestRunTC::test_pylintrc_plugin_duplicate_options PASSED
tests/test_self.py::TestRunTC::test_recursive PASSED
tests/test_self.py::TestRunTC::test_recursive_current_dir PASSED
tests/test_self.py::TestRunTC::test_recursive_globbing PASSED
tests/test_self.py::TestRunTC::test_regex_paths_csv_validator PASSED
tests/test_self.py::TestRunTC::test_regression_parallel_mode_without_filepath PASSED
tests/test_self.py::TestRunTC::test_reject_empty_indent_strings PASSED
tests/test_self.py::TestRunTC::test_relative_imports[False] PASSED
tests/test_self.py::TestRunTC::test_relative_imports[True] PASSED
tests/test_self.py::TestRunTC::test_stdin[$(@D)/tests/mymodule.py-mymodule-$(@D)/tests/mymodule.py] PASSED
tests/test_self.py::TestRunTC::test_stdin[mymodule.py-mymodule-mymodule.py] PASSED
tests/test_self.py::TestRunTC::test_stdin_missing_modulename PASSED
tests/test_self.py::TestRunTC::test_stdin_syntax_error PASSED
tests/test_self.py::TestRunTC::test_syntax_error_invalid_encoding PASSED
tests/test_self.py::TestRunTC::test_type_annotation_names PASSED
tests/test_self.py::TestRunTC::test_version PASSED
tests/test_self.py::TestRunTC::test_w0704_ignored PASSED
tests/test_self.py::TestRunTC::test_wrong_import_position_when_others_disabled PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_conditional_imports PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_parallel PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_all PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_file PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_file_double PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_line_disable_all PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_line_end PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_line_midle PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_line_two PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_scope PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_scope_double PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_duplicate_code_raw_strings_disable_scope_function PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_ignore_imports PASSED
tests/test_similar.py::TestSimilarCodeChecker::test_useless_suppression PASSED
tests/testutils/_primer/test_package_to_lint.py::test_package_to_lint PASSED
tests/testutils/_primer/test_package_to_lint.py::test_package_to_lint_default_value PASSED
tests/testutils/_primer/test_primer.py::TestPrimer::test_compare[both_empty] SKIPPED
tests/testutils/_primer/test_primer.py::TestPrimer::test_compare[message_changed] SKIPPED
tests/testutils/_primer/test_primer.py::TestPrimer::test_compare[no_change] SKIPPED
tests/testutils/_primer/test_primer.py::TestPrimer::test_compare_batched SKIPPED
tests/testutils/_primer/test_primer.py::TestPrimer::test_truncated_compare SKIPPED
tests/testutils/_primer/test_primer.py::test_primer_launch_bad_args[args0] PASSED
tests/testutils/_primer/test_primer.py::test_primer_launch_bad_args[args1] PASSED
tests/testutils/test_configuration_test.py::test_get_expected_output PASSED
tests/testutils/test_functional_testutils.py::test_get_functional_test_files_from_crowded_directory PASSED
tests/testutils/test_functional_testutils.py::test_get_functional_test_files_from_directory PASSED
tests/testutils/test_functional_testutils.py::test_minimal_messages_config_enabled PASSED
tests/testutils/test_functional_testutils.py::test_minimal_messages_config_excluded_file PASSED
tests/testutils/test_functional_testutils.py::test_parsing_of_pylintrc_init_hook PASSED
tests/testutils/test_lint_module_output_update.py::test_lint_module_output_update_effective PASSED
tests/testutils/test_lint_module_output_update.py::test_lint_module_output_update_fail_before PASSED
tests/testutils/test_lint_module_output_update.py::test_lint_module_output_update_remove_useless_txt PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/broken_output_ok_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/broken_output_wrong_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/no_output_ok_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/no_output_wrong_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/ok_output_ok_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/ok_output_wrong_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/wrong_output_ok_test] PASSED
tests/testutils/test_lint_module_output_update.py::test_update_of_functional_output[$(@D)/tests/testutils/data/functional/wrong_output_wrong_test] PASSED
tests/testutils/test_output_line.py::test_output_line PASSED
tests/testutils/test_output_line.py::test_output_line_from_csv PASSED
tests/testutils/test_output_line.py::test_output_line_from_message PASSED
tests/testutils/test_output_line.py::test_output_line_to_csv[confidence0] PASSED
tests/testutils/test_output_line.py::test_output_line_to_csv[confidence1] PASSED
tests/testutils/test_pyreverse_testutils.py::test_file_with_options PASSED
tests/testutils/test_pyreverse_testutils.py::test_file_without_options PASSED
tests/testutils/test_pyreverse_testutils.py::test_files_with_leading_underscore_are_ignored PASSED
tests/testutils/test_testutils_utils.py::test__test_cwd PASSED
tests/testutils/test_testutils_utils.py::test__test_cwd_no_arg PASSED
tests/testutils/test_testutils_utils.py::test__test_environ_pythonpath[./oldpath/:] PASSED
tests/testutils/test_testutils_utils.py::test__test_environ_pythonpath[None] PASSED
tests/testutils/test_testutils_utils.py::test__test_environ_pythonpath_no_arg[./oldpath/:] PASSED
tests/testutils/test_testutils_utils.py::test__test_environ_pythonpath_no_arg[None] PASSED
tests/testutils/test_testutils_utils.py::test__test_sys_path PASSED
tests/testutils/test_testutils_utils.py::test__test_sys_path_no_arg PASSED
tests/utils/unittest_ast_walker.py::TestASTWalker::test_deprecated_methods PASSED
tests/utils/unittest_ast_walker.py::TestASTWalker::test_only_required_for_messages PASSED
tests/utils/unittest_utils.py::test_decoding_stream_known_encoding PASSED
tests/utils/unittest_utils.py::test_decoding_stream_unknown_encoding PASSED
 
======== 1844 passed, 300 skipped, 5 xfailed ========
  py$(PYV): OK
  congratulations :)