doctor & stat improvements
- doctor: log when there is no stats() function and suggest to use it - check that stats() result isn't None - warn when there is not data in the iterable
This commit is contained in:
parent
2619af7ae7
commit
ed4b6c409f
2 changed files with 10 additions and 1 deletions
|
@ -403,11 +403,13 @@ def _stat_iterable(it: Iterable[C]) -> Any:
|
|||
from more_itertools import ilen, take, first
|
||||
|
||||
# todo not sure if there is something in more_itertools to compute this?
|
||||
total = 0
|
||||
errors = 0
|
||||
last = None
|
||||
def funcit():
|
||||
nonlocal errors, last
|
||||
nonlocal errors, last, total
|
||||
for x in it:
|
||||
total += 1
|
||||
if isinstance(x, Exception):
|
||||
errors += 1
|
||||
else:
|
||||
|
@ -429,6 +431,10 @@ def _stat_iterable(it: Iterable[C]) -> Any:
|
|||
'count': count,
|
||||
}
|
||||
|
||||
if total == 0:
|
||||
# not sure but I guess a good balance? wouldn't want to throw early here?
|
||||
res['warning'] = 'THE ITERABLE RETURNED NO DATA'
|
||||
|
||||
if errors > 0:
|
||||
res['errors'] = errors
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue