Skip to content

Commit

Permalink
sender.send_upload_data
Browse files Browse the repository at this point in the history
sender.send_upload_data pass arguments as kwargs
  • Loading branch information
tony-codecov committed Dec 6, 2024
1 parent 0b31c3e commit 3336195
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions codecov_cli/services/upload/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,26 +133,24 @@ def do_upload_logic(

if not dry_run:
sending_result = sender.send_upload_data(
upload_data,
commit_sha,
token,
env_vars,
report_code,
upload_file_type,
name,
branch,
slug,
pull_request_number,
build_code,
build_url,
job_code,
flags,
ci_service,
git_service,
enterprise_url,
parent_sha,
upload_coverage,
args,
upload_data=upload_data,
commit_sha=commit_sha,
token=token,
env_vars=env_vars,
name=name,
branch=branch,
slug=slug,
pull_request_number=pull_request_number,
build_code=build_code,
build_url=build_url,
job_code=job_code,
flags=flags,
ci_service=ci_service,
git_service=git_service,
enterprise_url=enterprise_url,
parent_sha=parent_sha,
upload_coverage=upload_coverage,
args=args,
)
else:
logger.info("dry-run option activated. NOT sending data to Codecov.")
Expand Down

0 comments on commit 3336195

Please sign in to comment.