Skip to content

Commit 4cb3f95

Browse files
committed
test(snapshots): regenerate snapshots for all Python versions
1 parent 5519b06 commit 4cb3f95

File tree

50 files changed

+878
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+878
-0
lines changed
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
usage: cz bump [-h] [--dry-run] [--files-only] [--local-version] [--changelog]
2+
[--no-verify] [--yes] [--tag-format TAG_FORMAT]
3+
[--bump-message BUMP_MESSAGE] [--prerelease {alpha,beta,rc}]
4+
[--devrelease DEVRELEASE] [--increment {MAJOR,MINOR,PATCH}]
5+
[--increment-mode {linear,exact}] [--check-consistency]
6+
[--annotated-tag]
7+
[--annotated-tag-message ANNOTATED_TAG_MESSAGE] [--gpg-sign]
8+
[--changelog-to-stdout] [--git-output-to-stderr] [--retry]
9+
[--major-version-zero] [--template TEMPLATE] [--extra EXTRA]
10+
[--file-name FILE_NAME] [--prerelease-offset PRERELEASE_OFFSET]
11+
[--version-scheme {pep440,semver,semver2}]
12+
[--version-type {pep440,semver,semver2}]
13+
[--build-metadata BUILD_METADATA] [--get-next]
14+
[--allow-no-commit]
15+
[MANUAL_VERSION]
16+
17+
bump semantic version based on the git log
18+
19+
positional arguments:
20+
MANUAL_VERSION bump to the given version (e.g: 1.5.3)
21+
22+
options:
23+
-h, --help show this help message and exit
24+
--dry-run show output to stdout, no commit, no modified files
25+
--files-only bump version in the files from the config
26+
--local-version bump only the local version portion
27+
--changelog, -ch generate the changelog for the newest version
28+
--no-verify this option bypasses the pre-commit and commit-msg
29+
hooks
30+
--yes accept automatically questions done
31+
--tag-format TAG_FORMAT
32+
the format used to tag the commit and read it, use it
33+
in existing projects, wrap around simple quotes
34+
--bump-message BUMP_MESSAGE
35+
template used to create the release commit, useful
36+
when working with CI
37+
--prerelease {alpha,beta,rc}, -pr {alpha,beta,rc}
38+
choose type of prerelease
39+
--devrelease DEVRELEASE, -d DEVRELEASE
40+
specify non-negative integer for dev. release
41+
--increment {MAJOR,MINOR,PATCH}
42+
manually specify the desired increment
43+
--increment-mode {linear,exact}
44+
set the method by which the new version is chosen.
45+
'linear' (default) guesses the next version based on
46+
typical linear version progression, such that bumping
47+
of a pre-release with lower precedence than the
48+
current pre-release phase maintains the current phase
49+
of higher precedence. 'exact' applies the changes that
50+
have been specified (or determined from the commit
51+
log) without interpretation, such that the increment
52+
and pre-release are always honored
53+
--check-consistency, -cc
54+
check consistency among versions defined in commitizen
55+
configuration and version_files
56+
--annotated-tag, -at create annotated tag instead of lightweight one
57+
--annotated-tag-message ANNOTATED_TAG_MESSAGE, -atm ANNOTATED_TAG_MESSAGE
58+
create annotated tag message
59+
--gpg-sign, -s sign tag instead of lightweight one
60+
--changelog-to-stdout
61+
Output changelog to the stdout
62+
--git-output-to-stderr
63+
Redirect git output to stderr
64+
--retry retry commit if it fails the 1st time
65+
--major-version-zero keep major version at zero, even for breaking changes
66+
--template TEMPLATE, -t TEMPLATE
67+
changelog template file name (relative to the current
68+
working directory)
69+
--extra EXTRA, -e EXTRA
70+
a changelog extra variable (in the form 'key=value')
71+
--file-name FILE_NAME
72+
file name of changelog (default: 'CHANGELOG.md')
73+
--prerelease-offset PRERELEASE_OFFSET
74+
start pre-releases with this offset
75+
--version-scheme {pep440,semver,semver2}
76+
choose version scheme
77+
--version-type {pep440,semver,semver2}
78+
Deprecated, use --version-scheme instead
79+
--build-metadata BUILD_METADATA
80+
Add additional build-metadata to the version-number
81+
--get-next Determine the next version and write to stdout
82+
--allow-no-commit bump version without eligible commits
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
usage: cz changelog [-h] [--dry-run] [--file-name FILE_NAME]
2+
[--unreleased-version UNRELEASED_VERSION] [--incremental]
3+
[--start-rev START_REV] [--merge-prerelease]
4+
[--version-scheme {pep440,semver,semver2}]
5+
[--export-template EXPORT_TEMPLATE] [--template TEMPLATE]
6+
[--extra EXTRA] [--tag-format TAG_FORMAT]
7+
[rev_range]
8+
9+
generate changelog (note that it will overwrite existing file)
10+
11+
positional arguments:
12+
rev_range generates changelog for the given version (e.g: 1.5.3)
13+
or version range (e.g: 1.5.3..1.7.9)
14+
15+
options:
16+
-h, --help show this help message and exit
17+
--dry-run show changelog to stdout
18+
--file-name FILE_NAME
19+
file name of changelog (default: 'CHANGELOG.md')
20+
--unreleased-version UNRELEASED_VERSION
21+
set the value for the new version (use the tag value),
22+
instead of using unreleased
23+
--incremental generates changelog from last created version, useful
24+
if the changelog has been manually modified
25+
--start-rev START_REV
26+
start rev of the changelog. If not set, it will
27+
generate changelog from the start
28+
--merge-prerelease collect all changes from prereleases into next non-
29+
prerelease. If not set, it will include prereleases in
30+
the changelog
31+
--version-scheme {pep440,semver,semver2}
32+
choose version scheme
33+
--export-template EXPORT_TEMPLATE
34+
Export the changelog template into this file instead
35+
of rendering it
36+
--template TEMPLATE, -t TEMPLATE
37+
changelog template file name (relative to the current
38+
working directory)
39+
--extra EXTRA, -e EXTRA
40+
a changelog extra variable (in the form 'key=value')
41+
--tag-format TAG_FORMAT
42+
The format of the tag, wrap around simple quotes
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
usage: cz check [-h]
2+
[--commit-msg-file COMMIT_MSG_FILE | --rev-range REV_RANGE | -d | -m MESSAGE]
3+
[--allow-abort] [--allowed-prefixes [ALLOWED_PREFIXES ...]]
4+
[-l MESSAGE_LENGTH_LIMIT]
5+
6+
validates that a commit message matches the commitizen schema
7+
8+
options:
9+
-h, --help show this help message and exit
10+
--commit-msg-file COMMIT_MSG_FILE
11+
ask for the name of the temporal file that contains
12+
the commit message. Using it in a git hook script:
13+
MSG_FILE=$1
14+
--rev-range REV_RANGE
15+
a range of git rev to check. e.g, master..HEAD
16+
-d, --use-default-range
17+
check from the default branch to HEAD. e.g,
18+
refs/remotes/origin/master..HEAD
19+
-m MESSAGE, --message MESSAGE
20+
commit message that needs to be checked
21+
--allow-abort allow empty commit messages, which typically abort a
22+
commit
23+
--allowed-prefixes [ALLOWED_PREFIXES ...]
24+
allowed commit message prefixes. If the message starts
25+
by one of these prefixes, the message won't be checked
26+
against the regex
27+
-l MESSAGE_LENGTH_LIMIT, --message-length-limit MESSAGE_LENGTH_LIMIT
28+
length limit of the commit message; 0 for no limit
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
usage: cz commit [-h] [--retry] [--no-retry] [--dry-run]
2+
[--write-message-to-file FILE_PATH] [-s] [-a] [-e]
3+
[-l MESSAGE_LENGTH_LIMIT] [--]
4+
5+
create new commit
6+
7+
options:
8+
-h, --help show this help message and exit
9+
--retry retry last commit
10+
--no-retry skip retry if retry_after_failure is set to true
11+
--dry-run show output to stdout, no commit, no modified files
12+
--write-message-to-file FILE_PATH
13+
write message to file before committing (can be
14+
combined with --dry-run)
15+
-s, --signoff Deprecated, use 'cz commit -- -s' instead
16+
-a, --all Tell the command to automatically stage files that
17+
have been modified and deleted, but new files you have
18+
not told Git about are not affected.
19+
-e, --edit edit the commit message before committing
20+
-l MESSAGE_LENGTH_LIMIT, --message-length-limit MESSAGE_LENGTH_LIMIT
21+
length limit of the commit message; 0 for no limit
22+
-- Positional arguments separator (recommended)

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_example_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_example_.txt

File renamed without changes.

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_info_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_info_.txt

File renamed without changes.

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_init_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_init_.txt

File renamed without changes.

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_ls_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_ls_.txt

File renamed without changes.

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_schema_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_schema_.txt

File renamed without changes.

tests/commands/test_common_command/test_command_shows_description_when_use_help_option_version_.txt renamed to tests/commands/test_common_command/test_command_shows_description_when_use_help_option_py_3_10_version_.txt

File renamed without changes.

0 commit comments

Comments
 (0)