codecov-cli icon indicating copy to clipboard operation
codecov-cli copied to clipboard

fix: update pyproject to install rust for py13

Open thomasrockhu-codecov opened this issue 9 months ago • 3 comments

thomasrockhu-codecov avatar Feb 20 '25 22:02 thomasrockhu-codecov

:x: 4 Tests Failed:

Tests completed Failed Passed Skipped
2860 4 2856 0
View the top 3 failed test(s) by shortest run time
api.temp.calculator.test_calculator::test_divide
Stack Traces | 0.001s run time
def
                test_divide():
                > assert Calculator.divide(1, 2) == 0.5
                E assert 1.0 == 0.5
                E + where 1.0 = <function Calculator.divide at 0x104c9eb90>(1, 2)
                E + where <function Calculator.divide at 0x104c9eb90> = Calculator.divide
                .../temp/calculator/test_calculator.py:30: AssertionError
api.temp.calculator.test_calculator::test_divide
Stack Traces | 0.001s run time
def
                test_divide():
                > assert Calculator.divide(1, 2) == 0.5
                E assert 1.0 == 0.5
                E + where 1.0 = <function Calculator.divide at 0x104c9eb90>(1, 2)
                E + where <function Calculator.divide at 0x104c9eb90> = Calculator.divide
                .../temp/calculator/test_calculator.py:30: AssertionError
api.temp.calculator.test_calculator::test_divide
Stack Traces | 0.001s run time
def
                test_divide():
                > assert Calculator.divide(1, 2) == 0.5
                E assert 1.0 == 0.5
                E + where 1.0 = <function Calculator.divide at 0x104c9eb90>(1, 2)
                E + where <function Calculator.divide at 0x104c9eb90> = Calculator.divide
                .../temp/calculator/test_calculator.py:30: AssertionError

To view more test analytics, go to the Test Analytics Dashboard 📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

codecov[bot] avatar Feb 20 '25 22:02 codecov[bot]

:x: 8 Tests Failed:

Tests completed Failed Passed Skipped
2852 8 2844 0
View the top 3 failed tests by shortest run time
tests.test_codecov_cli
Stack Traces | 0.000s run time
No failure message available
tests.commands.test_invoke_labelanalysis
Stack Traces | 0.000s run time
No failure message available
tests.commands.test_invoke_upload
Stack Traces | 0.000s run time
No failure message available

:mega: Thoughts on this report? Let Codecov know! | Powered by Codecov

github-actions[bot] avatar Feb 20 '25 22:02 github-actions[bot]

@thomasrockhu-codecov this probably needs to be rebased. The failing log says it installs test-results-parser v0.5.1:

  Installing collected packages: ijson, wrapt, urllib3, test-results-parser, sniffio, setuptools, regex, pyyaml, idna, h11, click, charset-normalizer, certifi, tree-sitter, sentry-sdk, requests, httpcore, anyio, responses, httpx, codecov-cli
  Successfully installed anyio-4.8.0 certifi-2024.12.14 charset-normalizer-3.4.1 click-8.1.8 codecov-cli-10.2.0 h11-0.14.0 httpcore-1.0.7 httpx-0.27.2 idna-3.10 ijson-3.3.0 pyyaml-6.0.2 regex-2024.11.6 requests-2.32.3 responses-0.21.0 sentry-sdk-2.20.0 setuptools-75.8.2 sniffio-1.3.1 test-results-parser-0.5.1 tree-sitter-0.20.4 urllib3-2.3.0 wrapt-1.17.2

However, Output was added in v0.5.2: https://github.com/codecov/test-results-parser/pull/63.

main already pins it to v0.5.4 so if that's picked up, it'll probably address the issue.

webknjaz avatar Mar 12 '25 17:03 webknjaz