From 1b6c337aef3656d6216c280bb9a59da8ac872ade Mon Sep 17 00:00:00 2001 From: Maxim Kurnikov Date: Thu, 25 Jul 2019 20:03:10 +0300 Subject: [PATCH] enable mypy typechecking for plugin code --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4520e6a..795cae6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,10 @@ jobs: python: 3.6 script: 'python ./scripts/typecheck_tests.py' + - name: Mypy for plugin code + python: 3.7 + script: 'mypy ./mypy_django_plugin' + - name: Lint with black python: 3.7 script: 'black --check --line-length=120 django-stubs/'