Skip to content

Commit

Permalink
Fixing async module's codecov reports (#306)
Browse files Browse the repository at this point in the history
* Renaming async directory to freestyle-async

* Fixing build.sbt

* Moving to freestyle-async

* Fixing AsyncTests

* Fixing freestyle-async
  • Loading branch information
dominv authored and juanpedromoreno committed May 18, 2017
1 parent abbbe75 commit 48d5e3d
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ lazy val effects = (crossProject in file("freestyle-effects"))
lazy val effectsJVM = effects.jvm
lazy val effectsJS = effects.js

lazy val async = (crossProject in file("async/async"))
lazy val async = (crossProject in file("freestyle-async/async"))
.dependsOn(freestyle)
.settings(name := "freestyle-async")
.jsSettings(sharedJsSettings: _*)
Expand All @@ -108,7 +108,7 @@ lazy val async = (crossProject in file("async/async"))
lazy val asyncJVM = async.jvm
lazy val asyncJS = async.js

lazy val asyncMonix = (crossProject in file("async/monix"))
lazy val asyncMonix = (crossProject in file("freestyle-async/monix"))
.dependsOn(freestyle, async)
.settings(name := "freestyle-async-monix")
.crossDepSettings(
Expand All @@ -121,7 +121,7 @@ lazy val asyncMonix = (crossProject in file("async/monix"))
lazy val asyncMonixJVM = asyncMonix.jvm
lazy val asyncMonixJS = asyncMonix.js

lazy val asyncFs = (crossProject in file("async/fs2"))
lazy val asyncFs = (crossProject in file("freestyle-async/fs2"))
.dependsOn(freestyle, async)
.settings(name := "freestyle-async-fs2")
.jsSettings(sharedJsSettings: _*)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@ class AsyncTests extends AsyncWordSpec with Matchers {

program[AsyncM.Op].interpret[Future] recover { case OhNoException() => 42 } map { _ shouldBe 42 }
}

}
}

0 comments on commit 48d5e3d

Please sign in to comment.