We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today I faced a problem: #1601 New pytest-mypy-plugins has jinja2 as a dependency. After that we got new stubtest failures.
pytest-mypy-plugins
jinja2
stubtest
So, I realized that we don't have many optional Django dependencies for the runtime analysis. For example, from extras https://github.com/django/django/blob/6a523500af5bab3e05d9be9fc1a74d986c102f1a/setup.cfg#L48:
argon2
bcrypt
Database drivers:
mysqlclient
cx_Oracle
Maybe caches? What else?
The text was updated successfully, but these errors were encountered:
Not specifically extras, but psycopg2 or 3 will result in change the stubtest as well.
Would you prefer to go "full-extras" or to try and run multiple stubtests with different allowlists?
Sorry, something went wrong.
Multiple subtests seem better.
django.contrib.postgres.expressions
No branches or pull requests
Today I faced a problem: #1601
New
pytest-mypy-plugins
hasjinja2
as a dependency. After that we got newstubtest
failures.So, I realized that we don't have many optional Django dependencies for the runtime analysis.
For example, from extras https://github.com/django/django/blob/6a523500af5bab3e05d9be9fc1a74d986c102f1a/setup.cfg#L48:
argon2
bcrypt
Database drivers:
mysqlclient
: https://github.com/django/django/blob/6a523500af5bab3e05d9be9fc1a74d986c102f1a/django/db/backends/mysql/base.pycx_Oracle
: https://github.com/django/django/blob/6a523500af5bab3e05d9be9fc1a74d986c102f1a/django/db/backends/oracle/base.pyMaybe caches? What else?
The text was updated successfully, but these errors were encountered: