Mercurial > p > roundup > code
comparison run_tests @ 753:938edfdeac6e
Sorry about this huge checkin!
It's fixing a lot of related stuff in one go though.
. [SF#541941] changing multilink properties by mail
. [SF#526730] search for messages capability
. [SF#505180] split MailGW.handle_Message
- also changed cgi client since it was duplicating the functionality
. build htmlbase if tests are run using CVS checkout (removed note from
installation.txt)
. don't create an empty message on email issue creation if the email is empty
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 29 May 2002 01:16:17 +0000 |
| parents | d7fe849a7bac |
| children | e5826025eeb7 |
comparison
equal
deleted
inserted
replaced
| 752:a721f4e7ebbc | 753:938edfdeac6e |
|---|---|
| 7 # | 7 # |
| 8 # This module is distributed in the hope that it will be useful, | 8 # This module is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 11 # | 11 # |
| 12 # $Id: run_tests,v 1.6 2002-05-25 07:24:29 rochecompaan Exp $ | 12 # $Id: run_tests,v 1.7 2002-05-29 01:16:16 richard Exp $ |
| 13 | |
| 14 # make sure we have the htmlbase | |
| 15 try: | |
| 16 from roundup.templates.classic import htmlbase | |
| 17 except ImportError: | |
| 18 import setup | |
| 19 setup.buildTemplates() | |
| 13 | 20 |
| 14 from test import go | 21 from test import go |
| 15 import sys | 22 import sys |
| 16 if len(sys.argv) > 1: | 23 if len(sys.argv) > 1: |
| 17 go(sys.argv[1:]) | 24 go(sys.argv[1:]) |
| 18 else: | 25 else: |
| 19 go() | 26 go() |
| 20 | 27 |
| 21 # | 28 # |
| 22 # $Log: not supported by cvs2svn $ | 29 # $Log: not supported by cvs2svn $ |
| 30 # Revision 1.6 2002/05/25 07:24:29 rochecompaan | |
| 31 # oops | |
| 32 # | |
| 23 # Revision 1.4 2002/02/14 23:38:12 richard | 33 # Revision 1.4 2002/02/14 23:38:12 richard |
| 24 # Fixed the unit tests for the mailgw re: the x-roundup-name header. | 34 # Fixed the unit tests for the mailgw re: the x-roundup-name header. |
| 25 # Also made the test runner more user-friendly: | 35 # Also made the test runner more user-friendly: |
| 26 # ./run_tests - detect all tests in test/test_<name>.py and run them | 36 # ./run_tests - detect all tests in test/test_<name>.py and run them |
| 27 # ./run_tests <name> - run only test/test_<name>.py | 37 # ./run_tests <name> - run only test/test_<name>.py |
