forked from zio/interop-cats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable interop for scala.js (zio#28)
* Enable interop for scala.js * Test more thoroughly * Delete `Alternative` instance (unlawful) * Simplify some method implementations * Disable failing cats-effect laws for the time being * `bracketReleaseIsCalledOnCompletedOrError` * `runCancelableIsSynchronous` * Add a test for summoning Monad[UIO] * Define maximum memory limit in .jvmopts * Increase no_output_timeout for scala.js on 2.13 * Override runCancelableIsSynchronous * override bracketReleaseIsCalledOnCompletedOrError (replace F.pure(b) with fa.attempt.as(b)) * Silence errors from runCancelable/runAsync same as cats-IO impl does. (unsafeRunAsyncAndForget logs errors via EC) * Further bump JVM limits in .jvmopts * Further bump JVM limits * Fix cause of flaky equality – zipPar is not deterministic; replace genParallel by ZManaged.fork-based version; split out shared test implicits; re-add repeat tests for ApplicativeLocal & ConcurrentEffect * inherit AnyFunSuite directly in test base * fix build * remove test loops * decrease heap to 4G * duplicate .jvmopts in .sbtopts * remove redundant .jvmopts
- Loading branch information
Showing
25 changed files
with
712 additions
and
639 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
.bloop | ||
.metals | ||
.sbtopts | ||
project/.sbt | ||
project/travis-deploy-key | ||
project/secrets.tar.xz | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-J-Xss5M | ||
-J-XX:ReservedCodeCacheSize=256m | ||
-J-Xmx4G | ||
-J-XX:MaxMetaspaceSize=3G | ||
-J-XX:MaxInlineLevel=18 |
This file contains 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
This file was deleted.
Oops, something went wrong.
317 changes: 0 additions & 317 deletions
317
interop-cats/jvm/src/main/scala/zio/interop/catsjvm.scala
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.