Mercurial > p > roundup > code
changeset 135:79bc5f0a0dde
Added unit tests so they're run whenever we package/install/whatever.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 29 Jul 2001 23:34:26 +0000 |
| parents | d3ffcf862fb7 |
| children | 72de483388e3 |
| files | setup.py |
| diffstat | 1 files changed, 9 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Sun Jul 29 23:32:13 2001 +0000 +++ b/setup.py Sun Jul 29 23:34:26 2001 +0000 @@ -1,5 +1,5 @@ #! /usr/bin/env python -# $Id: setup.py,v 1.8 2001-07-29 09:43:46 richard Exp $ +# $Id: setup.py,v 1.9 2001-07-29 23:34:26 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -8,6 +8,10 @@ import os from roundup.templatebuilder import makeHtmlBase +print 'Running unit tests...' +import test +test.go() + templates = 'classic', 'extended' packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ] installdatafiles = [] @@ -21,7 +25,7 @@ setup ( name = "roundup", - version = "0.2.2", + version = "0.2.3", description = "Roundup issue tracking system.", author = "Richard Jones", author_email = "richard@sourceforge.net", @@ -32,6 +36,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.8 2001/07/29 09:43:46 richard +# Make sure that the htmlbase is up-to-date when we build a source dist. +# # Revision 1.7 2001/07/29 08:37:58 richard # changes #
