perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / astor / patches / 02-remove-test_convert_stdlib.patch
blob7b06ab20a9dc8f2a268337e13ac267368bba0651
1 This test is well known to fail:
2 https://github.com/berkerpeksag/astor/issues/193
4 --- astor-0.8.1/tests/test_rtrip.py
5 +++ /dev/null
6 @@ -1,28 +0,0 @@
7 -"""
8 -Part of the astor library for Python AST manipulation
10 -License: 3-clause BSD
12 -Copyright (c) 2017 Patrick Maupin
13 -"""
15 -import os
17 -try:
18 - import unittest2 as unittest
19 -except ImportError:
20 - import unittest
22 -import astor.rtrip
25 -class RtripTestCase(unittest.TestCase):
27 - def test_convert_stdlib(self):
28 - srcdir = os.path.dirname(os.__file__)
29 - result = astor.rtrip.convert(srcdir)
30 - self.assertEqual(result, [])
33 -if __name__ == '__main__':
34 - unittest.main()