Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libvcs/cmd/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <path>]..."
"""

Expand Down
2 changes: 1 addition & 1 deletion libvcs/cmd/hg.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def run(
Examples
--------
>>> hg = Hg(dir=tmp_path)
>>> hg.run(['help']) # doctest: +NORMALIZE_WHITESPACE
>>> hg.run(['help'])
"Mercurial Distributed SCM..."
"""

Expand Down
2 changes: 1 addition & 1 deletion libvcs/cmd/svn.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def run(
Examples
--------
>>> svn = Svn(dir=tmp_path)
>>> svn.run(['help']) # doctest: +NORMALIZE_WHITESPACE
>>> svn.run(['help'])
"usage: svn <subcommand> [options] [args]..."
"""

Expand Down
2 changes: 1 addition & 1 deletion libvcs/projects/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand Down