vote up 3 vote down star
4

Hi,

I am python newbie. Can ppl point towards good OSS for automated decent python code review tools. I am churning quite some python code these days. Want to pass it thru some quality tool.

Thanks


Related question: Are there any static analysis tools for Python?

flag

73% accept rate

5 Answers

vote up 7 vote down check

At work, we use a combination of pylint, unittest, and Ned Batchelder's coverage module.

These are automatically run on every svn commit (you are using source control, right?), and an email gets shot to a developer if they fail pylint or unit tests. Every commit gets the unit tests run through coverage, and the coverage reports are available for everyone to use (we've customized them a bit, so that they're in easy-to-read HTML format).

link|flag
There is so much hidden in that word "use" in "...available for everyone to use". Definitely use these tools, but "use" has to mean that the developer (a) reviews the failed results, understands the root cause, and improves the code and (b) reviews results that are passing too often to turn up the strength on the tools so they can find more problems. – Tom Harris Nov 15 at 20:36
To clarify then: our automated build process is set up to execute each of these tools for every version control commit. We've established a set of rules (primarily pylint ignore rules) that every commit needs to satisfy, and changing these rules requires team consent. – Tony Arkles Nov 16 at 14:04
vote up 0 vote down

I personally use pyflakes.

It checks for the following:

  • Syntax errors
  • Missing names (variables or objects or whatever referenced without having been set or imported)

Substantially it does save you from typos and the such, which are the most common source of errors for me.

It does not check for the following:

  • If your imports are correct (which might be a problem, due to the fact I use virtual environments a lot)
  • If the variables are set before accessing it

Substantially, is a static code checker.

link|flag
vote up 1 vote down

Related Thread http://stackoverflow.com/questions/35470/are-there-any-static-analysis-tools-for-python (Stumbled on it later)

link|flag
best to just go back and edit the question, rather than 'answering' yourself. The basic idea here at stackoverflow is that answers duke it out via voting to become the 'one true answer', so the link to related info will get lost down the answer stack. – reedstrm Nov 17 '08 at 19:37
vote up 4 vote down

Also take a look at pep8 for the "official" style guide. Having consistent style throughout your code always helps maintain quality.

You can also google up some pep8.py scripts to automate the style checking.

link|flag
I like using two space instead of four to intend. – versesane Nov 17 '08 at 19:05
vote up 5 vote down

pylint -- analyzes Python source code looking for bugs and signs of poor quality.

link|flag
I like this honest description. The tool looks for bugs (may not find them) and looks for signs of poor quality (not "proof"). Apply the tool but then review the results and only make changes to code based on the tool's warnings if the changes are truly code improvements. – Tom Harris Nov 15 at 20:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.