Page 1 of 1

Python test frameworks

Posted: Fri Aug 28, 2009 12:16 pm
by sry_not4sale
After some googling... looking at using the following setup:

The default/included unit test library - based off JUnit
http://docs.python.org/library/unittest.html

This seems to be the defacto statement coverage tester for Python apps:
http://garethrees.org/2001/12/04/python-coverage/


Anyone have any experiences with these or other testing apps?

Re: Python test frameworks

Posted: Fri Aug 28, 2009 12:19 pm
by sry_not4sale

Re: Python test frameworks

Posted: Wed Sep 02, 2009 11:09 pm
by sry_not4sale

Re: Python test frameworks

Posted: Mon Sep 07, 2009 10:18 pm
by sry_not4sale
This looks good also:
detects possible runtime errors before actually running any code
http://www.unixuser.org/~euske/python/pyntch/index.html

Re: Python test frameworks

Posted: Thu Nov 05, 2009 3:39 am
by sry_not4sale
Started looking into unit testing now, using this as a guide to start with:
http://diveintopython.org/unit_testing/romantest.html

Re: Python test frameworks

Posted: Thu Nov 05, 2009 3:09 pm
by EssEss
I simply use unittest. I'll mail you some of my code to look over.

Re: Python test frameworks

Posted: Thu Dec 03, 2009 4:41 am
by sry_not4sale