berkerpeksag / astor

Python AST read/write
https://pypi.org/project/astor/
BSD 3-Clause "New" or "Revised" License
810 stars 102 forks source link

unittest.TestCase.assertWarns introduced in Python 3.2 #118

Closed eLvErDe closed 6 years ago

eLvErDe commented 6 years ago

Unit tests currently fails to run on Python 2.7 because unittest.TestCase.assertWarns does not exist.

This PR disable two test using assertWarns on python << 3.2.

https://docs.python.org/3/library/unittest.html#unittest.TestCase.assertWarns

eLvErDe commented 6 years ago

Oh, I missed that sorry, it's being ran through pythonX.Y -m unittest discover

(Creating Debian/Ubuntu package)