Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Carrillo 61970f6679
Merge pull request #7 from dcarrillo/fix-mypy
Install missing stubs for mypy
2021-07-01 19:55:08 +02:00
Daniel Carrillo 613727ef5a
Install missing stubs for mypy 2021-07-01 19:51:08 +02:00
1 changed files with 3 additions and 1 deletions

View File

@ -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']