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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jupyter-releaser --help
To run the Python tests, use:

```bash
pytest
hatch run test:test
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion jupyter_releaser/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def invoke(self, ctx):
"""Handle jupyter-releaser config while invoking a command"""
# Get the command name and make sure it is valid
cmd_name = ctx.protected_args[0]
if cmd_name not in self.commands:
if cmd_name not in self.commands or "--help" in ctx.args:
super().invoke(ctx)

if cmd_name == "list-envvars":
Expand Down
Loading