tox-dev / tox-pipenv

A pipenv plugin for Tox
MIT License
124 stars 30 forks source link

support pipenv installing pipfile requirements when tox.ini does not #56

Closed tonybaloney closed 5 years ago

tonybaloney commented 5 years ago

See #52 for details.

Running this plugin with no dependencies in your tox.ini will skip python -m pipenv install --dev {deps} because there aren't any.

However, in the pipenv documentation it says that when you call install it will load the pipfile by default. This meant that if you didn't provide deps in tox.ini but had some in pipfile, they wouldn't get installed with this plugin.

This update fixes that behaviour