Skip to content

Commit

Permalink
Merge pull request #5750 from espoon-voltti/fix-bootRunTest
Browse files Browse the repository at this point in the history
Korjataan `bootRunTest` käyttämään testikantaa
  • Loading branch information
akheron authored Sep 30, 2024
2 parents 5be0cae + b892e6b commit ddeeaf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,9 @@ tasks {
mainClass.set("fi.espoo.evaka.MainKt")
classpath = sourceSets["main"].runtimeClasspath
systemProperty("spring.profiles.active", "local")
systemProperty("spring.datasource.url", "jdbc:postgresql://localhost:5432/evaka_it")
systemProperty("spring.datasource.username", "evaka_it")
systemProperty("spring.datasource.password", "evaka_it")
systemProperty("evaka.database.url", "jdbc:postgresql://localhost:5432/evaka_it")
systemProperty("evaka.database.username", "evaka_it")
systemProperty("evaka.database.password", "evaka_it")
}

register("generateVapidKey", JavaExec::class) {
Expand Down

0 comments on commit ddeeaf9

Please sign in to comment.