Optimize tests typechecking script (#255)

* skip whole Django repo for tests typechecking

* lint
This commit is contained in:
Maksim Kurnikov
2019-12-11 00:52:08 +03:00
committed by GitHub
parent 8c2de7da56
commit 5a45544e76
3 changed files with 25 additions and 13 deletions
-3
View File
@@ -11,19 +11,16 @@ jobs:
- name: Typecheck Django 3.0 test suite with python 3.7
python: 3.7
script: |
pip install Django==3.0.*
python ./scripts/typecheck_tests.py --django_version=3.0
- name: Typecheck Django 3.0 test suite with python 3.6
python: 3.6
script: |
pip install Django==3.0.*
python ./scripts/typecheck_tests.py --django_version=3.0
- name: Typecheck Django 2.2 test suite with python 3.7
python: 3.7
script: |
pip install Django==2.2.*
python ./scripts/typecheck_tests.py --django_version=2.2
- name: Mypy for plugin code