enable mypy on CI for core stuff

This commit is contained in:
Dima Gerasimov 2020-05-04 18:30:17 +01:00 committed by karlicoss
parent 3912ef2460
commit 1f07e1a2a8
5 changed files with 42 additions and 21 deletions

View file

@ -1,6 +1,7 @@
from my.coding.commits import get_all_commits
from more_itertools import ilen
from my.coding.commits import commits
def test():
commits = get_all_commits()
assert len(commits) > 10
all_commits = commits()
assert ilen(all_commits) > 10