fix problems with 0.660

This commit is contained in:
Maxim Kurnikov
2019-01-20 18:57:26 +03:00
parent 98e60d084f
commit 87877774cd
5 changed files with 3 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ if not os.path.exists('./django-sources'):
git clone -b stable/2.1.x https://github.com/django/django.git django-sources
ignored_error_patterns = ["Need type annotation for", "already defined on", "Cannot assign to a"]
for line in $(mypy --config-file ./scripts/mypy.ini ./django-sources/tests/files).split('\n'):
for line in $(mypy --config-file ./scripts/mypy.ini ./django-sources/tests).split('\n'):
for pattern in ignored_error_patterns:
if pattern in line:
break