Skip to content

Commit

Permalink
bump sbt-jupiter-interface to 0.13.3 (#4048)
Browse files Browse the repository at this point in the history
Retrying this after fixes were merged upstream

Supersedes #3988

---------

Co-authored-by: Li Haoyi <[email protected]>
  • Loading branch information
jodersky and lihaoyi authored Dec 3, 2024
1 parent b7d4d87 commit d32c977
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object Settings {
val docUrl = "https://mill-build.org"
// the exact branches containing a doc root
val docBranches = Seq()
// the exact tags containing a doc root. Publish docs for
// the exact tags containing a doc root. Publish docs for
// the last point version in each minor release series
val legacyDocTags: Seq[String] = Seq(
"0.9.12",
Expand Down Expand Up @@ -205,7 +205,7 @@ object Deps {
val dokkaCli = ivy"org.jetbrains.dokka:dokka-cli:$dokkaVersion"
val errorProneCore = ivy"com.google.errorprone:error_prone_core:2.31.0"
val freemarker = ivy"org.freemarker:freemarker:2.3.33"
val jupiterInterface = ivy"com.github.sbt.junit:jupiter-interface:0.11.4"
val jupiterInterface = ivy"com.github.sbt.junit:jupiter-interface:0.13.3"
val kotlinxHtmlJvm = ivy"org.jetbrains.kotlinx:kotlinx-html-jvm:0.8.0"
val koverCli = ivy"org.jetbrains.kotlinx:kover-cli:$koverVersion"
val koverJvmAgent = ivy"org.jetbrains.kotlinx:kover-jvm-agent:$koverVersion"
Expand Down
4 changes: 2 additions & 2 deletions example/kotlinlib/basic/1-simple/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ error: Error: missing option --text

> ./mill foo.test
...
Test foo.FooTesttestSimple finished, ...
Test foo.FooTesttestEscaping finished, ...
Test foo.FooTest testSimple finished, ...
Test foo.FooTest testEscaping finished, ...
Test foo.FooTest finished, ...
Test run finished: 0 failed, 0 ignored, 2 total, ...

Expand Down
4 changes: 2 additions & 2 deletions example/kotlinlib/basic/4-compat-modules/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Compiling 1 Kotlin source...
Compiling 1 Kotlin source...

> mill foo.test.test
...foo.FooTestshello ...
...foo.FooTests hello ...

> mill foo.test
...foo.FooTestshello ...
...foo.FooTests hello ...

*/
6 changes: 3 additions & 3 deletions example/kotlinlib/basic/6-realistic/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,16 @@ Bar.value: <p>world</p>
Qux.value: 31337

> mill bar.test
...bar.BarTestsworld ...
...bar.BarTests world ...

> mill qux.run
Qux.value: 31337

> mill __.compile

> mill __.test
...bar.BarTestsworld ...
...foo.FooTestshello ...
...bar.BarTests world ...
...foo.FooTests hello ...

> mill __.publishLocal
Publishing Artifact(com.lihaoyi,foo,0.0.1) to ivy repo...
Expand Down
2 changes: 1 addition & 1 deletion example/kotlinlib/linting/4-kover/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ object `package` extends RootModule with KotlinModule with KoverModule {

> ./mill test # Run the tests and produce the coverage data
...
... foo.FooTestskotlin - success started
... foo.FooTests kotlin - success started

> ./mill resolve kover._ # List what tasks are available to run from kover
...
Expand Down
4 changes: 2 additions & 2 deletions example/kotlinlib/module/15-jni/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ object `package` extends RootModule with KotlinModule {
Hello, World!

> ./mill test
Test foo.HelloWorldTestsimple started
Test foo.HelloWorldTestsimple finished...
Test foo.HelloWorldTest simple started
Test foo.HelloWorldTest simple finished...
...
*/
4 changes: 2 additions & 2 deletions example/kotlinlib/module/8-kotlin-compiler-plugins/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ object foo extends KotlinModule {
/** Usage

> ./mill foo.test
Test foo.ProjectTestsimple started
Test foo.ProjectTestsimple finished...
Test foo.ProjectTest simple started
Test foo.ProjectTest simple finished...
...

*/
2 changes: 1 addition & 1 deletion example/kotlinlib/web/1-hello-ktor/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object `package` extends RootModule with KotlinModule {
/** Usage

> mill test
Test com.example.HelloKtorTest finished, took...
Test com.example.HelloKtorTest HelloKtorTest finished, took...

> mill runBackground

Expand Down
2 changes: 1 addition & 1 deletion example/kotlinlib/web/4-webapp-kotlinjs/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object `package` extends RootModule with KotlinModule {
/** Usage

> ./mill test
...webapp.WebAppTestssimpleRequest ...
...webapp.WebAppTests simpleRequest ...

> ./mill runBackground

Expand Down
2 changes: 1 addition & 1 deletion example/kotlinlib/web/5-webapp-kotlinjs-shared/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ object `package` extends RootModule with AppKotlinModule {
/** Usage

> ./mill test
...webapp.WebAppTestssimpleRequest ...
...webapp.WebAppTests simpleRequest ...

> ./mill runBackground

Expand Down

0 comments on commit d32c977

Please sign in to comment.