Skip to content

Commit 3063e06

Browse files
author
Richard Jones
committed
Added unit tests so they're run whenever we package/install/whatever.
1 parent 8820ec5 commit 3063e06

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# $Id: setup.py,v 1.8 2001-07-29 09:43:46 richard Exp $
2+
# $Id: setup.py,v 1.9 2001-07-29 23:34:26 richard Exp $
33

44
from distutils.core import setup, Extension
55
from distutils.util import get_platform
@@ -8,6 +8,10 @@
88
import os
99
from roundup.templatebuilder import makeHtmlBase
1010

11+
print 'Running unit tests...'
12+
import test
13+
test.go()
14+
1115
templates = 'classic', 'extended'
1216
packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
1317
installdatafiles = []
@@ -21,7 +25,7 @@
2125

2226

2327
setup ( name = "roundup",
24-
version = "0.2.2",
28+
version = "0.2.3",
2529
description = "Roundup issue tracking system.",
2630
author = "Richard Jones",
2731
author_email = "[email protected]",
@@ -32,6 +36,9 @@
3236

3337
#
3438
# $Log: not supported by cvs2svn $
39+
# Revision 1.8 2001/07/29 09:43:46 richard
40+
# Make sure that the htmlbase is up-to-date when we build a source dist.
41+
#
3542
# Revision 1.7 2001/07/29 08:37:58 richard
3643
# changes
3744
#

0 commit comments

Comments
 (0)