diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f551dee33..a482e472c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,13 +15,10 @@ jobs: - name: Check formatting run: sbt scalafmtCheckAll - name: Run unit tests - #TODO cleanup! - run: sbt "project http4s" test - - name: Run kafka unit tests - run: sbt "project kafka" test -# - name: Run integration tests Kinesis -# run: sbt "project kinesisDistroless" IntegrationTest/test -# - name: Run integration tests PubSub -# run: sbt "project pubsubDistroless" IntegrationTest/test + run: sbt test + - name: Run integration tests Kinesis + run: sbt "project kinesisDistroless" IntegrationTest/test + - name: Run integration tests PubSub + run: sbt "project pubsubDistroless" IntegrationTest/test - name: Run integration tests Kafka run: sbt "project kafkaDistroless" IntegrationTest/test diff --git a/kinesis/src/it/resources/collector-custom-paths.hocon b/kinesis/src/it/resources/collector-custom-paths.hocon index d32f787e4..a39c6d87d 100644 --- a/kinesis/src/it/resources/collector-custom-paths.hocon +++ b/kinesis/src/it/resources/collector-custom-paths.hocon @@ -27,7 +27,7 @@ collector { } maxBytes = ${MAX_BYTES} - }} + } } "paths": { diff --git a/kinesis/src/test/scala/com.snowplowanalytics.snowplow.collectors.scalastream/sinks/KinesisConfigSpec.scala b/kinesis/src/test/scala/com.snowplowanalytics.snowplow.collectors.scalastream/sinks/KinesisConfigSpec.scala index 1a4c33d20..3c3fe92ee 100644 --- a/kinesis/src/test/scala/com.snowplowanalytics.snowplow.collectors.scalastream/sinks/KinesisConfigSpec.scala +++ b/kinesis/src/test/scala/com.snowplowanalytics.snowplow.collectors.scalastream/sinks/KinesisConfigSpec.scala @@ -79,7 +79,6 @@ class KinesisConfigSpec extends Specification with CatsEffect { private def assert(resource: String, expectedResult: Either[ExitCode, Config[KinesisSinkConfig]]) = { val path = Paths.get(getClass.getResource(resource).toURI) ConfigParser.fromPath[IO, KinesisSinkConfig](Some(path)).value.map { result => - println(result) result must beEqualTo(expectedResult) } }