forgot to add tests, and removed gradle cache
CI / test (push) Failing after 1m18s

This commit is contained in:
2026-06-03 23:34:22 +02:00
parent 4e5dee2e45
commit 9bb40249ea
16 changed files with 468 additions and 84 deletions
+13
View File
@@ -42,6 +42,15 @@ dependencies {
implementation("org.projectlombok:lombok:1.18.42")
annotationProcessor 'org.projectlombok:lombok:1.18.42'
implementation 'com.google.firebase:firebase-admin:9.9.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation("org.testcontainers:postgresql:1.21.3")
testImplementation("org.testcontainers:junit-jupiter:1.21.4")
testImplementation("org.mockito:mockito-inline:5.2.0")
testImplementation 'org.mockito:mockito-core'
}
generateJava {
@@ -52,4 +61,8 @@ generateJava {
tasks.named('test') {
useJUnitPlatform()
jvmArgs += [
"-javaagent:${configurations.testRuntimeClasspath.find { it.name.contains('byte-buddy-agent') }}"
]
}