Hello! On Sat, Feb 02, 2013 at 07:44:23PM -0700, Andrew Z <ahz...@gmail.com> wrote: > I read http://www.sqlobject.org/DeveloperGuide.html#testing and am > still unclear on exactly how to run a test. Sorry, this may be a > basic question, but I hope the Developer Guide could be more explicit. > > After installing py.test, I basically did this: > > $ svn co http://svn.colorstudy.com/SQLObject/trunk SQLObject > $ cd SQLObject > $ python sqlobject/tests/test_unicode.py -D sqlite:///tmp/foo.db > > However: > Traceback (most recent call last): > File "sqlobject/tests/test_unicode.py", line 1, in <module> > from sqlobject import * > ImportError: No module named sqlobject > > I also tried something like and got basically the same error > > $ pytest sqlobject/tests/test_unicode.py -D sqlite:///tmp/foo.db
Use py.test: $ py.test sqlobject/tests/test_unicode.py -D sqlite:///tmp/foo.db py.test is a library from py.lib; pytest is from logilab -- a completely different library. During the years I've working on SQLObject I developed a number of shell scripts to run tests and collect reports. If you are intersted I can send them to you. Oleg. -- Oleg Broytman http://phdru.name/ p...@phdru.name Programmers don't die, they just GOSUB without RETURN. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan _______________________________________________ sqlobject-discuss mailing list sqlobject-discuss@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss