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
Just upgraded from coverlet.msbuild 2.6.3 to 2.8.1. Report no longer shows coverage for any methods with the async keyword
This is the most simple example I could find in our code base:
public async Task<ConductedInterview[]> GetConductedInterviews(Guid citizenId) { return (await GetInterviewInfo(citizenId)).Conducted; }
The async methods were covered/not covered in 2.6.3. With 2.8.1 they are ignored (grey in report).
The text was updated successfully, but these errors were encountered:
Are you using /p:ExcludeByAttribute=CompilerGeneratedAttribute?Possible dup of #794
/p:ExcludeByAttribute=CompilerGeneratedAttribute
Sorry, something went wrong.
We do indeed have that exclution. Looks much better without it.
Thanks!
No branches or pull requests
Just upgraded from coverlet.msbuild 2.6.3 to 2.8.1.
Report no longer shows coverage for any methods with the async keyword
This is the most simple example I could find in our code base:
The async methods were covered/not covered in 2.6.3.
With 2.8.1 they are ignored (grey in report).
The text was updated successfully, but these errors were encountered: