Skip to content

Commit

Permalink
Merge pull request #70 from armanbilge/pr/platform-flags
Browse files Browse the repository at this point in the history
Add platform flags to `EpollcatSuite`
  • Loading branch information
armanbilge authored Sep 20, 2022
2 parents b461ee1 + 6b36ef5 commit 585a99a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/jvm/src/test/scala/epollcat/EpollcatSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ package epollcat

import munit.CatsEffectSuite

trait EpollcatSuite extends CatsEffectSuite
trait EpollcatSuite extends CatsEffectSuite {

final val isJVM = true
final val isNative = false

}
3 changes: 3 additions & 0 deletions tests/native/src/test/scala/epollcat/EpollcatSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ import munit.CatsEffectSuite

trait EpollcatSuite extends CatsEffectSuite {
override def munitIORuntime = EpollRuntime.global

final val isJVM = false
final val isNative = true
}

0 comments on commit 585a99a

Please sign in to comment.