We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pytest
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
Looks like pytest isn't the safest dependency, causing issues with scikit-learn: https://community.plot.ly/t/pytest-transient-dependency/25383
Could we move the import pytest into the testing module/class/function itself and not require it upon install? We could even have a separate install with setup.py's "extras" feature (https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies) like pip install dash[testing] or something.
import pytest
pip install dash[testing]
The text was updated successfully, but these errors were encountered:
@chriddyp in 1.0, we already use the extras feature in setup.py, so the pip install dash[testing] might be the way to go.
extras
setup.py
Sorry, something went wrong.
byronz
Successfully merging a pull request may close this issue.
Looks like
pytest
isn't the safest dependency, causing issues with scikit-learn: https://community.plot.ly/t/pytest-transient-dependency/25383Could we move the
import pytest
into the testing module/class/function itself and not require it upon install? We could even have a separate install with setup.py's "extras" feature (https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies) likepip install dash[testing]
or something.The text was updated successfully, but these errors were encountered: