We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d86148 commit b03006eCopy full SHA for b03006e
build.sc
@@ -99,6 +99,10 @@ object chisel3 extends Cross[ChiselTopModule](crossVersions: _*) {
99
chisel3(crossVersions.head).test.test()
100
}
101
102
+ def testOne(args: String*) = T.command {
103
+ chisel3(crossVersions.head).test.testOne(args: _*)
104
+ }
105
+
106
def publishLocal = T{
107
chisel3(crossVersions.head).publishLocal()
108
@@ -224,6 +228,11 @@ trait AbstractChiselModule extends PublishChiselModule with CommonBuild.BuildInf
224
228
ivy"org.scalacheck::scalacheck:1.14.0"
225
229
)
226
230
def testFrameworks = Seq("org.scalatest.tools.Framework")
231
232
233
+ super.runMain("org.scalatest.run", args: _*)
234
235
227
236
237
238
// This is required for building a library, but not for a `run` target.
0 commit comments