Skip to content

Commit

Permalink
Fixed incomplete sources configuration (#50)
Browse files Browse the repository at this point in the history
Before, we missed some tests, e.g. `AmmoniteTests`.

Pull request: #50
  • Loading branch information
lefou committed Feb 14, 2023
1 parent b22c0cf commit 7d131f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ trait Common extends CrossScalaModule {
millSourcePath / "src",
millSourcePath / s"src-$platform",
millSourcePath / s"src-${scalaMajor(scalaVersion())}",
millSourcePath / s"src-${platform}-${scalaMajor(scalaVersion())}",
)
def platform: String
}
Expand All @@ -74,6 +75,7 @@ trait CommonTestModule extends ScalaModule with TestModule.Utest {
millSourcePath / "src",
millSourcePath / s"src-$platform",
millSourcePath / s"src-${scalaMajor(scalaVersion())}",
millSourcePath / s"src-${platform}-${scalaMajor(scalaVersion())}",
)
def platform: String
}
Expand Down

0 comments on commit 7d131f7

Please sign in to comment.