commit b5185f2c3d676d806c9f5b8d99c9255d61ff8087fbc7b5620e21a78b73d6e20f Author: Adrian Schröter Date: Fri May 3 22:22:39 2024 +0200 Sync from SUSE:SLFO:Main python-pytest-expect revision ebd7bf006b1867816b0a023869e6289b 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/LICENSE b/LICENSE new file mode 100644 index 0000000..c5de0ac --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015 Geoffrey Sneddon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/pytest-expect-1.1.0.tar.gz b/pytest-expect-1.1.0.tar.gz new file mode 100644 index 0000000..29be072 --- /dev/null +++ b/pytest-expect-1.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847 +size 3595 diff --git a/python-pytest-expect.changes b/python-pytest-expect.changes new file mode 100644 index 0000000..aed439d --- /dev/null +++ b/python-pytest-expect.changes @@ -0,0 +1,40 @@ +------------------------------------------------------------------- +Fri Apr 21 12:31:36 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Thu Apr 13 22:44:01 UTC 2023 - Matej Cepl + +- Make calling of %{sle15modernpython} optional. + +------------------------------------------------------------------- +Mon Feb 27 10:41:49 UTC 2023 - Matej Cepl + +- Don't use fdupes -s, it hurts. + +------------------------------------------------------------------- +Thu Feb 14 12:44:58 UTC 2019 - Tomáš Chvátal + +- Fix source url +- Drop the check part as there are no tests at all even in git repo +- Add missing six dependency + +------------------------------------------------------------------- +Fri Mar 31 18:00:44 UTC 2017 - aloisio@gmx.com + +- Converted to single-spec +- Added tests + +------------------------------------------------------------------- +Sun Mar 12 17:39:44 UTC 2017 - arun@gmx.de + +- specfile: + * install requires pytest and u-msgpack-python + (fixes and error with e.g. html5lib) + +------------------------------------------------------------------- +Sun Jul 17 21:51:19 UTC 2016 - arun@gmx.de + +- initial version + diff --git a/python-pytest-expect.spec b/python-pytest-expect.spec new file mode 100644 index 0000000..c3603c4 --- /dev/null +++ b/python-pytest-expect.spec @@ -0,0 +1,65 @@ +# +# spec file for package python-pytest-expect +# +# Copyright (c) 2023 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-expect +Version: 1.1.0 +Release: 0 +Summary: Py.test plugin to store test expectations and mark tests based on them +License: MIT +Group: Development/Languages/Python +URL: https://github.com/gsnedders/pytest-expect +Source: https://files.pythonhosted.org/packages/source/p/pytest-expect/pytest-expect-%{version}.tar.gz +Source1: https://raw.githubusercontent.com/gsnedders/pytest-expect/master/LICENSE +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-pytest +Requires: python-six +Requires: python-u-msgpack-python +BuildArch: noarch +%python_subpackages + +%description +A py.test plugin that stores test expectations by saving the set of +failing tests, allowing them to be marked as xfail when running them +in future. The tests expectations are stored such that they can be +distributed alongside the tests. However, note that test expectations +can only be reliably shared between Python 2 and Python 3 if they only +use ASCII characters in their node ids: this likely isn’t a limitation +if tests are using the normal Python format, as Python 2 only allows +ASCII characters in identifiers. + +%prep +%setup -q -n pytest-expect-%{version} +cp %{SOURCE1} . + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%license LICENSE +%doc README.rst +%{python_sitelib}/pytest_expect +%{python_sitelib}/pytest_expect-%{version}*-info + +%changelog