Hello community,
here is the log from the commit of package python-aioresponses for
openSUSE:Factory checked in at 2018-11-29 22:58:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aioresponses (Old)
and /work/SRC/openSUSE:Factory/.python-aioresponses.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-aioresponses"
Thu Nov 29 22:58:27 2018 rev:1 rq:651662 version:0.5.0
Changes:
--------
New Changes file:
--- /dev/null 2018-10-29 14:05:42.522318975 +0100
+++
/work/SRC/openSUSE:Factory/.python-aioresponses.new.19453/python-aioresponses.changes
2018-11-29 22:58:27.811649638 +0100
@@ -0,0 +1,17 @@
+-------------------------------------------------------------------
+Fri Nov 23 21:30:45 UTC 2018 - Jan Engelhardt <[email protected]>
+
+- Use noun phrase / full sentences in summary / description.
+
+-------------------------------------------------------------------
+Thu Nov 22 08:50:32 UTC 2018 - Tomáš Chvátal <[email protected]>
+
+- Format with spec-cleaner
+
+-------------------------------------------------------------------
+Mon Nov 19 16:29:19 UTC 2018 - John Paul Adrian Glaubitz
<[email protected]>
+
+- Initial build
+ + Version 0.5.0
+- Include patch to disable online test
+ + disable-online-test.patch
New:
----
aioresponses-0.5.0.tar.gz
disable-online-test.patch
python-aioresponses.changes
python-aioresponses.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-aioresponses.spec ++++++
#
# spec file for package python-aioresponses
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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-aioresponses
Version: 0.5.0
Release: 0
Summary: Python module for mocking out requests made by ClientSession
from aiohttp
License: MIT
Group: Development/Languages/Python
URL: https://github.com/pnuckowski/aioresponses
Source:
https://files.pythonhosted.org/packages/source/a/aioresponses/aioresponses-%{version}.tar.gz
Patch0: disable-online-test.patch
BuildRequires: %{python_module Sphinx >= 1.5.6}
BuildRequires: %{python_module asynctest >= 0.12.2}
BuildRequires: %{python_module coverage >= 4.5.1}
BuildRequires: %{python_module ddt >= 1.2.0}
BuildRequires: %{python_module devel >= 3.5.3}
BuildRequires: %{python_module flake8 >= 3.5.0}
BuildRequires: %{python_module pbr}
BuildRequires: %{python_module pytest >= 3.8.1}
BuildRequires: %{python_module pytest-cov >= 2.6.0}
BuildRequires: %{python_module pytest-html >= 1.19.0}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tox >= 3.4.0}
BuildRequires: %{python_module typing}
BuildRequires: %{python_module watchdog >= 0.9.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-aiohttp >= 2.0.0
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module aiohttp >= 2.0.0}
# /SECTION
%python_subpackages
%description
This is a Python module for mocking out requests made by ClientSession
from the aiohttp package.
%prep
%setup -q -n aioresponses-%{version}
%patch0 -p1
%build
export LC_ALL=en_US.UTF-8
%python_build
%install
export LC_ALL=en_US.UTF-8
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export LC_ALL=en_US.UTF-8
%python_exec setup.py test
%files %{python_files}
%doc AUTHORS AUTHORS.rst ChangeLog README.rst
%license LICENSE
%{python_sitelib}/*
%changelog
++++++ disable-online-test.patch ++++++
diff -Nru aioresponses-0.5.0.orig/tests/test_aioresponses.py
aioresponses-0.5.0/tests/test_aioresponses.py
--- aioresponses-0.5.0.orig/tests/test_aioresponses.py 2018-09-27
18:47:03.000000000 +0200
+++ aioresponses-0.5.0/tests/test_aioresponses.py 2018-11-19
17:26:55.589542083 +0100
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
+import os
import asyncio
import re
from typing import Coroutine, Generator, Union
@@ -223,6 +224,8 @@
@asyncio.coroutine
def test_address_as_instance_of_url_combined_with_pass_through(self):
+ if os.path.exists('/.buildenv'):
+ return
external_api = 'http://httpbin.org/status/201'
@asyncio.coroutine