commit 628ed848485a43741ae9b2abfdde8ae23dd4633d03654d0d055c8a467235194e Author: Tomáš Chvátal Date: Mon Aug 10 11:22:55 2020 +0000 Accepting request 824962 from home:jayvdb:py-submit Dep of most of @idledesign django app, including python-django-sitetree and python-django-sitemetrics OBS-URL: https://build.opensuse.org/request/show/824962 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-djangoapp?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-djangoapp-0.14.0.tar.gz b/pytest-djangoapp-0.14.0.tar.gz new file mode 100644 index 0000000..3ef6640 --- /dev/null +++ b/pytest-djangoapp-0.14.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6bd92101b2a6123d41237a3926cc6cdb94f3630d485155390602cf488f879e +size 25902 diff --git a/python-pytest-djangoapp.changes b/python-pytest-djangoapp.changes new file mode 100644 index 0000000..e7ef060 --- /dev/null +++ b/python-pytest-djangoapp.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon May 4 01:14:24 AM UTC 2020 - John Vandenberg + +- Initial spec for v0.14.0 diff --git a/python-pytest-djangoapp.spec b/python-pytest-djangoapp.spec new file mode 100644 index 0000000..0822403 --- /dev/null +++ b/python-pytest-djangoapp.spec @@ -0,0 +1,69 @@ +# +# spec file for package python-pytest-djangoapp +# +# 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-djangoapp +Version: 0.14.0 +Release: 0 +Summary: Pytest plugin for Django pluggable application testing +License: BSD-3-Clause +Group: Development/Languages/Python +URL: https://github.com/idlesign/pytest-djangoapp +Source: https://files.pythonhosted.org/packages/source/p/pytest-djangoapp/pytest-djangoapp-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-Django +Requires: python-pytest +Requires: python-mock +Recommends: python-ipdb +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module Django} +BuildRequires: %{python_module mock} +BuildRequires: %{python_module pytest-runner} +BuildRequires: %{python_module pytest} +# /SECTION +%python_subpackages + +%description +A pytest plugin to help with Django pluggable application testing. + +%prep +%setup -q -n pytest-djangoapp-%{version} +# https://github.com/idlesign/pytest-djangoapp/issues/4 +mv ./pytest_djangoapp/tests/conftest.py . + +%build +%python_build + +%install +%python_install +%{python_expand rm -r %{buildroot}%{$python_sitelib}/pytest_djangoapp/tests/ +%fdupes %{buildroot}%{$python_sitelib} +} + +%check +%pytest + +%files %{python_files} +%doc AUTHORS CHANGELOG README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog