Compare commits

..

No commits in common. "61970f6679ebc6fa2efdf2fe04b41b49df358e81" and "a3517a25abd2ad843887bf19158a5f6385fe1bc6" have entirely different histories.

1 changed files with 1 additions and 3 deletions

View File

@ -1,12 +1,10 @@
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', '--install-types', '--non-interactive']
mypy_args = ['--ignore-missing-imports']
pytest_args = ['--cov=digaws', '--cov-report=', 'tests/']
coverage_args = ['report', '--show-missing', '--fail-under=80']