release: 0.5.1

This commit is contained in:
Romain Dorgueil
2017-10-21 12:49:34 +02:00
parent 9faed8fa38
commit c7f39aa851
19 changed files with 196 additions and 119 deletions

View File

@ -3,7 +3,10 @@ from bonobo.util.statistics import WithStatistics
class MyThingWithStats(WithStatistics):
def get_statistics(self, *args, **kwargs):
return (('foo', 42), ('bar', 69), )
return (
('foo', 42),
('bar', 69),
)
def test_with_statistics():