Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update utest to 0.8.5 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ object ScalaMultiModuleClasspathsTests extends TestSuite {

def ivyDeps = Agg(ivy"com.lihaoyi::sourcecode:0.2.2")
def compileIvyDeps = Agg(ivy"com.lihaoyi::geny:0.4.2")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.4")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.5")
def unmanagedClasspath = Task { Agg(PathRef(millSourcePath / "unmanaged")) }
}
trait BarModule extends ScalaModule {
def scalaVersion = "2.13.12"

def ivyDeps = Agg(ivy"com.lihaoyi::sourcecode:0.2.1")
def compileIvyDeps = Agg(ivy"com.lihaoyi::geny:0.4.1")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.4")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.5")
def unmanagedClasspath = Task { Agg(PathRef(millSourcePath / "unmanaged")) }
}
trait QuxModule extends ScalaModule {
def scalaVersion = "2.13.12"

def ivyDeps = Agg(ivy"com.lihaoyi::sourcecode:0.2.0")
def compileIvyDeps = Agg(ivy"com.lihaoyi::geny:0.4.0")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.4")
def runIvyDeps = Agg(ivy"com.lihaoyi::utest:0.8.5")
def unmanagedClasspath = Task { Agg(PathRef(millSourcePath / "unmanaged")) }
}
object ModMod extends Module {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object ScalaVersionsRangesTests extends TestSuite {
trait CoreCrossModule extends CrossScalaModule
with CrossScalaVersionRanges {
object test extends ScalaTests with TestModule.Utest {
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.8.4")
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.8.5")
}
}
}
Expand Down