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
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
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
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
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
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