Re: Running all unit tests

2009-02-07 Thread Jason Voegele
Ben Finney wrote: Jason Voegele ja...@jvoegele.com 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

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 all

Re: Running all unit tests

2009-02-06 Thread Darcy Mason
On Feb 6, 9:11 pm, Jason Voegele ja...@jvoegele.com 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

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 ja...@jvoegele.com 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

Re: Running all unit tests

2009-02-06 Thread Ben Finney
Jason Voegele ja...@jvoegele.com 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

Re: Running all unit tests

2009-02-06 Thread Jean-Paul Calderone
On Fri, 06 Feb 2009 21:11:15 -0500, Jason Voegele ja...@jvoegele.com 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