In my current environment, sbt test
doesn't work. I would like to make sbt print "This doesn't work, do the following instead: [...]" until we get sbt test
sorted out. How do I do this?
Asked
Active
Viewed 72 times
-1

Jonas Kölker
- 7,680
- 3
- 44
- 51
1 Answers
1
test := throw new MessageOnlyException("this does not work")
You really should have read the sbt docs for this.

pfn
- 1,820
- 12
- 11