We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's consider an example. We have a project with several source files:
Let's assume each has a hundred lines. And suppose there is one test that covers the entire too.lua file.
What I expect to see:
============================================================================== Summary ============================================================================== File Hits Missed Coverage ------------------------------------------------ too.lua 4 0 100.00% foo.lua 0 100 0.00% bar.lua 0 200 0.00% ------------------------------------------------ Total 4 300 1.32%
What we see now:
============================================================================== Summary ============================================================================== File Hits Missed Coverage ------------------------------------------------ too.lua 4 0 100.00% ------------------------------------------------ Total 4 0 100.00%
In my opinion, if foo.lua and bar.lua are not in the list of excluded directories and files, then this result is incorrect.
The text was updated successfully, but these errors were encountered:
Fixed here
Sorry, something went wrong.
a1div0
Successfully merging a pull request may close this issue.
Let's consider an example. We have a project with several source files:
Let's assume each has a hundred lines. And suppose there is one test that covers the entire too.lua file.
What I expect to see:
What we see now:
In my opinion, if foo.lua and bar.lua are not in the list of excluded directories and files, then this result is incorrect.
The text was updated successfully, but these errors were encountered: