Question

In sbt, I can pass arguments to ScalaTest using testOptions in Test += Tests.Arguments("...") as described here.

Is there a way to pass these options through scct to ScalaTest when calling scct:test? I tried testOptions in Scct += ... but it seemed to have no effect.

Was it helpful?

Solution

scct looks like it has two configurations: ScctTest and Scct. From the source, you probably want testOptions in ScctTest

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top