On 02/26/2014 02:39 PM, Mark Sapiro wrote: > > I then ran > > nose2 -v &> test.log > > which encountered one error before hanging apparently with a locked > sqlite3 database. My test.log is attached. It is somewhat different from > Tom's in that it hung on a different test, and the actual sequence of > tests is different, and I encountered an error in a test.
The error (failed test) was due to the default encoding in this Python installation being UTF-8 rather than ascii. Changing sitecustomise.py to not set UTF-8 allowed the test to succeed. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan _______________________________________________ Mailman-Developers mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-developers Mailman FAQ: http://wiki.list.org/x/AgA3 Searchable Archives: http://www.mail-archive.com/mailman-developers%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-developers/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
