15 lines
357 B
Python
15 lines
357 B
Python
from xdist._version import version as __version__
|
|
from xdist.plugin import get_xdist_worker_id
|
|
from xdist.plugin import is_xdist_controller
|
|
from xdist.plugin import is_xdist_master
|
|
from xdist.plugin import is_xdist_worker
|
|
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"is_xdist_worker",
|
|
"is_xdist_master",
|
|
"is_xdist_controller",
|
|
"get_xdist_worker_id",
|
|
]
|