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
8 -Part of the astor library for Python AST manipulation
10 -License: 3-clause BSD
12 -Copyright (c) 2017 Patrick Maupin
18 - import unittest2 as unittest
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__':