-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
scalikejdbc-play-support/windows_test_filter.sbt
Lines 1 to 13 in aff5b1d
| val excludeTestsIfWindows = Set( | |
| // TODO | |
| // new line char? | |
| "scalikejdbc.play.FixtureSpec", | |
| ) | |
| testOptions in Test in ThisBuild ++= { | |
| if (scala.util.Properties.isWin) { | |
| Seq(Tests.Exclude(excludeTestsIfWindows)) | |
| } else { | |
| Nil | |
| } | |
| } |