Mercurial > p > roundup > code
view run_tests @ 718:e10c37f53efd
fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
(thanks dman)
fixed some sorting issues that were breaking some unit tests under py2.2
mailgw test output dir was confusing the init test (but only on 2.2 *shrug*)
fixed bug in the init unit test that meant only the bsddb test ran if it
could (it clobbered the anydbm test)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 15 May 2002 03:27:16 +0000 |
| parents | d77b82588bf0 |
| children | 51c425129b35 |
line wrap: on
line source
#! /usr/bin/env python # # Copyright (c) 2001 Richard Jones # This module is free software, and you may redistribute it and/or modify # under the same terms as Python, so long as this copyright message and # disclaimer are retained in their original form. # # This module is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # $Id: run_tests,v 1.4 2002-02-14 23:38:12 richard Exp $ from test import go import sys if len(sys.argv) > 1: go(sys.argv[1:]) else: go() # # $Log: not supported by cvs2svn $ # Revision 1.3 2002/01/23 20:09:41 jhermann # Proper fix for failing test # # Revision 1.2 2002/01/23 11:08:52 grubert # . run_tests testReldate_date failed if LANG is 'german' # # Revision 1.1 2002/01/23 05:53:46 richard # convenience script for running the unit tests... # ... they are no longer run in the setup, since they take too long # # # # # vim: set filetype=python ts=4 sw=4 et si
