How to Install and Uninstall python3-pytest-xdist Package on openSUSE Leap

Last updated: May 14,2024

1. Install "python3-pytest-xdist" package

Please follow the step by step instructions below to install python3-pytest-xdist on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-pytest-xdist

2. Uninstall "python3-pytest-xdist" package

Here is a brief guide to show you how to uninstall python3-pytest-xdist on openSUSE Leap:

$ sudo zypper remove python3-pytest-xdist

3. Information about the python3-pytest-xdist package on openSUSE Leap

Information for package python3-pytest-xdist:
---------------------------------------------
Repository : Update repository with updates from SUSE Linux Enterprise 15
Name : python3-pytest-xdist
Version : 1.32.0-150400.5.68
Arch : noarch
Vendor : SUSE LLC
Installed Size : 300.5 KiB
Installed : No
Status : not installed
Source package : python3-pytest-xdist-1.32.0-150400.5.68.src
Upstream URL : https://github.com/pytest-dev/pytest-xdist
Summary : Distributed testing and loop-on-failing for py.test
Description :
The `pytest-xdist`_ plugin extends py.test with some unique
test execution modes:
* test run parallelization_: if you have multiple CPUs or hosts you can use
those for a combined test run. This allows to speed up
development or to use special resources of `remote machines`_.
* ``--boxed``: (not available on Windows) run each test in a boxed_
subprocess to survive ``SEGFAULTS`` or otherwise dying processes
* ``--looponfail``: run your tests repeatedly in a subprocess. After each run
py.test waits until a file in your project changes and then re-runs
the previously failing tests. This is repeated until all tests pass
after which again a full run is performed.
* `Multi-Platform`_ coverage: you can specify different Python interpreters
or different platforms and run tests in parallel on all of them.
Before running tests remotely, ``py.test`` efficiently "rsyncs" your
program source code to the remote place. All test results
are reported back and displayed to your local terminal.
You may specify different Python versions and interpreters.