X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=run_tests;h=febf5e559e03f7bd4919575b863ca0a5571908a1;hb=f0b2d40032ba8c631b6eee76dd11080805b14974;hp=0bfc161bc9ed11f3b6c6a2eb8fe1dd660719b288;hpb=ed92c7fc8fc8659143ec38219d6b5c87e0e53b30;p=roundup.git diff --git a/run_tests b/run_tests index 0bfc161..febf5e5 100755 --- a/run_tests +++ b/run_tests @@ -9,21 +9,20 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# $Id: run_tests,v 1.3 2002-01-23 20:09:41 jhermann Exp $ +# $Id: run_tests,v 1.8 2002-09-10 01:07:04 richard Exp $ -import test -test.go() +# make sure we have the htmlbase +try: + from roundup.templates.classic import htmlbase +except ImportError: + import setup + setup.buildTemplates() + +from test import go +import sys +if len(sys.argv) > 1: + go(sys.argv[1:]) +else: + go() -# -# $Log: not supported by cvs2svn $ -# 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