> I'm questioning why its initializing for every test, and not 1x then run all > the tests in it.
If you use nose and *don't* use the unittest API, then you can have module-level setup functions. Create a directory named test with a file called test_foo. All your tests are normal functions like test_bar(). You do setup and tear down in functions called setup_module and teardown_module. It's an easy API to remember ;) -jj --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
