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 6233289 commit f09da73Copy full SHA for f09da73
tests/test_others.py
@@ -263,7 +263,7 @@ def test_multiple_options_separator_1_unsupported_separator():
263
264
@app.command()
265
def main(names: typing.List[str] = typer.Option(..., multiple_separator="\t \n")):
266
- print("Hello World")
+ pass # pragma: no cover
267
268
with pytest.raises(typer.UnsupportedMultipleSeparatorError) as exc_info:
269
runner.invoke(app, [])
@@ -278,7 +278,7 @@ def test_multiple_options_separator_2_non_list_type():
278
279
280
def main(names: str = typer.Option(..., multiple_separator=",")):
281
282
283
with pytest.raises(typer.MultipleSeparatorForNonListTypeError) as exc_info:
284
0 commit comments