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
conda_extras
extras
Tox currently offers a great way to reuse one of the dependencies lists from the setup.py:
setup.py
in setup.py:
setup(extras_require={ 'tests_pip': ['requests', 'six'] }, ...)
in tox.ini:
[testenv] extras = tests_pip
Could we imagine to have a conda_extras instruction with exactly the same capability ? (but installing the dependencies with conda of course)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tox currently offers a great way to reuse one of the dependencies lists from the
setup.py
:in setup.py:
in tox.ini:
Could we imagine to have a
conda_extras
instruction with exactly the same capability ? (but installing the dependencies with conda of course)The text was updated successfully, but these errors were encountered: