Skip to content

Instantly share code, notes, and snippets.

@polymorphic
Created February 4, 2015 21:48
Show Gist options
  • Save polymorphic/031265e725413f43d178 to your computer and use it in GitHub Desktop.
Save polymorphic/031265e725413f43d178 to your computer and use it in GitHub Desktop.
Separate integration tests in sbt
/*
Separate integration and unit tests (put in project/ITConfic.scala)
See: http://www.scala-sbt.org/release/docs/Testing.html#Integration+Tests
*/
object ITConfig extends Build {
lazy val root =
Project("service-agent", file("."))
.configs(IntegrationTest)
.settings(Defaults.itSettings: _*)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment