-
Notifications
You must be signed in to change notification settings - Fork 158
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
Turning coverage on in the console can't be turned off #109
Comments
You mean once you've done sbt coverage, subsequent calls to sbt test produce output? If so, do a sbt clean compile and it should be gone. |
No, I mean if I'm running an sbt console (i.e. I run |
Ah right. That's because it sets a variable. I think we could add a On 5 June 2015 at 23:13, Greg Symons [email protected] wrote:
|
Yep. I just wanted to see what your opinion on fixing it was before I dove in and did it. I'll go ahead and add |
1.2.0 released. |
Once you turn on coverage in a given sbt session, it can't be turned off. I thought of adding a
nocoverage
task, but then I wondered if the truly correct solution would be to makeenabled
a Setting rather than the var it currently is. What do you think?The text was updated successfully, but these errors were encountered: