summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 16:07:22 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 16:07:22 +0000
commit5c1957ba05dc86b74800d4b093dc5b3d72aa9b53 (patch)
tree34faff734c7a55e2fdfd413bf1f7550ef96a8999
parent84b2dc04247e596eb726c95d878f77632a35ec93 (diff)
automatic import of python-pytest-vcr
-rw-r--r--.gitignore1
-rw-r--r--python-pytest-vcr.spec104
-rw-r--r--sources1
3 files changed, 106 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..c2740ee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pytest-vcr-1.0.2.tar.gz
diff --git a/python-pytest-vcr.spec b/python-pytest-vcr.spec
new file mode 100644
index 0000000..d50f131
--- /dev/null
+++ b/python-pytest-vcr.spec
@@ -0,0 +1,104 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pytest-vcr
+Version: 1.0.2
+Release: 1
+Summary: Plugin for managing VCR.py cassettes
+License: MIT
+URL: https://github.com/ktosiek/pytest-vcr
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1a/60/104c619483c1a42775d3f8b27293f1ecfc0728014874d065e68cb9702d49/pytest-vcr-1.0.2.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytest
+Requires: python3-vcrpy
+
+%description
+Install the plugin:
+ pip install pytest-vcr
+Annotate your tests:
+ @pytest.mark.vcr()
+ def test_iana():
+ response = urlopen('http://www.iana.org/domains/reserved').read()
+ assert b'Example domains' in response
+And that's it!
+A new file ``cassettes/test_iana.yaml`` will be created next to your test file on the first run.
+This file should be committed to a VCS.
+For more examples and configuration options see the `documention on ReadTheDocs <http://pytest-vcr.readthedocs.io/en/latest/>`_.
+
+%package -n python3-pytest-vcr
+Summary: Plugin for managing VCR.py cassettes
+Provides: python-pytest-vcr
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pytest-vcr
+Install the plugin:
+ pip install pytest-vcr
+Annotate your tests:
+ @pytest.mark.vcr()
+ def test_iana():
+ response = urlopen('http://www.iana.org/domains/reserved').read()
+ assert b'Example domains' in response
+And that's it!
+A new file ``cassettes/test_iana.yaml`` will be created next to your test file on the first run.
+This file should be committed to a VCS.
+For more examples and configuration options see the `documention on ReadTheDocs <http://pytest-vcr.readthedocs.io/en/latest/>`_.
+
+%package help
+Summary: Development documents and examples for pytest-vcr
+Provides: python3-pytest-vcr-doc
+%description help
+Install the plugin:
+ pip install pytest-vcr
+Annotate your tests:
+ @pytest.mark.vcr()
+ def test_iana():
+ response = urlopen('http://www.iana.org/domains/reserved').read()
+ assert b'Example domains' in response
+And that's it!
+A new file ``cassettes/test_iana.yaml`` will be created next to your test file on the first run.
+This file should be committed to a VCS.
+For more examples and configuration options see the `documention on ReadTheDocs <http://pytest-vcr.readthedocs.io/en/latest/>`_.
+
+%prep
+%autosetup -n pytest-vcr-1.0.2
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-pytest-vcr -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.2-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..1487838
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d8e28de3c888b51af072b85886cac5fc pytest-vcr-1.0.2.tar.gz