tox-pyenv
tox-pyenv copied to clipboard
plugin that tells tox to use `pyenv which` to find python executables
At this moment there are manual steps one should take in order to install all python environments needed for testing using tox-pyenv. The project homepage specifies on how to install...
Set `tox_pyenv_fallback` in general testenv definition and test with `tox --showconfig`. Setting `tox_pyenv_fallback` to both `true` or `false` results in `tox_pyenv_fallback = True` output from `tox --showconfig`. Providing `--tox-pyenv-no-fallback` on...
Fixes #14
I tried to install with with conda, but get this problems: UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment: Specifications: -...
Am I correct that the comment on README regarding "the list of python versions that are pre-installed in the CircleCI build environment (as of 09/27/2017)", does not apply in CircleCI...
Sometimes I get this error on strerr, and I don't think this should happen: ``` No handlers could be found for logger "tox_pyenv" ```
If the python version is shown by `pyenv versions`, and we can reasonably figure out the correct version to use (esp. if it matches the name exactly), enable the version...
Hello! I found this plugin when looking for doc about Python / tox usage in CircleCI. The current doc doesn’t explain clearly *what problem* it solves, and my tox config...
Maybe use `detox`: https://pypi.python.org/pypi/detox/
As of tox 1.7.2, you can simply skip environments when the interpreter is missing, via the [skip_missing_interpreters](http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL) setting. However, when using tox-pyenv, this setting is ignored, and you receive a...