Probably since https://git.kolab.org/rLKX2f28f2b1fb43b4f9b3ca0821508eee2afdaa443a pykolab unit tests fail with "todo.created().isUTC() is false" error, e.g.:
ERROR: test_001_minimal (tests.unit.test-003-event.TestEventXML)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/pykolab/tests/unit/test-003-event.py", line 367, in test_001_minimal
self.assertIsInstance(self.event.__str__(), str)
File "./pykolab/xml/event.py", line 1060, in __str__
raise EventIntegrityError, kolabformat.errorMessage()
EventIntegrityError: /home/abuild/rpmbuild/BUILD/libkolabxml-1.2/src/objectvalidation.cpp 92: event.created().isUTC() is falseBTW, there's one failing test more that should be fixed with:
a/tests/unit/test-011-wallace_resources.py
+++ b/tests/unit/test-011-wallace_resources.py
@@ -117,7 +117,7 @@ class TestWallaceResources(unittest.TestCase):
def _mock_find_resource(self, address):
if not 'resource' in address:
- return None
+ return [];
(prefix, domain) = address.split('@')
entry_dn = "cn=" + prefix + ",ou=Resources,dc=" + ",dc=".join(domain.split('.'))