forked from pool/python-pytest-echo
Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f3234bd056 | |||
| c61f595148 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3bf6a065ca624a5915bc2a820505a44735a8aa11865a57d8214d4eac18960191
|
||||
size 13950
|
||||
BIN
pytest_echo-2.0.1.tar.gz
LFS
Normal file
BIN
pytest_echo-2.0.1.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 25 04:06:01 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 2.0.1:
|
||||
* removes unused dev dependencies
|
||||
* add support python 3.8..3.13
|
||||
* add typing
|
||||
* add ini configuration support
|
||||
* better codestyle checking
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 4 03:25:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 1.8.1:
|
||||
* drop support for setuptools
|
||||
* drop support for python < 3.11
|
||||
* drop support for pytest < 6.0
|
||||
- Switch to pyproject macros.
|
||||
- No more greedy globs in %files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 10 11:26:37 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pytest-echo
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# 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
|
||||
@@ -16,22 +16,22 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-pytest-echo
|
||||
Version: 1.7.1
|
||||
Version: 2.0.1
|
||||
Release: 0
|
||||
Summary: Pytest plugin for echoing build environment attributes
|
||||
License: MIT
|
||||
URL: https://github.com/pytest-dev/pytest-echo
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-echo/pytest-echo-%{version}.tar.gz
|
||||
BuildRequires: %{python_module setuptools}
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pytest-echo/pytest_echo-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module hatch_vcs}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-pytest >= 2.2
|
||||
Requires: python-pytest >= 8.3
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module Django}
|
||||
BuildRequires: %{python_module pytest >= 2.2}
|
||||
BuildRequires: %{python_module pytest >= 8.3}
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
@@ -40,23 +40,22 @@ pytest plugin with mechanisms for echoing environment variables,
|
||||
package version and generic attributes.
|
||||
|
||||
%prep
|
||||
%setup -q -n pytest-echo-%{version}
|
||||
%setup -q -n pytest_echo-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
mv pytest_echo.py /tmp/pytest_echo.py
|
||||
%pytest
|
||||
mv /tmp/pytest_echo.py pytest_echo.py
|
||||
|
||||
%files %{python_files}
|
||||
%doc CHANGELOG README.rst
|
||||
%doc CHANGELOG README.md
|
||||
%license LICENSE
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/pytest_echo
|
||||
%{python_sitelib}/pytest_echo-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user