Accepting request 605995 from devel:languages:python

Plugin for pytest to perform isort checks

OBS-URL: https://build.opensuse.org/request/show/605995
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pytest-isort?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2018-05-15 08:12:43 +00:00 committed by Git OBS Bridge
commit fd198ac30a
5 changed files with 108 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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4d195ecfe33d81e258d251b2679b32216bad84131fb41984da22d9d0328a6fe
size 5535

View File

@ -0,0 +1,12 @@
-------------------------------------------------------------------
Thu May 10 00:00:16 UTC 2018 - toddrme2178@gmail.com
- Update to 0.2.0
* Register marker to work with pytest's strict mode
* Add "official" support for Python 3.5 and 3.6
- Use license tag
-------------------------------------------------------------------
Tue Aug 22 15:37:10 UTC 2017 - toddrme2178@gmail.com
- Initial version

69
python-pytest-isort.spec Normal file
View File

@ -0,0 +1,69 @@
#
# spec file for package python-pytest-isort
#
# 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_with test
Name: python-pytest-isort
Version: 0.2.0
Release: 0
Summary: Plugin for pytest to perform isort checks
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://github.com/moccu/pytest-isort/
Source: https://files.pythonhosted.org/packages/source/p/pytest-isort/pytest-isort-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module isort >= 3.9.6}
BuildRequires: %{python_module pytest >= 2.6.4}
BuildRequires: %{python_module pytest-cache >= 1.0}
%endif
BuildRequires: fdupes
Requires: python-isort >= 3.9.6
Requires: python-pytest >= 2.6.4
Requires: python-pytest-cache >= 1.0
BuildArch: noarch
%python_subpackages
%description
This is a py.test plugin to check import ordering using isort.
%prep
%setup -q -n pytest-isort-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
%check
%python_exec setup.py test
%endif
%files %{python_files}
%defattr(-,root,root,-)
%doc CHANGELOG.rst README.rst
%license LICENSE.rst
%{python_sitelib}/*
%changelog