From 9bc3abc438ea60a4e918dc7151a965116728551115902eb1d7ad256f4ae60eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Wed, 18 Sep 2019 07:38:45 +0000 Subject: [PATCH] Accepting request 731618 from home:jayvdb:py-new test support OBS-URL: https://build.opensuse.org/request/show/731618 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pook?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + pook-0.2.6.tar.gz | 3 ++ python-pook.changes | 4 +++ python-pook.spec | 83 +++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 114 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pook-0.2.6.tar.gz create mode 100644 python-pook.changes create mode 100644 python-pook.spec 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/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pook-0.2.6.tar.gz b/pook-0.2.6.tar.gz new file mode 100644 index 0000000..5015b39 --- /dev/null +++ b/pook-0.2.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c13b245c1ff3b3b70ac4c3e969da3e818311b6b9b91a42b7657ffd0162727f +size 39488 diff --git a/python-pook.changes b/python-pook.changes new file mode 100644 index 0000000..c7f4d27 --- /dev/null +++ b/python-pook.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Apr 19 12:04:31 PM UTC 2019 - John Vandenberg + +- Initial spec for v0.2.6 diff --git a/python-pook.spec b/python-pook.spec new file mode 100644 index 0000000..57c68f7 --- /dev/null +++ b/python-pook.spec @@ -0,0 +1,83 @@ +# +# spec file for package python-pook +# +# Copyright (c) 2019 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 http://bugs.opensuse.org/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-pook +Version: 0.2.6 +Release: 0 +License: MIT +Summary: HTTP traffic mocking and expectations +Url: https://github.com/h2non/pook +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/p/pook/pook-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +# SECTION test requirements +BuildRequires: %{python_module furl >= 0.5.6} +BuildRequires: %{python_module jsonschema >= 2.5.1} +BuildRequires: %{python_module xmltodict >= 0.10.2} +BuildRequires: %{python_module mocket >= 1.6.0} +BuildRequires: %{python_module nose >= 1.3.7} +BuildRequires: %{python_module mock} +BuildRequires: %{python_module pytest < 5} +BuildRequires: %{python_module requests >= 2.20.0} +BuildRequires: %{python_module urllib3 >= 1.19.1} +# /SECTION +BuildRequires: fdupes +Requires: python-furl >= 0.5.6 +Requires: python-jsonschema >= 2.5.1 +Requires: python-xmltodict >= 0.10.2 +Suggests: python-mock >= 2.0.0 +BuildArch: noarch + +%python_subpackages + +%description +HTTP traffic mocking and expectations. + +%prep +%setup -q -n pook-%{version} +rm -f setup.cfg pytest.ini tox.ini + +# Assist unittest on Python 2 +touch tests/__init__.py + +%build +%python_build + +%install +%python_install +%{python_expand rm -r %{buildroot}%{$python_sitelib}/tests/ +%fdupes %{buildroot}%{$python_sitelib} +} + +%check +%{python_expand # +export PYTHONPATH=%{buildroot}%{$python_sitelib} +$python -m pytest tests/unit +$python -m pytest tests/integration/engines/pytest_suite.py +$python -m nose tests/integration/engines/nose_suite.py +export PYTHONPATH=%{buildroot}%{$python_sitelib}:. +$python -m unittest tests.integration.engines.unittest_suite +} + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog