commit de39293ebe637423ef090514eb33308f4181cedfa492e48540641485444097b8 Author: Steve Kowalik Date: Fri Dec 19 14:25:30 2025 +1100 - Initial release of 3.0.0. diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/pytest_deadfixtures-3.0.0.tar.gz b/pytest_deadfixtures-3.0.0.tar.gz new file mode 100644 index 0000000..646c098 --- /dev/null +++ b/pytest_deadfixtures-3.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7629fd2d0fdd53720654e954e01a7ea9f393e6da2187db8b103f83c79659f0 +size 9497 diff --git a/python-pytest-deadfixtures.changes b/python-pytest-deadfixtures.changes new file mode 100644 index 0000000..c07f16e --- /dev/null +++ b/python-pytest-deadfixtures.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Dec 19 03:25:20 UTC 2025 - Steve Kowalik + +- Initial release of 3.0.0. diff --git a/python-pytest-deadfixtures.spec b/python-pytest-deadfixtures.spec new file mode 100644 index 0000000..eb1b112 --- /dev/null +++ b/python-pytest-deadfixtures.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-pytest-deadfixtures +# +# 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/ +# + + +Name: python-pytest-deadfixtures +Version: 3.0.0 +Release: 0 +Summary: A simple plugin to list unused fixtures in pytest +License: MIT +URL: https://github.com/jllorencetti/pytest-deadfixtures +Source: https://github.com/jllorencetti/pytest-deadfixtures/archive/refs/tags/%{version}.tar.gz#/pytest_deadfixtures-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +# SECTION test requirements +BuildRequires: %{python_module pytest >= 7.0.0} +BuildRequires: %{python_module pytest-cov} +# /SECTION +BuildRequires: fdupes +Requires: python-pytest >= 7.0.0 +BuildArch: noarch +%python_subpackages + +%description +A simple plugin to list unused fixtures in pytest + +%prep +%autosetup -p1 -n pytest-deadfixtures-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%license LICENSE +%doc README.rst +%{python_sitelib}/pytest_deadfixtures.py +%pycache_only %{python_sitelib}/__pycache__/pytest_deadfixtures*.pyc +%{python_sitelib}/pytest_deadfixtures-%{version}.dist-info + +%changelog