Skip to content

Commit 3c7215d

Browse files
author
Richard Jones
committed
some unit test fixes
1 parent 21c96e3 commit 3c7215d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def process_args(argv=None):
696696

697697
module_filter = None
698698
test_filter = None
699-
VERBOSE = 1
699+
VERBOSE = 2
700700
LOOP = 0
701701
GUI = 0
702702
TRACE = 0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.76 2004-11-29 02:01:05 anthonybaxter Exp $
19+
# $Id: setup.py,v 1.77 2004-12-08 01:24:41 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -210,7 +210,7 @@ def check_manifest():
210210
f = open('MANIFEST')
211211
except:
212212
print '\n*** SOURCE ERROR: The MANIFEST file is missing!'
213-
sys.exit(1)
213+
return
214214
try:
215215
manifest = [l.strip() for l in f.readlines()]
216216
finally:

test/test_rlog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ def setUp(self):
77
self.logging = rlog.BasicLogging()
88
self.file = StringIO.StringIO()
99
self.logging.setFile(self.file)
10+
self.logging.setLevel(self.logging.LVL_INFO)
1011
def testLevels(self):
1112
logger = self.logging.getLogger('test')
1213
v1 = self.file.getvalue()

0 commit comments

Comments
 (0)