Skip to content

Commit 6c2f07f

Browse files
chore(tests): skip endpoints with basic auth
1 parent b0f69c4 commit 6c2f07f

File tree

7 files changed

+16
-2
lines changed

7 files changed

+16
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 45
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-fb9ba13b8189c4223972e38677ea301c3121358e88fbfc9e4ec95ea5cc92f530.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-1a82d3230c420c8562600b0ad45133d79ab68ffd21d524ab26eef11e163dba09.yml
33
openapi_spec_hash: 7bd02ce73505e51c5fd78608fed55c62
4-
config_hash: acf5ff659c4400f8c6ee5a2488a83904
4+
config_hash: 81eb5297df860cf29f8c5bdbf9f89608

finch-java-core/src/test/kotlin/com/tryfinch/api/services/async/connect/SessionServiceAsyncTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ import com.tryfinch.api.TestServerExtension
66
import com.tryfinch.api.client.okhttp.FinchOkHttpClientAsync
77
import com.tryfinch.api.models.ConnectSessionNewParams
88
import com.tryfinch.api.models.ConnectSessionReauthenticateParams
9+
import org.junit.jupiter.api.Disabled
910
import org.junit.jupiter.api.Test
1011
import org.junit.jupiter.api.extension.ExtendWith
1112

1213
@ExtendWith(TestServerExtension::class)
1314
internal class SessionServiceAsyncTest {
1415

16+
@Disabled("prism tests are broken")
1517
@Test
1618
fun new_() {
1719
val client =
@@ -45,6 +47,7 @@ internal class SessionServiceAsyncTest {
4547
response.validate()
4648
}
4749

50+
@Disabled("prism tests are broken")
4851
@Test
4952
fun reauthenticate() {
5053
val client =

finch-java-core/src/test/kotlin/com/tryfinch/api/services/async/sandbox/ConnectionServiceAsyncTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ package com.tryfinch.api.services.async.sandbox
55
import com.tryfinch.api.TestServerExtension
66
import com.tryfinch.api.client.okhttp.FinchOkHttpClientAsync
77
import com.tryfinch.api.models.SandboxConnectionCreateParams
8+
import org.junit.jupiter.api.Disabled
89
import org.junit.jupiter.api.Test
910
import org.junit.jupiter.api.extension.ExtendWith
1011

1112
@ExtendWith(TestServerExtension::class)
1213
internal class ConnectionServiceAsyncTest {
1314

15+
@Disabled("prism tests are broken")
1416
@Test
1517
fun create() {
1618
val client =

finch-java-core/src/test/kotlin/com/tryfinch/api/services/async/sandbox/connections/AccountServiceAsyncTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ import com.tryfinch.api.client.okhttp.FinchOkHttpClientAsync
77
import com.tryfinch.api.models.ConnectionStatusType
88
import com.tryfinch.api.models.SandboxConnectionAccountCreateParams
99
import com.tryfinch.api.models.SandboxConnectionAccountUpdateParams
10+
import org.junit.jupiter.api.Disabled
1011
import org.junit.jupiter.api.Test
1112
import org.junit.jupiter.api.extension.ExtendWith
1213

1314
@ExtendWith(TestServerExtension::class)
1415
internal class AccountServiceAsyncTest {
1516

17+
@Disabled("prism tests are broken")
1618
@Test
1719
fun create() {
1820
val client =

finch-java-core/src/test/kotlin/com/tryfinch/api/services/blocking/connect/SessionServiceTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ import com.tryfinch.api.TestServerExtension
66
import com.tryfinch.api.client.okhttp.FinchOkHttpClient
77
import com.tryfinch.api.models.ConnectSessionNewParams
88
import com.tryfinch.api.models.ConnectSessionReauthenticateParams
9+
import org.junit.jupiter.api.Disabled
910
import org.junit.jupiter.api.Test
1011
import org.junit.jupiter.api.extension.ExtendWith
1112

1213
@ExtendWith(TestServerExtension::class)
1314
internal class SessionServiceTest {
1415

16+
@Disabled("prism tests are broken")
1517
@Test
1618
fun new_() {
1719
val client =
@@ -44,6 +46,7 @@ internal class SessionServiceTest {
4446
response.validate()
4547
}
4648

49+
@Disabled("prism tests are broken")
4750
@Test
4851
fun reauthenticate() {
4952
val client =

finch-java-core/src/test/kotlin/com/tryfinch/api/services/blocking/sandbox/ConnectionServiceTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ package com.tryfinch.api.services.blocking.sandbox
55
import com.tryfinch.api.TestServerExtension
66
import com.tryfinch.api.client.okhttp.FinchOkHttpClient
77
import com.tryfinch.api.models.SandboxConnectionCreateParams
8+
import org.junit.jupiter.api.Disabled
89
import org.junit.jupiter.api.Test
910
import org.junit.jupiter.api.extension.ExtendWith
1011

1112
@ExtendWith(TestServerExtension::class)
1213
internal class ConnectionServiceTest {
1314

15+
@Disabled("prism tests are broken")
1416
@Test
1517
fun create() {
1618
val client =

finch-java-core/src/test/kotlin/com/tryfinch/api/services/blocking/sandbox/connections/AccountServiceTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ import com.tryfinch.api.client.okhttp.FinchOkHttpClient
77
import com.tryfinch.api.models.ConnectionStatusType
88
import com.tryfinch.api.models.SandboxConnectionAccountCreateParams
99
import com.tryfinch.api.models.SandboxConnectionAccountUpdateParams
10+
import org.junit.jupiter.api.Disabled
1011
import org.junit.jupiter.api.Test
1112
import org.junit.jupiter.api.extension.ExtendWith
1213

1314
@ExtendWith(TestServerExtension::class)
1415
internal class AccountServiceTest {
1516

17+
@Disabled("prism tests are broken")
1618
@Test
1719
fun create() {
1820
val client =

0 commit comments

Comments
 (0)