A PDM plugin to run a command on multiple Python versions.
Project description
PDM Multirun
A PDM plugin to run a command on multiple Python versions.
:warning: Looking for maintainers. I do not use PDM nor this plugin nowadays, and don't have the time to fix CI failures or upgrade the code base to support new versions of PDM. If you wish to be added as a collaborator on this project in order to help maintaining it, or if you wish the repository to be transfered to you, please open an issue or discussion, with enough information about you for me to trust you :wink:
Installation
With pipx:
pipx install pdm
pipx inject pdm pdm-multirun
With PDM:
pdm self add pdm-multirun
As a local-only plugin:
# pyproject.toml
[tool.pdm]
plugins = [
"pdm-multirun",
]
pdm install --plugins
Usage
This plugin adds a multirun command to PDM.
The command accepts the same parameters as the run command,
with an additional -i, --interpreters, --versions parameter
that allows to specify the interpreters to use.
pdm multirun pytest tests/
To specify interpreters, pass a comma-separated string of Python versions:
pdm multirun -i 3.10,3.11 pytest tests/
If you use virtual environments instead,
pass their names to the --interpreters option
and add the -e, --venvs flag:
pdm multirun -ei 3.10,3.11 pytest tests/
pdm multirun -ei tests38,tests39 pytest tests/
You can set PDM Multirun to use virtual environments by default by
setting the PDM_MULTIRUN_USE_VENVS environment variable to 1.
By default, PDM Multirun reads Python versions (or venv names)
from the PDM_MULTIRUN_VERSIONS environment variable.
It is a string of {major}.{minor} versions (or venv names),
separated by spaces, that can be found and called by PDM.
export PDM_MULTIRUN_VERSIONS="3.8 3.9 3.10 3.11 3.12"
pdm multirun pytest tests/
export PDM_MULTIRUN_VERSIONS="tests38 tests39 tests310"
pdm multirun pytest tests/
PDM Multirun sets a number of environment variables that can be used by code run in each version.
PDM_MULTIRUNset to1whenever PDM Multirun is being used.PDM_MULTIRUN_CURRENTis set to the name of the current interpreter or virtual environment (such as that passed using-iorPDM_MULTIRUN_VERSIONS).
You can use these variables, for example, to output metadata about the current Python version or interpreter, like in the example below, which if invoked by PDM Multirun, would start by printing the name of the virtual environment or interpeter, and the version of Python being used.
script.py
import os
import sys
MULTIRUN = os.getenv("PDM_MULTIRUN", "0") == "1"
if MULTIRUN:
int_name = os.getenv('PDM_MULTIRUN_CURRENT', '')
py = f"{int_name}: {sys.version_info[0]}.{sys.version_info[1]}"
print(f"{py} - Hello from python! 👋")
# continue script as required...
In a scenario where you had two virtual environments, tests38 and tests39,
and saved this script in a file named example.py, running the command:
pdm multirun -e tests38,tests39 python example.py
Would output the text below.
tests38: 3.8 - Hello from python! 👋
tests39: 3.9 - Hello from python! 👋
PDM Multirun successively runs the pdm use then pdm run internal actions.
By default, if PDM cannot "use" an interpreter/venv, it continues with the next.
# will continue with 3.8 even if 3.7 is not available
pdm multirun -i 3.7,3.8 pytest tests/
You can tell it to fail instead with the -f, --fail-fast flag:
# will stop at 3.7 if it's not available
pdm multirun -fi 3.7,3.8 pytest tests/
If the command you run fails on a Python version, PDM Multirun stops there.
In any case, PDM Multirun will restore the Python interpreter
saved in .pdm-python (through the pdm use command) before exiting.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pdm_multirun-1.1.1.tar.gz.
File metadata
- Download URL: pdm_multirun-1.1.1.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f966279e07b715e7cb5e568aa131733140deb8bb0ee9a2c7b8f6739e6b1dc80
|
|
| MD5 |
e47e5ea7d849bf792d377c34c1303708
|
|
| BLAKE2b-256 |
99489ef0be72e00b689c258658ef0d5287dffcd73d8980df2274ea048bd20e30
|
File details
Details for the file pdm_multirun-1.1.1-py3-none-any.whl.
File metadata
- Download URL: pdm_multirun-1.1.1-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9221c6585d70c6f4244872cbe53b0f6423f4e0d758b0965ce82281f1d39264af
|
|
| MD5 |
a9b809af9d463bfe26b2deaa6ec8b84b
|
|
| BLAKE2b-256 |
073ff747ad074a1552c67791ad98b50c43547de11b489a291a2bd39680657d02
|