Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pondzix committed Oct 27, 2023
1 parent 69f9934 commit 728ca3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion kinesis/src/it/resources/collector-custom-paths.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ collector {
}

maxBytes = ${MAX_BYTES}
}}
}
}

"paths": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 728ca3f

Please sign in to comment.