tox-pipenv
tox-pipenv copied to clipboard
A pipenv plugin for Tox
I couldn't find any other posts about the same issue, which means maybe it's user error. However, I was trying a pretty straightforward setup and ran into issues. Starting with...
Hello, would you consider moving the project under the tox-dev umbrella? See documentation under https://tox.readthedocs.io/en/rewrite/plugins.html#adoption-of-a-plugin-under-tox-dev-github-organization Furthermore, tox v4 is getting ready and we'd like to make sure this plugin is...
Allow to run `pipenv install` with `--ignore-pipfile` flag, which will use Pipfile.lock instead of Pipfile and speedup test execution because dependencies don't need to be resolved. https://github.com/tox-dev/tox-pipenv/issues/64
Here is the pipenv bug: https://github.com/pypa/pipenv/issues/4588 It gets hit when passing `--python .anything` (i.e. interpreter path starts with "."), which this plugin does by default: https://github.com/tox-dev/tox-pipenv/blob/aec927016bb3f8edfe29d428092e47f976c47ea1/tox_pipenv/plugin.py#L67 Related: https://github.com/tox-dev/tox/issues/1339#issuecomment-759081423 A better...
If we're trying to use tox and pipenv to have a reproducible build I feel like we should be using `Pipfile.lock` when installing the dependencies via `pipenv sync` This way...
If I'm not totally mistaken a `-p` / `--pipfile` option is not yet supported by this tox plugin. (This feature has been discussed in https://github.com/tox-dev/tox-pipenv/issues/37#issuecomment-397909182 and https://github.com/tox-dev/tox/issues/417#issuecomment-397910245, for example.) I'm...
tox version = 3.5.3 tox-pipenv version = 1.8.0 Running tox using tox-pipenv produces the following output: > WARNING: test command found but not installed in testenv > cmd: /Users/myself/workspace/project/venv/bin/python >...
Because of #5 I tried to run tox without this plugin first. I get the following warnings: ``` WARNING:test command found but not installed in testenv cmd: /home/omer/.local/share/virtualenvs/myproject--RkZn49j/bin/python env: /home/omer/Documents/Projects/myproject/.tox/py36...
Please could you provide an example `tox.ini` to help explain how to use this plugin? I'm struggling to get tox to use pipenv instead of pip. Cheers
Even though there is an issue #7 (Add example into readme), I feel, there are some open questions which is good to have clarified before writing any sort of documentation....