Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Coverage Reporting #14343

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft

Conversation

maennchen
Copy link
Member

@maennchen maennchen commented Mar 18, 2025

Changes

Implements test coverage reporting.

Requirements

  • Can show coverage summary in CI
  • Offers details for download (HTML?)
  • Can show coverage summary in CLI
  • Follows same rules as mix test.coverage for reporting (generated lines etc.)

TODOs / Issues

@maennchen maennchen force-pushed the jm/test_coverage branch 2 times, most recently from d6198ed to 2149314 Compare March 18, 2025 17:44
@maennchen
Copy link
Member Author

@josevalim Do you have any preference on how to deal with the FunctionClauseError issues?

(See https://github.com/elixir-lang/elixir/actions/runs/13929976188/job/38984368756?pr=14343)

@josevalim
Copy link
Member

@maennchen probably the best option is to check if coverage is enabled and perform only a partial assertion (i.e. break this assertion in two), the second one wrapped by a conditional.

@maennchen
Copy link
Member Author

@josevalim Ok, I will do that. Do you btw. know the reason why this doesn't work while cover compiled?

@josevalim
Copy link
Member

@josevalim Ok, I will do that. Do you btw. know the reason why this doesn't work while cover compiled?

We traverse the stored ast when analyzing the error message but when cover compiling the information is lost.

@maennchen
Copy link
Member Author

@josevalim I got it down to one test failure:

  1) test structs in lists (ExUnit.DiffTest)
     test/ex_unit/diff_test.exs:943
     Assertion with =~ failed
     code:  assert diff_left =~ expected_left
     left:  "[\n  -%ExUnit.DiffTest.Customer{\n    address: %{\"street\" => \"123 Main St\", \"zip\" => \"62701\"},\n    language: \"en-US\",\n    age: 30,\n    first_name: \"John\",\n    last_name: \"Doe\",\n    notifications: true\n  }-\n]"
     right: "[\n  -%ExUnit.DiffTest.Customer{\n    address: %{\"street\" => \"123 Main St\", \"zip\" => \"62701\"},\n    age: 30,\n    first_name: \"John\",\n    language: \"en-US\",\n    last_name: \"Doe\",\n    notifications: true\n  }-\n]"
     stacktrace:
       test/ex_unit/diff_test.exs:123: ExUnit.DiffTest.refute_diff/5
       test/ex_unit/diff_test.exs:956: (test)

The ExUnit.DiffTest.Customer module is defined inside the test and therefore should also not be cover compiled. Do you have a clue why the order is different?

@josevalim
Copy link
Member

@maennchen i would have to investigate locally which order is being printed. It seems it was supposed to be alphabetical.

@maennchen maennchen force-pushed the jm/test_coverage branch 5 times, most recently from e4420f0 to 64f4c8d Compare March 24, 2025 15:33
@maennchen maennchen force-pushed the jm/test_coverage branch 2 times, most recently from 8d07aca to 66ee072 Compare March 31, 2025 12:04
@maennchen maennchen marked this pull request as ready for review March 31, 2025 12:04
@maennchen
Copy link
Member Author

Splitting PR into multiple PRs. Marking as draft until done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants