https://sources.debian.org/data/main/d/docopt/0.6.2-3/debian/patches/pytest6 From: Michael R. Crusoe Subject: fix for pytest 6.x comptability Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=979285 --- docopt.orig/conftest.py +++ docopt/conftest.py @@ -11,6 +11,8 @@ def pytest_collect_file(path, parent): if path.ext == ".docopt" and path.basename.startswith("test"): + if hasattr(DocoptTestFile, "from_parent"): + return DocoptTestFile.from_parent(parent, fspath=path) return DocoptTestFile(path, parent) @@ -41,7 +43,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 3aae0a06e0285812'>refslogtreecommitdiff
path: root/gnu/packages/sync.scm
AgeCommit message (Expand)Author
2017-01-24gnu: Add lsyncd....* gnu/packages/sync.scm (lsyncd): New variable. Ricardo Wurmus
2016-12-23gnu: qsyncthingtray: Update to 0.5.7....* gnu/packages/sync.scm (qsyncthingtray): Update to 0.5.7. Leo Famulari
2016-12-04gnu: Add qsyncthingtray....* gnu/packages/sync.scm (qsyncthingtray): New variable. Efraim Flashner
2016-12-04gnu: Rename owncloud.scm to sync.scm....* gnu/packages/owncloud.scm: Rename to ... * gnu/packages/sync.scm: ... this. * gnu/local.mk (GNU_SYSTEM_MODULES): Register it. Efraim Flashner