I'm just starting playing with Pylons, and my Python test framework fu is a bit rusty, so I might be missing something obvious: I'm looking for a way to have separate unit tests and system tests sets.
I wrote some database independent model code (naturally I'm starting with CouchDB, not the default of RDBMS + SQLAlchemy every tutorial talks about...) and tests for those. I even got nose to run my tests. However, running nosetest from setup.py insists on running websetup.py which sets up my db etc. It's not a big problem yet but for a large system I'd prefer to have some fast running unit tests that don't require the environment and have the tests that use db, react to web requests etc as a separate set that can take a bit longer without hindering development. Any suggestions on how to achieve that? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
