From faab2fa0fecdec6674bcaee615404ac4abd2838ff6363a262475e9fef2a50ebc Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 20 Feb 2026 13:13:15 +1100 Subject: [PATCH] Initial release of 1.2.1. --- pytest_test_groups-1.2.1.tar.gz | 3 ++ python-pytest-test-groups.changes | 4 +++ python-pytest-test-groups.spec | 60 +++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 pytest_test_groups-1.2.1.tar.gz create mode 100644 python-pytest-test-groups.changes create mode 100644 python-pytest-test-groups.spec diff --git a/pytest_test_groups-1.2.1.tar.gz b/pytest_test_groups-1.2.1.tar.gz new file mode 100644 index 0000000..6d630a5 --- /dev/null +++ b/pytest_test_groups-1.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67576b295522fc144b3a42fa1801f50ae962389e984b48bab4336686d09032f1 +size 8137 diff --git a/python-pytest-test-groups.changes b/python-pytest-test-groups.changes new file mode 100644 index 0000000..4ae0086 --- /dev/null +++ b/python-pytest-test-groups.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Feb 20 02:13:07 UTC 2026 - Steve Kowalik + +- Initial release of 1.2.1. diff --git a/python-pytest-test-groups.spec b/python-pytest-test-groups.spec new file mode 100644 index 0000000..296288f --- /dev/null +++ b/python-pytest-test-groups.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-pytest-test-groups +# +# Copyright (c) 2026 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/ +# + + +Name: python-pytest-test-groups +Version: 1.2.1 +Release: 0 +Summary: Pytest plugin to split your tests into equally sized groups +License: MIT +URL: https://github.com/mark-adams/pytest-test-groups +Source: https://files.pythonhosted.org/packages/source/p/pytest-test-groups/pytest_test_groups-1.2.1.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools >= 75} +BuildRequires: %{python_module setuptools_scm >= 8} +# SECTION test requirements +BuildRequires: %{python_module pytest >= 7.0.0} +# /SECTION +BuildRequires: fdupes +Requires: python-pytest >= 7.0.0 +BuildArch: noarch +%python_subpackages + +%description +A Pytest plugin for running a subset of your tests by splitting them in to equally sized groups. + +%prep +%autosetup -p1 -n pytest_test_groups-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/pytest_test_groups +%{python_sitelib}/pytest_test_groups-%{version}.dist-info + +%changelog