diff --git a/libvcs/cmd/git.py b/libvcs/cmd/git.py index 66c71b6cd..5e3169389 100644 --- a/libvcs/cmd/git.py +++ b/libvcs/cmd/git.py @@ -117,7 +117,7 @@ def run( Examples -------- >>> git = Git(dir=tmp_path) - >>> git.run(['help']) # doctest: +NORMALIZE_WHITESPACE + >>> git.run(['help']) "usage: git [--version] [--help] [-C ]..." """ diff --git a/libvcs/cmd/hg.py b/libvcs/cmd/hg.py index 38c0e6399..9638ef9b9 100644 --- a/libvcs/cmd/hg.py +++ b/libvcs/cmd/hg.py @@ -117,7 +117,7 @@ def run( Examples -------- >>> hg = Hg(dir=tmp_path) - >>> hg.run(['help']) # doctest: +NORMALIZE_WHITESPACE + >>> hg.run(['help']) "Mercurial Distributed SCM..." """ diff --git a/libvcs/cmd/svn.py b/libvcs/cmd/svn.py index f44bb0642..e46c112db 100644 --- a/libvcs/cmd/svn.py +++ b/libvcs/cmd/svn.py @@ -80,7 +80,7 @@ def run( Examples -------- >>> svn = Svn(dir=tmp_path) - >>> svn.run(['help']) # doctest: +NORMALIZE_WHITESPACE + >>> svn.run(['help']) "usage: svn [options] [args]..." """ diff --git a/libvcs/projects/base.py b/libvcs/projects/base.py index 066a5b462..01382a9ef 100644 --- a/libvcs/projects/base.py +++ b/libvcs/projects/base.py @@ -67,7 +67,7 @@ def __init__(self, url, dir: StrPath, progress_callback=None, *args, **kwargs): ... dir=str(tmp_path), ... progress_callback=progress_cb ... ) - >>> r.obtain() # doctest: +NORMALIZE_WHITESPACE +ELLIPSIS +REPORT_CDIFF + >>> r.obtain() Cloning into '...'... remote: Enumerating objects: ..., done... remote: Counting objects: 100% (...), done...