Skip to content

Commit 5393b66

Browse files
committed
Merge branch 'main' into main-hssahota2
2 parents e6f6fad + c142c6c commit 5393b66

File tree

14 files changed

+149
-178
lines changed

14 files changed

+149
-178
lines changed

jvm/example-kotest/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repositories {
66
}
77
dependencies {
88
// import Kotlin API client BOM
9-
testImplementation(platform("com.aallam.openai:openai-client-bom:3.7.1"))
9+
testImplementation(platform("com.aallam.openai:openai-client-bom:3.7.2"))
1010
testImplementation("com.aallam.openai:openai-client")
1111
testImplementation("io.ktor:ktor-client-okhttp")
1212
// json

python/example-pytest-selfie/poetry.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/example-pytest-selfie/tests/simple_inline_test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@
1010

1111

1212
def test_write():
13-
expect_selfie("B").to_be_TODO()
13+
expect_selfie("B").to_be("B")
14+
expect_selfie(20000).to_be(20_000)
15+
expect_selfie([1, 2, 3]).to_be([1, 2, 3])
16+
expect_selfie(("a", 2, 3)).to_be(("a", 2, 3))
17+
expect_selfie({"a": 1, "b": 2}).to_be({"a": 1, "b": 2})
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "example-pytest-selfie"
5+
},
6+
{
7+
"path": "pytest-selfie"
8+
},
9+
{
10+
"path": "selfie-lib"
11+
}
12+
],
13+
"settings": {}
14+
}

python/pytest-selfie/poetry.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)