Last active
December 3, 2018 00:03
-
-
Save afsalthaj/adb6039db485c7f62b98cb44dfee0f4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lazy val myProject = | |
(project in file("myProject")) | |
.enablePlugins(DockerPlugin, DockerComposePlugin) | |
.config(DockerTest) | |
.settings(inConfig(DockerTest)(Defaults.testTasks): _*) | |
.settings(testOptions in DockerTest := Seq( | |
Tests.Argument(TestFrameworks.Specs2, "include", "DockerComposeTag")) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment