Files
python-pytest-xdist/python-pytest-xdist.spec
Dirk Mueller 55b23ef152 - update to 3.8.0:
* #1083: Add --no-loadscope-reorder and --loadscope-reorder
    option to control whether to automatically reorder tests in
    loadscope for tests where relative ordering matters. This
    only applies when using loadscope. For example, [test_file_1,
    test_file_2, ..., test_file_n] are given as input test files,
    if --no-loadscope-reorder is used, for either worker, the
    test_file_a will be executed before test_file_b only if a <
    b. The default behavior is to reorder the tests to maximize
    the number of tests that can be executed in parallel.
  * #1142: Added support for Python 3.13.
  * #1144: The internal steal command is now atomic - it
    unschedules either all requested tests or none. This is a
    prerequisite for group/scope support in the worksteal
    scheduler, so test groups won't be broken up incorrectly.
  * #1170: Add the --px arg to create proxy gateways. Proxy
    gateways are passed to additional gateways using the via
    keyword. They can serve as a way to run multiple workers on
    remote machines.
  * #1200: Now multiple xdist_group markers are considered when
    assigning tests to groups (order does not matter).
    Previously, only the last marker would assign a test to a
    group, but now if a test has multiple xdist_group marks
    applied (for example via parametrization or via fixtures),
    they are merged to make a new group.
  * #1162: Dropped support for EOL Python 3.8.
  * #1092: Update an error message to better indicate where users
    should go for more information.
  * #1190: Switched to using a SPDX license identifier introduced
    in PEP 639.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-xdist?expand=0&rev=43
2025-07-17 19:35:45 +00:00

89 lines
3.1 KiB
RPMSpec

#
# spec file for package python-pytest-xdist
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-pytest-xdist
Version: 3.8.0
Release: 0
Summary: Distributed testing and loop-on-failing for py.test
License: MIT
URL: https://github.com/pytest-dev/pytest-xdist
Source0: https://files.pythonhosted.org/packages/source/p/pytest-xdist/pytest_xdist-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module execnet >= 1.1}
BuildRequires: %{python_module filelock}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module psutil >= 3.0.0}
BuildRequires: %{python_module pytest >= 6.2.0}
BuildRequires: %{python_module setuptools_scm >= 6.2.3}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-execnet >= 1.1
Requires: python-pytest >= 6.2.0
Suggests: python-psutil >= 3.0.0
BuildArch: noarch
%python_subpackages
%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.
%prep
%autosetup -p1 -n pytest_xdist-%{version}
sed -i 's/\r//' README.rst
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc CHANGELOG.rst README.rst
%license LICENSE
%{python_sitelib}/xdist
%{python_sitelib}/pytest_xdist-%{version}*-info
%changelog