diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d8a6b45..d092bba 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -42,7 +42,7 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - name: Run Gradle Checks and Tests - run: ./gradlew check --no-daemon --scan --stacktrace --build-cache + run: ./gradlew :gradle-plugin:processor:check :e2e:polymorphism:check :e2e:github:check :e2e:tvdb:check --no-daemon --scan --stacktrace --build-cache continue-on-error: true # Continue even if tests fail - name: Upload Test Results diff --git a/e2e/binance/src/test/kotlin/BinanceTest.kt b/e2e/binance/src/test/kotlin/BinanceTest.kt index ad1b24c..d46dba3 100644 --- a/e2e/binance/src/test/kotlin/BinanceTest.kt +++ b/e2e/binance/src/test/kotlin/BinanceTest.kt @@ -1,4 +1,5 @@ import binance.client.HttpResult +import binance.client.Servers import binance.client.api.v3.V3Client import binance.models.paths.api.v3.avgPrice.get.response.GetApiV3AvgPriceResponse400 import binance.models.paths.api.v3.klines.get.parameters.i1.Interval @@ -24,7 +25,7 @@ class BinanceTest { } - private val binance = V3Client(CIO) { + private val binance = V3Client(CIO, baseUrl = "https://api-gcp.binance.com/") { install(Logging) { level = LogLevel.ALL logger = Logger.SIMPLE