Skip to content

Commit deb2a9b

Browse files
committed
Disable coverage for cli endpoint (Already covered within all cli commands)
1 parent ffe42dc commit deb2a9b

File tree

1 file changed

+1
-1
lines changed
  • raiden_client/interfaces

1 file changed

+1
-1
lines changed

raiden_client/interfaces/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ def main() -> None:
5555

5656
args = main_parser.parse_args()
5757
if hasattr(args, "func"):
58-
return args.func(args)
58+
return args.func(args) # pragma: no cover (Covered via endpoint specific tests)
5959
return main_parser.print_help()

0 commit comments

Comments
 (0)