1

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.

earldouglas
  • 13,265
  • 5
  • 41
  • 50

1 Answers1

1

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

Mark Harrah
  • 6,999
  • 1
  • 26
  • 31