We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2442b48 commit 1937d85Copy full SHA for 1937d85
1 file changed
codecov_cli/services/upload/__init__.py
@@ -165,5 +165,10 @@ def do_upload_logic(
165
status_code=200,
166
text="Data NOT sent to Codecov because of dry-run option",
167
)
168
+ with open('coverage_report.txt', 'w+') as f:
169
+ print(upload_data)
170
+ f.write('\n'.join(upload_data.network))
171
+ f.write("<<< network")
172
+ f.write('\n'.join(upload_data.file_fixes))
173
log_warnings_and_errors_if_any(sending_result, "Upload", fail_on_error)
174
return sending_result
0 commit comments