Compare commits

..

No commits in common. "6de180c379485aa23cdb01054e27c0852ad0ec43" and "6d63d5a94f1082776d037db04203f04a5aff8b88" have entirely different histories.

3 changed files with 16 additions and 63 deletions

View File

@ -1,46 +0,0 @@
From 8e06097d68b3f2fb9f44324119de5cefb7a42506 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
Date: Mon, 7 Jun 2021 00:52:25 +0200
Subject: [PATCH] pytest: Use Node.from_parent(...)
Fixes https://github.com/docopt/docopt/issues/483
See https://docs.pytest.org/en/stable/deprecations.html#node-construction-changed-to-node-from-parent
---
conftest.py | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/conftest.py b/conftest.py
index f5e8c7b..c4c0bb5 100644
--- a/conftest.py
+++ b/conftest.py
@@ -11,7 +11,10 @@ import docopt
def pytest_collect_file(path, parent):
if path.ext == ".docopt" and path.basename.startswith("test"):
- return DocoptTestFile(path, parent)
+ if hasattr(DocoptTestFile, "from_parent"):
+ return DocoptTestFile.from_parent(parent, fspath=path)
+ else:
+ return DocoptTestFile(path, parent)
def parse_test(raw):
@@ -41,7 +44,13 @@ class DocoptTestFile(pytest.File):
for name, doc, cases in parse_test(raw):
name = self.fspath.purebasename
for case in cases:
- yield DocoptTestItem("%s(%d)" % (name, index), self, doc, case)
+ if hasattr(DocoptTestItem, "from_parent"):
+ yield DocoptTestItem.from_parent(parent=self,
+ name="%s(%d)" % (name, index),
+ doc=doc,
+ case=case)
+ else:
+ yield DocoptTestItem("%s(%d)" % (name, index), self, doc, case)
index += 1
--
2.27.0

View File

@ -1,14 +1,11 @@
Name: python-docopt
Version: 0.6.2
Release: 14
Release: 11
Summary: Command-line interface description language
License: MIT
URL: http://docopt.org/
Source0: https://github.com/docopt/docopt/archive/%{version}.tar.gz#/docopt-%{version}.tar.gz
#patch
Patch0000: pytest-Use-Node.from_parent.patch
BuildArch: noarch
%global _description \
@ -20,6 +17,13 @@ formalized.
%description %_description
%package -n python2-docopt
Summary: Command-line interface description language
%{?python_provide:%python_provide python2-docopt}
BuildRequires: python2-devel python2-pytest python2-setuptools
%description -n python2-docopt %_description
%package -n python3-docopt
Summary: Command-line interface description language
%{?python_provide:%python_provide python3-docopt}
@ -31,14 +35,22 @@ BuildRequires: python3-devel python3-pytest python3-setuptools
%autosetup -n docopt-%{version} -p1
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
%check
py.test-2.7 -v
py.test-3 -v
%files -n python2-docopt
%license LICENSE-MIT
%doc README.rst
%{python2_sitelib}/*
%files -n python3-docopt
%license LICENSE-MIT
%doc README.rst
@ -46,14 +58,5 @@ py.test-3 -v
%{python3_sitelib}/__pycache__/*
%changelog
* Wed Oct 26 2022 zhangruifang <zhangruifang1@h-partners.com> - 0.6.2-14
- Rebuild for next release
* Thu Oct 28 2021 xuping <xuping33@huawei.com> - 0.6.2-13
- pytest Use Node.from_parent to fix some testcase failed.
* Sat Oct 24 2020 tianwei <tianwei12@huawei.com> - 0.6.2-12
- delete python2
* Wed Jan 08 2020 zhouyihang <zhouyihang1@huawei.com> - 0.6.2-11
- Package init

View File

@ -1,4 +0,0 @@
version_control: github
src_repo: docopt/docopt
tag_prefix: ^v
seperator: .