Search code examples
pythonunit-testingpython-2to3

use/run python's 2to3 as or like a unittest


I have used the 2to3 utility to convert code from the command line. What I would like to do is run it basically as a unittest. Even if it tests the file rather than parts(functions, methods...) as would be normal for a unittest.

It does not need to be a unittest and I don't what to automatically convert the files I just want to monitor the py3 compliance of files in a unittest like manor. I can't seem to find any documentation or examples for this.

An example and/or documentation would be great.


Solution

  • Simply use the -3 option with python2.6+ to be informed of Python3 compliance.