-
Notifications
You must be signed in to change notification settings - Fork 188
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
added since on line level changes #3086
base: master
Are you sure you want to change the base?
added since on line level changes #3086
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert the files to file scope namespace
/azp run |
// A git repository has been detected, calculate the diff to filter | ||
var repository = _gitInfoProvider.Repository; | ||
var commit = _gitInfoProvider.DetermineCommit(); | ||
public TestSet Tests { get; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did we move these inside class?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@inishantmishra We did not change anything there it was like that only
if (mutant.ResultStatus != MutantStatus.NoCoverage) | ||
{ | ||
mutant.ResultStatus = MutantStatus.Pending; | ||
mutant.ResultStatusReason = "Mutant changed compared to target commit"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The status reason is not correct, the mutant has not been changed but a covering test has been changed
if (mutant.ResultStatus != MutantStatus.NoCoverage) | ||
{ | ||
mutant.ResultStatus = MutantStatus.Pending; | ||
mutant.ResultStatusReason = "Mutant changed compared to target commit"; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you not use SetMutantStatusForFileChanged?
if (mutant.ResultStatus != MutantStatus.NoCoverage) | ||
{ | ||
mutant.ResultStatus = MutantStatus.Pending; | ||
mutant.ResultStatusReason = "Mutant changed compared to target commit"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you not use ResetMutantStatusForChangedTests?
No description provided.