1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: __init__.py,v 1.9 2002-01-02 02:31:38 richard Exp $
18+ # $Id: __init__.py,v 1.10 2002-01-05 02:09:46 richard Exp $
1919
2020import unittest
2121import os , tempfile
@@ -36,10 +36,26 @@ def go():
3636 test_token .suite (),
3737 ))
3838 runner = unittest .TextTestRunner ()
39- runner .run (suite )
39+ result = runner .run (suite )
40+ return result .wasSuccessful ()
4041
4142#
4243# $Log: not supported by cvs2svn $
44+ # Revision 1.9 2002/01/02 02:31:38 richard
45+ # Sorry for the huge checkin message - I was only intending to implement #496356
46+ # but I found a number of places where things had been broken by transactions:
47+ # . modified ROUNDUPDBSENDMAILDEBUG to be SENDMAILDEBUG and hold a filename
48+ # for _all_ roundup-generated smtp messages to be sent to.
49+ # . the transaction cache had broken the roundupdb.Class set() reactors
50+ # . newly-created author users in the mailgw weren't being committed to the db
51+ #
52+ # Stuff that made it into CHANGES.txt (ie. the stuff I was actually working
53+ # on when I found that stuff :):
54+ # . #496356 ] Use threading in messages
55+ # . detectors were being registered multiple times
56+ # . added tests for mailgw
57+ # . much better attaching of erroneous messages in the mail gateway
58+ #
4359# Revision 1.8 2001/12/31 05:09:20 richard
4460# Added better tokenising to roundup-admin - handles spaces and stuff. Can
4561# use quoting or backslashes. See the roundup.token pydoc.
0 commit comments