Re: Running all unit tests

2009-02-07 Thread Jason Voegele
Ben Finney wrote: > Jason Voegele writes: > >> What's the recommended approach for Python programs? I'm sure I >> could write a shell script (or a Python script even) that scans my >> "test" directory for test cases and runs them, but I'm wondering if >> there's something already built in that co

Re: Running all unit tests

2009-02-06 Thread Jean-Paul Calderone
On Fri, 06 Feb 2009 21:11:15 -0500, Jason Voegele wrote: I'm working on my first substantial Python project, and I'm following a fully test-first approach. I'd like to know how Pythonistas typically go about running all of their tests to ensure that my application stays "green". In Ruby, I wou

Re: Running all unit tests

2009-02-06 Thread Ben Finney
Jason Voegele writes: > What's the recommended approach for Python programs? I'm sure I > could write a shell script (or a Python script even) that scans my > "test" directory for test cases and runs them, but I'm wondering if > there's something already built in that could do this for me. The l

Re: Running all unit tests

2009-02-06 Thread D'Arcy J.M. Cain
On Fri, 06 Feb 2009 21:11:15 -0500 Jason Voegele wrote: > I'm working on my first substantial Python project, and I'm following a fully > test-first approach. I'd like to know how Pythonistas typically go about > running all of their tests to ensure that my application stays "green". I check i

Re: Running all unit tests

2009-02-06 Thread Darcy Mason
On Feb 6, 9:11 pm, Jason Voegele wrote: > I'm working on my first substantial Python project, and I'm following a fully > test-first approach.  I'd like to know how Pythonistas typically go about > running all of their tests to ensure that my application stays "green". > > In Ruby, I would have a

Running all unit tests

2009-02-06 Thread Jason Voegele
I'm working on my first substantial Python project, and I'm following a fully test-first approach. I'd like to know how Pythonistas typically go about running all of their tests to ensure that my application stays "green". In Ruby, I would have a Rake task so that I could say "rake test" and al