This is common to have the same mypy.ini / pyproject.toml for tests and type checking.
But, sometimes we only need to change a couple of settings in tests.
For example, passing --mypy-extra-settings="--no-incremental" as we did in django-stubs with two mypy.ini files.
This is common to have the same
mypy.ini
/pyproject.toml
for tests and type checking. But, sometimes we only need to change a couple of settings in tests.For example, passing
--mypy-extra-settings="--no-incremental"
as we did indjango-stubs
with twomypy.ini
files.Right now, there's no way to do that.