Re: Python testing tools

2013-07-30 Thread cutems93
On Tuesday, July 23, 2013 3:51:00 PM UTC-7, Ben Finney wrote: > cutems93 writes: > > > > > On Saturday, July 20, 2013 1:11:12 AM UTC-7, Ben Finney wrote: > > > > You will find these discussed at the Python Testing Tools Taxonomy > > > > http://wiki.

Re: Python testing tools

2013-07-24 Thread Y Yen
On Friday, July 19, 2013 3:56:24 PM UTC-7, cutems93 wrote: > I am currently doing some research on testing software for Python. I found > that there are many different types of testing tools. These are what I've > found. > > > > 1.Unit test > > 2.Mock test > > 3.Fuzz test > > 4.Web test

Re: Python testing tools

2013-07-23 Thread Ben Finney
cutems93 writes: > On Saturday, July 20, 2013 1:11:12 AM UTC-7, Ben Finney wrote: > > You will find these discussed at the Python Testing Tools Taxonomy > > http://wiki.python.org/moin/PythonTestingToolsTaxonomy>. > > > > Hope that helps. > > Thank you, b

Re: Python testing tools

2013-07-23 Thread Skip Montanaro
> Could you please elaborate on the difference of the two? I heard pylint > does not import your source code when it is analyzing, while pychecker does. > Does that make some difference? Moreover, do you personally like pylint or > pycheker and why? I haven't followed pychecker development for awh

Re: Python testing tools

2013-07-23 Thread cutems93
On Tuesday, July 23, 2013 11:33:10 AM UTC-7, Skip Montanaro wrote: > > Thank you! What tool do you use for coverage? > > > > coverage. :-) > > > > > And have you used pychecker? > > > > Yes, in fact, I used to use a wrapper script I wrote that ran both > > pylint and pychecker, then massa

Re: Python testing tools

2013-07-23 Thread Skip Montanaro
> Thank you! What tool do you use for coverage? coverage. :-) > And have you used pychecker? Yes, in fact, I used to use a wrapper script I wrote that ran both pylint and pychecker, then massaged the output into suitable-for-emacs-next-error-command > I heard it is as good as pylint. What do yo

Re: Python testing tools

2013-07-23 Thread cutems93
On Tuesday, July 23, 2013 11:04:23 AM UTC-7, Skip Montanaro wrote: > > Thank you, but I already read this page before I posted this question. What > > I want to > > > know is whether you personally use these tools other than unit testing > > tools. > > > > I tried using one of the mock tools

Re: Python testing tools

2013-07-23 Thread Skip Montanaro
> Thank you, but I already read this page before I posted this question. What I > want to > know is whether you personally use these tools other than unit testing tools. I tried using one of the mock tools a few years ago. I found it didn't fit my brain very well. (Maybe it was just me.) I use

Re: Python testing tools

2013-07-23 Thread cutems93
;ve found. > > > > You will find these discussed at the Python Testing Tools Taxonomy > > http://wiki.python.org/moin/PythonTestingToolsTaxonomy>. > > > > Hope that helps. Thank you, but I already read this page before I posted this question. What I want

Re: Python testing tools

2013-07-20 Thread Ben Finney
cutems93 writes: > I am currently doing some research on testing software for Python. I > found that there are many different types of testing tools. These are > what I've found. You will find these discussed at the Python Testing Tools Taxonomy http://wiki.p

Python testing tools

2013-07-19 Thread cutems93
I am currently doing some research on testing software for Python. I found that there are many different types of testing tools. These are what I've found. 1.Unit test 2.Mock test 3.Fuzz test 4.Web test 5.Acceptance/business logic test 6.GUI test 7.Source code checking 8.Code coverage 9.Cont