Ignore __repr__ method for test coverage
This commit is contained in:
parent
6adafeee45
commit
16016e8bc7
@ -21,7 +21,7 @@ class Project(Base, mixins.TimestampsMixin, mixins.AuditableMixin):
|
||||
def displayname(self):
|
||||
return self.name
|
||||
|
||||
def __repr__(self):
|
||||
def __repr__(self): # pragma: no cover
|
||||
return "<Project(name='{}', description='{}', workspace='{}', id='{}')>".format(
|
||||
self.name, self.description, self.workspace.name, self.id
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user