mirror of https://github.com/sbt/sbt.git
Port tests/test-quick
This commit is contained in:
parent
ee17a8586c
commit
259b6ccb17
|
|
@ -0,0 +1,5 @@
|
|||
lazy val root = (project in file(".")).
|
||||
settings(
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % Test,
|
||||
parallelExecution in test := false
|
||||
)
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
import sbt._
|
||||
import Keys._
|
||||
import Defaults._
|
||||
import Import._
|
||||
|
||||
object B extends Build {
|
||||
lazy val root = Project("root", file("."), settings = defaultSettings ++ Seq(
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test",
|
||||
parallelExecution in test := false
|
||||
))
|
||||
}
|
||||
Loading…
Reference in New Issue