diff options
Diffstat (limited to 'dev-python/docopt/files')
| -rw-r--r-- | dev-python/docopt/files/docopt-0.6.2-pytest_node_from_parent.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/dev-python/docopt/files/docopt-0.6.2-pytest_node_from_parent.patch b/dev-python/docopt/files/docopt-0.6.2-pytest_node_from_parent.patch deleted file mode 100644 index bf6ef1f80346..000000000000 --- a/dev-python/docopt/files/docopt-0.6.2-pytest_node_from_parent.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/conftest.py -+++ b/conftest.py -@@ -11,7 +11,10 @@ - - 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,10 @@ - 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(self, name="%s(%d)" % (name, index), doc=doc, case=case) -+ else: -+ yield DocoptTestItem("%s(%d)" % (name, index), self, doc, case) - index += 1 - - |
