commit fd198ac30af0b84d51f9b6cea74a407203fd6c1f2323ba7f0817726599a49212 Author: Dominique Leuenberger Date: Tue May 15 08:12:43 2018 +0000 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 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/pytest-isort-0.2.0.tar.gz b/pytest-isort-0.2.0.tar.gz new file mode 100644 index 0000000..bd02da1 --- /dev/null +++ b/pytest-isort-0.2.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d195ecfe33d81e258d251b2679b32216bad84131fb41984da22d9d0328a6fe +size 5535 diff --git a/python-pytest-isort.changes b/python-pytest-isort.changes new file mode 100644 index 0000000..d7debb8 --- /dev/null +++ b/python-pytest-isort.changes @@ -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 diff --git a/python-pytest-isort.spec b/python-pytest-isort.spec new file mode 100644 index 0000000..b6969f7 --- /dev/null +++ b/python-pytest-isort.spec @@ -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