File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env python
2- # $Id: setup.py,v 1.11 2001-08-03 01:54:58 richard Exp $
2+ # $Id: setup.py,v 1.12 2001-08-03 02:51:06 richard Exp $
33
44from distutils .core import setup , Extension
55from distutils .util import get_platform
88import os
99from roundup .templatebuilder import makeHtmlBase
1010
11- print 'Running unit tests...'
12- import test
13- test .go ()
11+ try :
12+ import unittest
13+ except :
14+ print 'Skipping unit tests (no unittest module found)'
15+ else :
16+ print 'Running unit tests...'
17+ import test
18+ test .go ()
1419
1520templates = 'classic' , 'extended'
1621packagelist = [ 'roundup' , 'roundup.backends' , 'roundup.templates' ]
3641
3742#
3843# $Log: not supported by cvs2svn $
44+ # Revision 1.11 2001/08/03 01:54:58 richard
45+ # Started stuff off for the 0.2.5 release
46+ #
3947# Revision 1.10 2001/07/30 07:17:44 richard
4048# Just making sure we've got the right version in there for development.
4149#
You can’t perform that action at this time.
0 commit comments