We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5feb414 commit 1a74a66Copy full SHA for 1a74a66
exasol/toolbox/nox/_package_version.py
@@ -65,7 +65,7 @@ def _create_parser() -> ArgumentParser:
65
"--fix",
66
action="store_true",
67
default=False,
68
- help="fix instead of check.",
+ help="updates the `version.py`, instead of performing a check.",
69
)
70
return parser
71
@@ -102,7 +102,10 @@ def _main(args: Namespace) -> int:
102
103
@nox.session(name="version:check", python=False)
104
def version_check(session: Session) -> None:
105
- """"""
+ """
106
+ Compare the version in the `version.py` to that
107
+ declared in the `pyproject.toml`.
108
109
parser = _create_parser()
110
args = parser.parse_args(session.posargs)
111
entry_point = _main if not args.debug else _main_debug
0 commit comments