> Second, when I issue the command: > > nosetests tests/test_controllers.py > > the test runs, but when I do this: > > nosetests tests/ > > it does not run test_controllers.py
You don't have to tell nose to look for tests in a directory called tests/, it will do that by default. So if you just do: nosetests you should be fine. JP (author of nose) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

