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

Fix failing CompletionScalaCliSuite tests due to circe releasing Scala Native 0.5 artifacts #20931

Merged
merged 2 commits into from
Jul 2, 2024
Merged
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 @@ -3,6 +3,7 @@ package dotty.tools.pc.tests.completion
import dotty.tools.pc.base.BaseCompletionSuite

import org.junit.Test
import org.junit.Ignore

class CompletionScalaCliSuite extends BaseCompletionSuite:

Expand All @@ -28,7 +29,8 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
|// //> using lib ???
|//> using lib io.circe::circe-core_native0.4
|package A
|""".stripMargin
|""".stripMargin,
assertSingleItem = false
)

@Test def `version-sort` =
Expand All @@ -43,6 +45,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
|""".stripMargin,
)

@Ignore
@Test def `single-colon` =
check(
"""|//> using lib "io.circe:circe-core_na@@
Expand Down Expand Up @@ -73,6 +76,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
|""".stripMargin,
)

@Ignore
@Test def `multiple-libs` =
check(
"""|//> using lib "io.circe::circe-core:0.14.0", "io.circe::circe-core_na@@"
Expand All @@ -81,6 +85,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
"circe-core_native0.4"
)

@Ignore
@Test def `script` =
check(
scriptWrapper(
Expand Down Expand Up @@ -133,6 +138,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
|io.circul""".stripMargin
)

@Ignore
@Test def `multiple-deps2` =
check(
"""|//> using libs "io.circe::circe-core:0.14.0", "io.circe::circe-core_na@@"
Expand Down
Loading