From 613727ef5a7fa9f2045645e9f2de12fbb60379cb Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Thu, 1 Jul 2021 19:29:38 +0200 Subject: [PATCH] Install missing stubs for mypy --- noxfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 2550f86..22e1994 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,10 +1,12 @@ import nox + nox.options.sessions = ['lint', 'typing', 'tests'] locations = ['noxfile.py', 'setup.py', 'digaws/', 'tests/'] lint_common_args = ['--max-line-length', '120'] -mypy_args = ['--ignore-missing-imports'] +mypy_args = ['--ignore-missing-imports', '--install-types', '--non-interactive'] + pytest_args = ['--cov=digaws', '--cov-report=', 'tests/'] coverage_args = ['report', '--show-missing', '--fail-under=80']