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
This commit is contained in:
commit
9bc3abc438
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
pook-0.2.6.tar.gz
Normal file
3
pook-0.2.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d2c13b245c1ff3b3b70ac4c3e969da3e818311b6b9b91a42b7657ffd0162727f
|
||||
size 39488
|
4
python-pook.changes
Normal file
4
python-pook.changes
Normal file
@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 19 12:04:31 PM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
||||
|
||||
- Initial spec for v0.2.6
|
83
python-pook.spec
Normal file
83
python-pook.spec
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user