Andrew Thigpen
Andrew Thigpen
The `.resultset.json` file appears to be a slightly different format than the `SimpleCov::Formatter::JSONFormatter`. There's an example in the integration test repo here: https://github.com/andythigpen/nvim-coverage-tests/blob/fe826486a0cd05c08e098836e80bad8483764d50/languages/ruby/spec/spec_helper.rb#L5-L6 JSONFormatter outputs to `coverage/coverage.json` by default. The...
I was not aware of the `.resultset.json` file when I added ruby support. That file appears to be part of the "merge test results" feature of simplecov. At least from...
The error is due to the difference in formats mentioned above. The ruby module expects there to be a `"coverage"` field in the JSON object, which is not present at...
Can you provide a small sample project that demonstrates the issue? Unfortunately I'm not able to reproduce it.
does the following work for your use case? ``` keys = { { "cot", function() local cov = require("coverage") cov.load(true) end, desc = "Coverage Toggle" }, } ``` passing `true`...
Thank you for the PR. I tried running the PHP integration tests from this repo https://github.com/andythigpen/nvim-coverage-tests and it looks like there may be problems with the changes: ``` Fail ||...