Closed tony-codecov closed 22 hours ago
:white_check_mark: All tests successful. No failed tests were found.
:mega: Thoughts on this report? Let Codecov know! | Powered by Codecov
Tests completed | Failed | Passed | Skipped |
---|---|---|---|
3550 | 5 | 3545 | 0 |
api.temp.calculator.test_calculator::test_divide
Stack Traces | 0.001s run time
> > ```python > def > test_divide(): > > assert Calculator.divide(1, 2) == 0.5 > E assert 1.0 == 0.5 > E + where 1.0 =(1, 2) > E + where = Calculator.divide > .../temp/calculator/test_calculator.py:30: AssertionError > ``` api.temp.calculator.test_calculator::test_divide
Stack Traces | 0.001s run time
> > ```python > def > test_divide(): > > assert Calculator.divide(1, 2) == 0.5 > E assert 1.0 == 0.5 > E + where 1.0 =(1, 2) > E + where = Calculator.divide > .../temp/calculator/test_calculator.py:30: AssertionError > ```
To view more test analytics, go to the Test Analytics Dashboard Got feedback? Let us know on Github
This PR adds a
upload-coverage
command to use a new combined upload approach that consolidates the create commit, create report, and upload steps into a single network call when possible. This optimization reduces network overhead by combining what were previously three separate API calls into one.upload_coverage
function that handles all three steps (create commit, create report, and upload) in one operation. This will be called with theupload-coverage
command.upload-process
still behaves the same as previously.Depends on https://github.com/codecov/codecov-api/pull/962
Closes https://github.com/codecov/engineering-team/issues/2538