From 7b1e409a55689dffbd9ed691219200a7d7c87e5c Mon Sep 17 00:00:00 2001 From: mcalabkova <> Date: Dec 01 2020 13:23:46 +0000 Subject: Update python-aiounittest to version 1.4.0 / rev 1 via SR 851897 https://build.opensuse.org/request/show/851897 by user mcalabkova + dimstar_suse end of a long chain of missing authlib dependencies --- diff --git a/.files b/.files new file mode 100644 index 0000000..b57b0fd Binary files /dev/null and b/.files differ diff --git a/.meta b/.meta new file mode 100644 index 0000000..55ff01f --- /dev/null +++ b/.meta @@ -0,0 +1,12 @@ + + + Test python asyncio-based code with ease + + This is a helper library to ease of your pain (and boilerplate), when writing a test of the asynchronous code (asyncio). You can test: + + * synchronous code (same as the unittest.TestCase) + * asynchronous code, it supports syntax with async/await (Python 3.5+) and asyncio.coroutine/yield from (Python 3.4) + + + + diff --git a/.rev b/.rev new file mode 100644 index 0000000..370abce --- /dev/null +++ b/.rev @@ -0,0 +1,10 @@ + + + 1b942b8875c85aaba3b4ced2a4148617 + 1.4.0 + + dimstar_suse + end of a long chain of missing authlib dependencies + 851897 + + diff --git a/aiounittest-1.4.0.tar.gz b/aiounittest-1.4.0.tar.gz new file mode 120000 index 0000000..5dee842 --- /dev/null +++ b/aiounittest-1.4.0.tar.gz @@ -0,0 +1 @@ +/ipfs/bafkreiaekmufq22sg3ayihhlfjfjua7l3fp4qw7lcdlliljhcuonkmkw4e \ No newline at end of file diff --git a/python-aiounittest.changes b/python-aiounittest.changes new file mode 100644 index 0000000..30fcd5c --- /dev/null +++ b/python-aiounittest.changes @@ -0,0 +1,20 @@ +------------------------------------------------------------------- +Sat Nov 28 03:04:34 UTC 2020 - John Vandenberg + +- Fix URL +- Activate test suite +- Update to v1.4.0 + +------------------------------------------------------------------- +Fri Dec 6 17:35:56 UTC 2019 - Matthias Fehring + +- update to version 1.3.1 + + RuntimeError was thrown the decorator trying to get the default event. + Issue #10 +- update to version 1.3.0 + + feature: added py.typed + +------------------------------------------------------------------- +Tue Jul 2 16:21:35 UTC 2019 - Matthias Fehring + +- initial package version 1.2.1 diff --git a/python-aiounittest.spec b/python-aiounittest.spec new file mode 100644 index 0000000..2b52ab4 --- /dev/null +++ b/python-aiounittest.spec @@ -0,0 +1,64 @@ +# +# spec file for package python-aiounittest +# +# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2019 Matthias Fehring +# +# 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() python3-%{**}} +%define skip_python2 1 +Name: python-aiounittest +Version: 1.4.0 +Release: 0 +Summary: Test AyncIO Python Code Easily +License: MIT +Group: Development/Languages/Python +URL: https://github.com/kwarunek/aiounittest +Source: https://github.com/kwarunek/aiounittest/archive/%{version}.tar.gz#/aiounittest-%{version}.tar.gz +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wrapt} +BuildRequires: python-rpm-macros +Requires: python-wrapt +BuildArch: noarch +%python_subpackages + +%description +This is a helper library to ease of your pain (and boilerplate), when writing a +test of the asynchronous code (asyncio). You can test: + +* synchronous code (same as the unittest.TestCase) +* asynchronous code, it supports syntax with async/await (Python 3.5+) and + asyncio.coroutine/yield from (Python 3.4) + +%prep +%setup -q -n aiounittest-%{version} + +%build +%python_build + +%install +%python_install + +%check +%pytest + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/aiounittest-%{version}-*.egg-info/ +%{python_sitelib}/aiounittest/ + +%changelog