diff options
Diffstat (limited to 'python/tests')
| -rwxr-xr-x | python/tests/tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/tests/tests.py b/python/tests/tests.py index 7c944b65..64e1cb06 100755 --- a/python/tests/tests.py +++ b/python/tests/tests.py @@ -28,6 +28,7 @@ import imp import sys +import time import unittest from XmlTestRunner import XmlTestRunner @@ -43,6 +44,8 @@ testSuites = ( if "--xml" in sys.argv: print """<?xml version="1.0"?>""" print """<testsuites xmlns="http://www.0d.be/ns/unittest">""" + print """ <title>Python Bindings</title>""" + print """ <datetime>%s</datetime>""" % time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) success = True for testSuite in testSuites: |
