A Tox plugin using asdf to find python executables.
This plugin is made exclusively to support asdf so obviously you will need a functional asdf installation as well as the asdf-python
plugin.
Simply install tox-asdf
in addition to tox
to get ready:
pip install tox tox-asdf
That's it, you can now run tox
as usual but using asdf Python installations.
By default this plugin won't fail if a required Python version is missing from æsdf
, tox will fallback on its classic way of finding Python binaries from $PATH
.
You can override this behavior and force tox
to only use asdf
by using the --asdf-no-fallback
option:
tox --asdf-no-fallback
By default, tox-asdf
won't try to install missing Python version, but you can force this by using the --asdf-install
option.
tox --asdf-install
Obviously this will only useful on the first run.