Sync from SUSE:SLFO:Main python-pytest-tornado revision ad3d39481e05315784d6ef898431e946

This commit is contained in:
Adrian Schröter 2024-05-03 22:31:51 +02:00
commit 3297378678
4 changed files with 120 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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

BIN
pytest-tornado-0.8.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,32 @@
-------------------------------------------------------------------
Mon Jun 29 12:24:13 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 0.8.1
* Fixed deprecation warning for pytest >= 5.4
- Pull in Github tarball and launch tests
-------------------------------------------------------------------
Mon Jun 3 09:00:53 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 0.8.0:
* Added support for HTTPS testing (#50)
* Group commandline options for pytest (#53)
* Added support for Tornado 6
-------------------------------------------------------------------
Sun Jul 15 23:48:56 UTC 2018 - mimi.vx@gmail.com
- no tests in upstream package
-------------------------------------------------------------------
Thu May 3 14:07:08 UTC 2018 - toddrme2178@gmail.com
- Update to 5.0.0
* Fix to work with tornado 5
- Add license file
- Use %license tag
-------------------------------------------------------------------
Fri Apr 20 22:10:31 UTC 2018 - toddrme2178@gmail.com
- Initial version

View File

@ -0,0 +1,62 @@
#
# spec file for package python-pytest-tornado
#
# Copyright (c) 2020 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-%{**}}
Name: python-pytest-tornado
Version: 0.8.1
Release: 0
Summary: A py.test plugin for tornado applications
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/eugeniy/pytest-tornado
Source: https://github.com/eugeniy/pytest-tornado/archive/v%{version}.tar.gz#/pytest-tornado-%{version}.tar.gz
BuildRequires: %{python_module certifi}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tornado >= 4.1}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-certifi
Requires: python-pytest
Requires: python-tornado >= 4.1
BuildArch: noarch
%python_subpackages
%description
A py.test_ plugin providing fixtures and markers to simplify testing
of asynchronous tornado applications.
%prep
%setup -q -n pytest-tornado-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog