Commit a0ed4650 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Event if defined, ZODB's __version__ might not tell the truth.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2327 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 200bac42
......@@ -194,10 +194,6 @@ class NeoTestRunner(unittest.TestResult):
def _buildSystemInfo(self):
import platform
import datetime
try:
from ZODB import __version__ as zodb_version
except ImportError:
zodb_version = 'unknown'
success = self.testsRun - len(self.errors) - len(self.failures)
s = """
Date : %s
......@@ -205,7 +201,6 @@ class NeoTestRunner(unittest.TestResult):
Machine : %s
System : %s (%s)
Python : %s
ZODB : %s
Directory : %s
Status : %7.3f%%
""" % (
......@@ -215,7 +210,6 @@ class NeoTestRunner(unittest.TestResult):
platform.system(),
platform.release(),
platform.python_version(),
zodb_version,
self.temp_directory,
success * 100.0 / self.testsRun,
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment