- update to 1.1.5:

* Improve the CI

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-env?expand=0&rev=20
This commit is contained in:
Dirk Mueller 2024-10-31 16:42:03 +00:00 committed by Git OBS Bridge
commit c6e7ff67c6
6 changed files with 147 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

BIN
pytest_env-1.1.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

3
pytest_env-1.1.5.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:91209840aa0e43385073ac464a554ad2947cc2fd663a9debf88d03b01e0cc1cf
size 8911

62
python-pytest-env.changes Normal file
View File

@ -0,0 +1,62 @@
-------------------------------------------------------------------
Thu Oct 31 16:41:50 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.1.5:
* Improve the CI
-------------------------------------------------------------------
Mon Dec 4 10:57:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.1.3:
* fix README typo
-------------------------------------------------------------------
Tue Nov 7 19:38:22 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.1.1:
* Fix native toml documentation does not match code
* Fix type checker
* Drop the pytest dot
* Add native toml support
* Disable plugin autoloading in the test suite
-------------------------------------------------------------------
Mon Jul 24 18:58:47 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.8.2:
* Bump tools and deps
* Bump deps and tools
* Add 3.12 support
* Add ruff
-------------------------------------------------------------------
Thu May 4 22:50:00 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.8.1:
* Use hatchling and wheel
* Add R: prefix implementation and unit tests
* ADd mention of pyproject.toml in README.md
- use packaged LICENSE
-------------------------------------------------------------------
Fri Apr 21 12:31:34 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Feb 14 12:37:20 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Cleanup a bit
- Remove test condition, there are no tests even in upstream git
repository
-------------------------------------------------------------------
Wed May 9 23:25:20 UTC 2018 - toddrme2178@gmail.com
- Add license file
- Use license tag
-------------------------------------------------------------------
Tue Nov 7 18:25:01 UTC 2017 - toddrme2178@gmail.com
- initial version

55
python-pytest-env.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package python-pytest-env
#
# Copyright (c) 2024 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-env
Version: 1.1.5
Release: 0
Summary: Pytest plugin to add environment variables
License: MIT
Group: Development/Languages/Python
URL: https://github.com/pytest-dev/pytest-env
Source: https://files.pythonhosted.org/packages/source/p/pytest-env/pytest_env-%{version}.tar.gz
BuildRequires: %{python_module hatch_vcs}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pytest >= 2.6.0
BuildArch: noarch
%python_subpackages
%description
A py.test plugin that allows you to add environment variables.
%prep
%setup -q -n pytest_env-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%license LICENSE
%{python_sitelib}/pytest_env
%{python_sitelib}/pytest_env-%{version}.dist-info
%changelog