Skip to content

Commit

Permalink
fixing integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kszapsza committed Jan 14, 2025
1 parent 6fde495 commit a2c8b61
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import pl.allegro.tech.build.axion.release.domain.PredefinedVersionCreator
import pl.allegro.tech.hermes.findIntProperty
Expand Down Expand Up @@ -191,7 +192,7 @@ subprojects {
}

testLogging {
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
exceptionFormat = TestExceptionFormat.FULL
events = setOf(
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
Expand Down
22 changes: 13 additions & 9 deletions integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,27 @@ val agent: Configuration by configurations.creating {
isCanBeConsumed = true
}

// Order of the imports matters - do not reorder
dependencies {
testImplementation(project(":hermes-client"))
testImplementation(project(":hermes-common"))
testImplementation(project(":hermes-test-helper"))
testImplementation(project(":hermes-management"))
testImplementation(project(":hermes-consumers"))
testImplementation(project(":hermes-frontend"))
testImplementation(project(":hermes-management"))
testImplementation(project(":hermes-test-helper"))
testImplementation(project(":hermes-client"))

testImplementation(group = "org.awaitility", name = "awaitility", version = "4.2.0")

testImplementation(libs.awaitility)
testImplementation(libs.jetty.reactive.httpclient)
testImplementation(libs.okhttp)
testImplementation(libs.reactive.streams)
testImplementation(libs.spring.test)
testImplementation(libs.spring.webflux)
testImplementation(libs.testcontainers)
testImplementation(libs.testcontainers.gcloud)
testImplementation(libs.okhttp)
testImplementation(libs.spring.webflux)
testImplementation(libs.spring.test)
testImplementation(libs.jetty.reactive.httpclient)
testImplementation(libs.awaitility)
testImplementation(libs.reactive.streams)

// TODO: can we update it ? Which version of server our clients use?
testImplementation(libs.hornetq.jms.server) {
exclude(module = "hornetq-native")
}
Expand Down

0 comments on commit a2c8b61

Please sign in to comment.