Skip to content

Commit

Permalink
fixup! fmt after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.dev>
  • Loading branch information
sgammon committed Jan 24, 2025
1 parent 8e28a33 commit d087ea6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkl-core/src/test/kotlin/org/pkl/core/LanguageSnippetTestsEngine.kt
Original file line number Diff line number Diff line change
Expand Up @@ -210,17 +210,17 @@ abstract class AbstractNativeLanguageSnippetTestsEngine : AbstractLanguageSnippe

override val excludedTests: List<Regex> =
listOf(
// exclude test that loads module from class path (there is no class path when using native
// executable)
// on the other hand, don't exclude /native/
Regex(".*/import1b\\.pkl"),
// URIs get rendered slightly differently (percent-encoded vs raw)
Regex(".*日本語_error\\.pkl"),
)
.plus(
// on experimental JVM versions, exclude tests which are known to be incompatible
exclusionsForThisJvm()
)
// exclude test that loads module from class path (there is no class path when using native
// executable)
// on the other hand, don't exclude /native/
Regex(".*/import1b\\.pkl"),
// URIs get rendered slightly differently (percent-encoded vs raw)
Regex(".*日本語_error\\.pkl"),
)
.plus(
// on experimental JVM versions, exclude tests which are known to be incompatible
exclusionsForThisJvm()
)

/** Avoid running tests for native binaries when those native binaries have not been built. */
override fun discover(
Expand Down

0 comments on commit d087ea6

Please sign in to comment.