Preserve mirrored pytest-xdist version
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = [
|
||||||
"setuptools>=77.0",
|
"setuptools>=77.0",
|
||||||
"setuptools-scm[toml]>=6.2.3",
|
|
||||||
]
|
]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "pytest-xdist"
|
name = "pytest-xdist"
|
||||||
|
version = "3.7.1.dev24+g2b4372bd6"
|
||||||
description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs"
|
description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs"
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@@ -35,7 +35,6 @@ dependencies = [
|
|||||||
"execnet>=2.1",
|
"execnet>=2.1",
|
||||||
"pytest>=7.0.0",
|
"pytest>=7.0.0",
|
||||||
]
|
]
|
||||||
dynamic = ["version"]
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://github.com/pytest-dev/pytest-xdist"
|
Homepage = "https://github.com/pytest-dev/pytest-xdist"
|
||||||
@@ -53,9 +52,6 @@ testing = ["filelock"]
|
|||||||
psutil = ["psutil>=3.0"]
|
psutil = ["psutil>=3.0"]
|
||||||
setproctitle = ["setproctitle"]
|
setproctitle = ["setproctitle"]
|
||||||
|
|
||||||
[tool.setuptools_scm]
|
|
||||||
write_to = "src/xdist/_version.py"
|
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
# pytest-services also defines a worker_id fixture, disable
|
# pytest-services also defines a worker_id fixture, disable
|
||||||
# it so they don't conflict with each other (#611).
|
# it so they don't conflict with each other (#611).
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
from xdist._version import version as __version__
|
|
||||||
from xdist.plugin import get_xdist_worker_id
|
from xdist.plugin import get_xdist_worker_id
|
||||||
from xdist.plugin import is_xdist_controller
|
from xdist.plugin import is_xdist_controller
|
||||||
from xdist.plugin import is_xdist_master
|
from xdist.plugin import is_xdist_master
|
||||||
from xdist.plugin import is_xdist_worker
|
from xdist.plugin import is_xdist_worker
|
||||||
|
|
||||||
|
|
||||||
|
__version__ = "3.7.1.dev24+g2b4372bd6"
|
||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"__version__",
|
"__version__",
|
||||||
"get_xdist_worker_id",
|
"get_xdist_worker_id",
|
||||||
|
|||||||
Reference in New Issue
Block a user