Skip to content

Commit

Permalink
Debugging failing build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dries Schulten committed Dec 5, 2017
1 parent 1fccaf6 commit eab6a90
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.sbt
@@ -1,4 +1,5 @@
import Dependencies._
import sbt.util

enablePlugins(GitVersioning)

Expand All @@ -13,7 +14,9 @@ lazy val commonSettings = Seq(
git.baseVersion := "0.1",

bintrayOrganization := Some("ceratech"),
licenses += ("Apache-2.0", url("http://apache.org/licenses/LICENSE-2.0"))
licenses += ("Apache-2.0", url("http://apache.org/licenses/LICENSE-2.0")),

logLevel := util.Level.Debug
)

lazy val client = (project in file("client"))
Expand Down
Expand Up @@ -174,7 +174,7 @@ class WithingsResourceSpec extends WordSpec
}
}

"give an error response if the API call fails" ignore {
"give an error response if the API call fails" in {
val client = mock[WithingsClient]
val resource = new WithingsResource(client)

Expand Down

0 comments on commit eab6a90

Please sign in to comment.