Customize Python interpreters used to create tox testenvs
Project description
tox-interpreters
What?
tox-interpreters
enables overriding the logic tox
follows in
resolving base Python interpreters when it comes to virtual environment
creation.
It does so by allowing the user to bind test env names to the
interpreters of their choice, by means of regular expressions.
Why?
I usually run tox
from a permanent and isolated virtual environment,
and I keep Python interpreters in multiple versions installed at the
system level for tox
itself to use whenever it needs to create a test
environment.
It turns out that if the required Python version for a new environment
matches the one tox
is running from, tox
will use its own Python
interpreter as base to perform the creation, despite its belonging to a
virtual environment - the system level interpreter will not be used.
The standard way of fixing this would be by setting basepython
to the
absolute path of the interpreter to be used for a specific environment.
Unfortunately this becomes impractical as soon as a generative envlist
with factors is involved.
Of course this is just one of the many possible use cases. Generally
speaking, tox-interpreters
aims at providing full consistency and
flexibility in virtual environment creation across Python versions, by
allowing the user to choose the base interpreter to be used depending on
the name of the test environment.
Installation
tox-interpreters
has been developed as a tox
plugin, therefore it
has to be installed along with tox
itself.
$ pip install tox-interpreters
Usage
To use tox-interpreters
, add the setting interpreter
to the
[testenv]
section of your tox
configuration file (typically
tox.ini
), as follows:
[testenv]
interpreter =
py37.*=/path/to/python3.7
py38.*=/path/to/python3.8
The interpreter
setting accepts a list of <regex>=<interpreter>
lines as value. Each line binds a regular expression to an interpreter.
Whenever a new test environment needs to be created, the selection of the base Python interpreter is performed by checking the name of the environment against all the regular expressions, in order. The interpreter bound to the first matching regex will be used.
In case of no match, the selection logic falls back to the standard
behaviour of tox
- that is, everything works just as if
tox-interpreters
wasn't installed at all.
Interpreters can be specified by their absolute path or just by their
file name. In the latter case, the path to the file needs to be in the
PATH
environment variable for virtual environment creation to succeed.
[testenv]
interpreter =
py37.*=/path/to/python3.7
py38.*=python3.8
License
See: LICENSE
MIT License
Copyright (c) 2019 Fabio Sangiovanni
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tox-interpreters-0.1.0.tar.gz
.
File metadata
- Download URL: tox-interpreters-0.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6033203ff4a7252ae9a7e60e018568d09f4c6db096af88b3f1607dc10366f7aa |
|
MD5 | 10adfdc5047c5e6c8b13a87f1fa2ebc8 |
|
BLAKE2b-256 | 9004178715308489038e86abc32aefb3ee2cbaf33d69939b4a29aa3270e83c41 |
File details
Details for the file tox_interpreters-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: tox_interpreters-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2301ebf03a6d68a8bb9dce1b29eefc544607bc601b5d1e42534f4daf8fd4462a |
|
MD5 | 002abd1ba238350c028e6573e5d67998 |
|
BLAKE2b-256 | 86d13d4403a160063c8eac792abb338f697d1dcd6fe3f9cdd4b9545089f7f2f0 |