You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issues of this repo and believe that this is not a duplicate.
I have searched the FAQ and general documentation and believe that my question is not already covered.
Feature Request
I am trying to figure out what would be the best way to combine poetry's dependency management with tox. I need to configure multiple environments for formatting, linting, testing, etc. and each of those environments has a different list of development dependencies. I think I could make it work by defining groups for dependencies but would it not be simpler to just be able to create any dynamic filter within tox, so that poetry does not need to be aware of those different groups, just that the dependencies are only for development?
This is why I suggest adding filtering functionality to poetry export so that one could do:
poetry export --only dev --filter 'pytest,pytest-*'
So that then tox's default handling of dependencies (via pip) can rely on dynamically generated locked dependencies' lists.
The text was updated successfully, but these errors were encountered:
Feature Request
I am trying to figure out what would be the best way to combine poetry's dependency management with
tox
. I need to configure multiple environments for formatting, linting, testing, etc. and each of those environments has a different list of development dependencies. I think I could make it work by defining groups for dependencies but would it not be simpler to just be able to create any dynamic filter withintox
, so thatpoetry
does not need to be aware of those different groups, just that the dependencies are only for development?This is why I suggest adding filtering functionality to
poetry export
so that one could do:So that then
tox
's default handling of dependencies (viapip
) can rely on dynamically generated locked dependencies' lists.The text was updated successfully, but these errors were encountered: