coverage
This commit is contained in:
parent
77e4fff763
commit
69da6ed5e6
|
@ -736,10 +736,10 @@ class TiramisuContextValue(TiramisuContext):
|
|||
**kwargs)
|
||||
|
||||
def dict(self,
|
||||
flatten=False,
|
||||
withvalue=undefined,
|
||||
withoption=None,
|
||||
fullpath=False):
|
||||
flatten=False,
|
||||
withvalue=undefined,
|
||||
withoption=None,
|
||||
fullpath=False):
|
||||
"""return dict with path as key and value"""
|
||||
if not self.config_bag.properties:
|
||||
config_bag = self.config_bag
|
||||
|
|
|
@ -824,7 +824,7 @@ class KernelGroupConfig(_CommonConfig):
|
|||
"""Setattr not in current KernelGroupConfig, but in each children
|
||||
"""
|
||||
ret = []
|
||||
if isinstance(self, KernelGroupConfig):
|
||||
if self.impl_type == 'group':
|
||||
commit = True
|
||||
else:
|
||||
#Commit only one time
|
||||
|
@ -864,7 +864,7 @@ class KernelGroupConfig(_CommonConfig):
|
|||
err._orig_opt))
|
||||
except (ValueError, SlaveError) as err:
|
||||
ret.append(err)
|
||||
if _commit and not isinstance(self, KernelGroupConfig):
|
||||
if _commit and self.impl_type != 'group':
|
||||
self.cfgimpl_get_values()._p_.commit()
|
||||
return ret
|
||||
|
||||
|
|
|
@ -133,7 +133,7 @@ def delete_session(session_id): # pragma: optional cover
|
|||
session = storage_module.storage.getsession()
|
||||
storage_module.value.delete_session(session_id)
|
||||
storage_module.storage.delete_session(session_id)
|
||||
if session:
|
||||
if session: # pragma: no cover
|
||||
session.commit()
|
||||
del(session)
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ class Storage(object):
|
|||
try:
|
||||
self.execute('INSERT INTO session(session, persistent) VALUES (?, ?)',
|
||||
(session_id, persistent))
|
||||
except sqlite3.IntegrityError:
|
||||
except sqlite3.IntegrityError: # pragma: no cover
|
||||
raise ConflictError(_('session "{}" already used').format(session_id))
|
||||
self.session_id = self._cursor.lastrowid
|
||||
self.created = True
|
||||
|
|
|
@ -172,7 +172,7 @@ class Values(Sqlite3DB):
|
|||
# autocreate owners
|
||||
try:
|
||||
nowner = getattr(owners, owner[0])
|
||||
except AttributeError:
|
||||
except AttributeError: # pragma: no cover
|
||||
owners.addowner(owner[0])
|
||||
nowner = getattr(owners, owner[0])
|
||||
if not with_value:
|
||||
|
|
Loading…
Reference in New Issue