commit a2f2347e630276f0fb6fcb0b3ae1fac05c2d5eca Author: Adrian Schröter Date: Tue Jun 6 15:16:28 2023 +0200 Sync from SUSE:ALP:Source:Standard:1.0 python-pytest-trio revision 6b60e38afbefa01b6439aab7a9979190 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fecc750 --- /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/python-pytest-trio.changes b/python-pytest-trio.changes new file mode 100644 index 0000000..45f46fe --- /dev/null +++ b/python-pytest-trio.changes @@ -0,0 +1,68 @@ +------------------------------------------------------------------- +Fri Apr 21 12:32:04 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Thu Apr 13 22:44:11 UTC 2023 - Matej Cepl + +- Make calling of %{sle15modernpython} optional. + +------------------------------------------------------------------- +Tue Dec 13 13:17:32 UTC 2022 - Markéta Machová + +- Update to 0.8.0 + * If a test raises an ExceptionGroup (or nested ExceptionGroups) + with only a single ‘leaf’ exception from pytest.xfail() or + pytest.skip(), we now unwrap it to have the desired effect on Pytest. + * Trio 0.22.0 deprecated MultiError in favor of the standard-library + (or backported) ExceptionGroup type; pytest-trio now uses ExceptionGroup + exclusively and therefore requires Trio 0.22.0 or later. (#128) + * Dropped support for end-of-life Python 3.6, and the async_generator library + necessary to support it, and started testing on Python 3.10 and 3.11. (#129) + +------------------------------------------------------------------- +Thu Nov 5 14:05:47 UTC 2020 - Marketa Machova + +- Update to 0.7.0 + * Support added for alternative Trio run functions via the trio_run + configuration variable and @pytest.mark.trio(run=...). Presently + supports Trio and QTrio. + * Python 3.5 support removed. + * pytest 6 support added +- Drop merged pytest6.patch + +------------------------------------------------------------------- +Sun Oct 11 16:51:05 UTC 2020 - John Vandenberg + +- Add missing runtime dependency on contextvars +- Deactivate low value hypothesis generated tests +- Remove use of pytest-cov in %check +- Remove tests from runtime package + +------------------------------------------------------------------- +Tue Aug 25 11:18:03 UTC 2020 - Marketa Calabkova + +- Add patch pytest6.patch to fix build + +------------------------------------------------------------------- +Tue Jun 9 07:31:17 UTC 2020 - Tomáš Chvátal + +- Update to 0.6.0: + * Incompatible change: if you use yield inside a Trio fixture, + and the yield gets cancelled (for example, due to a background + task crashing), then the yield will now raise :exc:`trio.Cancelled`. + * Updated for compatibility with Trio v0.15.0. + +------------------------------------------------------------------- +Sat Sep 14 11:52:57 UTC 2019 - John Vandenberg + +- Add a temporary hack in the spec to alter the conftest.py used + when testing the plugin, fixing the builds. +- Remove unnecessary build dependency on python-devel + +------------------------------------------------------------------- +Sat May 11 19:30:37 UTC 2019 - Torsten Gruner + +- Initial release version 0.5.2 + diff --git a/python-pytest-trio.spec b/python-pytest-trio.spec new file mode 100644 index 0000000..cb5a44d --- /dev/null +++ b/python-pytest-trio.spec @@ -0,0 +1,75 @@ +# +# spec file for package python-pytest-trio +# +# 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define skip_python2 1 +%{?sle15_python_module_pythons} +Name: python-pytest-trio +Version: 0.8.0 +Release: 0 +Summary: Pytest plugin for trio +License: Apache-2.0 OR MIT +URL: https://github.com/python-trio/pytest-trio +Source: https://github.com/python-trio/pytest-trio/archive/v%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-contextvars >= 2.1 +Requires: python-outcome >= 1.1.0 +Requires: python-pytest >= 7.2.0 +Requires: python-trio >= 0.22.0 +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module contextvars >= 2.1} +BuildRequires: %{python_module hypothesis >= 3.64} +BuildRequires: %{python_module outcome >= 1.1.0} +# we really need newer pytest in tests than is required by the package +BuildRequires: %{python_module pytest >= 7.2.0} +BuildRequires: %{python_module trio >= 0.22.0} +# /SECTION +%python_subpackages + +%description +This is a pytest plugin to help you test projects that use Trio, +a friendly library for concurrency and async I/O in Python. + +%prep +%setup -q -n pytest-trio-%{version} + +rm pytest.ini +rm pytest_trio/_tests/test_hypothesis_interaction.py +mv pytest_trio/_tests/ tests + +%build +%python_build + +%install +%python_install +%{python_expand rm -r %{buildroot}%{$python_sitelib}/tests/ +%fdupes %{buildroot}%{$python_sitelib} +} + +%check +%pytest + +%files %{python_files} +%doc README.rst +%license LICENSE LICENSE.APACHE2 LICENSE.MIT +%{python_sitelib}/* + +%changelog diff --git a/v0.8.0.tar.gz b/v0.8.0.tar.gz new file mode 100644 index 0000000..72ce356 --- /dev/null +++ b/v0.8.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b253f5f8d0c800a6212de7e0515a6f3988e89ed7f577e9bf64407a3593f7d7d +size 51372