Skip to content

Commit

Permalink
Merge pull request #2 from mbellotti/skipped-score
Browse files Browse the repository at this point in the history
Remove skipped tests from total score
  • Loading branch information
mbellotti authored Jan 9, 2022
2 parents ff853d4 + 255b0a3 commit 3746b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/go-mutesting/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (ms *mutationStats) Score() float64 {
}

func (ms *mutationStats) Total() int {
return ms.passed + ms.failed + ms.skipped
return ms.passed + ms.failed
}

func getJobs(opts *options) int {
Expand Down

0 comments on commit 3746b1c

Please sign in to comment.