From a1f3a8eba42f6f8bbc888538de1fd9c23cfdd2bf Mon Sep 17 00:00:00 2001 From: Edward Amor Date: Thu, 30 Sep 2021 00:04:05 -0400 Subject: [PATCH] chore: update tox mypy flags Add `--install-types` and `--non-interactive` flags. After upgrading mypy, the CI would fail, with the suggestion to add those flags. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f0a54f98260..cb105070a15 100644 --- a/tox.ini +++ b/tox.ini @@ -54,4 +54,4 @@ commands = basepython = python3.8 extras = lint commands = - mypy --follow-imports=silent --ignore-missing-imports --disallow-incomplete-defs -p vyper + mypy --install-types --non-interactive --follow-imports=silent --ignore-missing-imports --disallow-incomplete-defs -p vyper