diff --git a/codecov/__init__.py b/codecov/__init__.py index 5f8694eb..ea12bf53 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -246,7 +246,7 @@ def main(*argv, **kwargs): debugging = parser.add_argument_group('======================== Debugging ========================') debugging.add_argument('--dump', action="store_true", help="Dump collected data and do not send to Codecov") - debugging.add_argument('-v', '--verbose', action="store_true", help="Not configured yet") + debugging.add_argument('-v', '--verbose', action="store_true", help="Be verbose, e.g. dump the collected data") debugging.add_argument('--no-color', action="store_true", help="Do not output with color") # Parse Arguments @@ -721,6 +721,10 @@ def main(*argv, **kwargs): write('==> Uploading') write(' .url ' + codecov.url) write(' .query ' + remove_token('token=', urlargs)) + if codecov.verbose: + write('-------------------- Reports --------------------') + write(reports) + write('-------------------------------------------------') s3 = None trys = 0