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.
build_python
1 parent 45ee32c commit 4d4ffb1Copy full SHA for 4d4ffb1
CONTRIBUTING.md
@@ -50,7 +50,7 @@ jupyter-releaser --help
50
To run the Python tests, use:
51
52
```bash
53
-pytest
+hatch run test:test
54
```
55
56
## Documentation
jupyter_releaser/cli.py
@@ -21,7 +21,7 @@ def invoke(self, ctx):
21
"""Handle jupyter-releaser config while invoking a command"""
22
# Get the command name and make sure it is valid
23
cmd_name = ctx.protected_args[0]
24
- if cmd_name not in self.commands:
+ if cmd_name not in self.commands or "--help" in ctx.args:
25
super().invoke(ctx)
26
27
if cmd_name == "list-envvars":
0 commit comments