Code

can now unset values in CSV editing (sf bug 704788)
[roundup.git] / run_tests
1 #! /usr/bin/env python
2 #
3 # Copyright (c) 2001 Richard Jones
4 # This module is free software, and you may redistribute it and/or modify
5 # under the same terms as Python, so long as this copyright message and
6 # disclaimer are retained in their original form.
7 #
8 # This module is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 #
12 # $Id: run_tests,v 1.8 2002-09-10 01:07:04 richard Exp $
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()
21 from test import go
22 import sys
23 if len(sys.argv) > 1:
24     go(sys.argv[1:])
25 else:
26     go()
28 # vim: set filetype=python ts=4 sw=4 et si