tutor@python.org

2015-06-12 Thread Laura Creighton
In a message of Fri, 12 Jun 2015 17:51:55 -0400, Michelle Meiduo Wu writes: >Yes, I also found Py.test is a good testing framework for automation testing. >Another one is Robot testing framework. It's also a testing framework based on >Python Unittest framework. >Hard to pick one to use:) pytes

tutor@python.org

2015-06-12 Thread Michelle Meiduo Wu
Yes, I also found Py.test is a good testing framework for automation testing. Another one is Robot testing framework. It's also a testing framework based on Python Unittest framework. Hard to pick one to use:) Thank you,Michelle > To: alan.ga...@btinternet.com > From: l...@openend.se > Date: F

tutor@python.org

2015-06-12 Thread Laura Creighton
In a message of Fri, 12 Jun 2015 17:26:42 +0100, Alan Gauld writes: >I stand corrected but it still seems to me like its easier to >test in the language in which you develop. And most languages >have testing frameworks these days. Many languages have extremely poor testing frameworks. And when it

tutor@python.org

2015-06-12 Thread Alan Gauld
On 12/06/15 11:48, Laura Creighton wrote: Yes, but PyTest (and unittest) are for testing units of Python code. So they really only apply if your application is written in Python. Actually, there are many people using pytest to test code written in other languages. We wrote this: https://pypi.

tutor@python.org

2015-06-12 Thread Laura Creighton
In a message of Fri, 12 Jun 2015 15:58:03 +1000, Cameron Simpson writes: >On 11Jun2015 18:55, alan.ga...@btinternet.com >wrote: >>On 11/06/15 14:25, Michelle Meiduo Wu wrote: >>>I read some document and found Pytest can be used to write >>> simpler code compared with using unittest in Python. >>

tutor@python.org

2015-06-12 Thread Albert-Jan Roskam via Tutor
> > From: Laura Creighton >To: Michelle Meiduo Wu >Cc: l...@openend.se; "tutor@python.org" >Sent: Thursday, June 11, 2015 11:11 PM >Subject: Re: [Tutor] Python&Pytest > > >In a message of Thu, 11 Jun 2015 09:25:25 -0400, Michelle Meiduo Wu writes: >>Hi there, >