Skip to content

Commit

Permalink
re-enabled tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raamcosta committed Dec 28, 2023
1 parent b9e7a4f commit 560eef5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mavenPublishPluginVersion = "0.25.3"
composeViewModel = "2.6.2"
activityCompose = "1.7.2"

material = "1.11.0"
material = "1.9.0" #ProcessorProviderTests fail when trying to update this one
lifecycleRuntimeKtx = "2.6.2"

ksp = "1.9.21-1.0.15"
Expand Down
6 changes: 3 additions & 3 deletions playground-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ import com.tschuchort.compiletesting.kspSourcesDir
import com.tschuchort.compiletesting.symbolProcessorProviders
import org.junit.Assert.assertEquals
import org.junit.Assert.assertTrue
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.junit.rules.TemporaryFolder

@Ignore("TODO until we find out what's the issue with jvm targets on tests")
class ProcessorProviderTests {
@Rule
@JvmField
Expand Down

0 comments on commit 560eef5

Please sign in to comment.