Skip to content

Commit 9303173

Browse files
authored
Merge pull request #67 from scaleapi/release-please--branches--main--changes--next
release: 0.2.9
2 parents b3b3fc8 + 55656c4 commit 9303173

File tree

12 files changed

+287
-279
lines changed

12 files changed

+287
-279
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.8"
2+
".": "0.2.9"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.2.9 (2025-08-12)
4+
5+
Full Changelog: [v0.2.8...v0.2.9](https://github.com/scaleapi/agentex-python/compare/v0.2.8...v0.2.9)
6+
7+
### Chores
8+
9+
* **internal:** update test skipping reason ([4affc92](https://github.com/scaleapi/agentex-python/commit/4affc925c69ed626d429732b470d4d1535b1be8d))
10+
311
## 0.2.8 (2025-08-09)
412

513
Full Changelog: [v0.2.7...v0.2.8](https://github.com/scaleapi/agentex-python/compare/v0.2.7...v0.2.8)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentex-sdk"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
description = "The official Python library for the agentex API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/agentex/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "agentex"
4-
__version__ = "0.2.8" # x-release-please-version
4+
__version__ = "0.2.9" # x-release-please-version

tests/api_resources/messages/test_batch.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class TestBatch:
1818
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
1919

20-
@pytest.mark.skip()
20+
@pytest.mark.skip(reason="Prism tests are disabled")
2121
@parametrize
2222
def test_method_create(self, client: Agentex) -> None:
2323
batch = client.messages.batch.create(
@@ -31,7 +31,7 @@ def test_method_create(self, client: Agentex) -> None:
3131
)
3232
assert_matches_type(BatchCreateResponse, batch, path=["response"])
3333

34-
@pytest.mark.skip()
34+
@pytest.mark.skip(reason="Prism tests are disabled")
3535
@parametrize
3636
def test_raw_response_create(self, client: Agentex) -> None:
3737
response = client.messages.batch.with_raw_response.create(
@@ -49,7 +49,7 @@ def test_raw_response_create(self, client: Agentex) -> None:
4949
batch = response.parse()
5050
assert_matches_type(BatchCreateResponse, batch, path=["response"])
5151

52-
@pytest.mark.skip()
52+
@pytest.mark.skip(reason="Prism tests are disabled")
5353
@parametrize
5454
def test_streaming_response_create(self, client: Agentex) -> None:
5555
with client.messages.batch.with_streaming_response.create(
@@ -69,7 +69,7 @@ def test_streaming_response_create(self, client: Agentex) -> None:
6969

7070
assert cast(Any, response.is_closed) is True
7171

72-
@pytest.mark.skip()
72+
@pytest.mark.skip(reason="Prism tests are disabled")
7373
@parametrize
7474
def test_method_update(self, client: Agentex) -> None:
7575
batch = client.messages.batch.update(
@@ -83,7 +83,7 @@ def test_method_update(self, client: Agentex) -> None:
8383
)
8484
assert_matches_type(BatchUpdateResponse, batch, path=["response"])
8585

86-
@pytest.mark.skip()
86+
@pytest.mark.skip(reason="Prism tests are disabled")
8787
@parametrize
8888
def test_raw_response_update(self, client: Agentex) -> None:
8989
response = client.messages.batch.with_raw_response.update(
@@ -101,7 +101,7 @@ def test_raw_response_update(self, client: Agentex) -> None:
101101
batch = response.parse()
102102
assert_matches_type(BatchUpdateResponse, batch, path=["response"])
103103

104-
@pytest.mark.skip()
104+
@pytest.mark.skip(reason="Prism tests are disabled")
105105
@parametrize
106106
def test_streaming_response_update(self, client: Agentex) -> None:
107107
with client.messages.batch.with_streaming_response.update(
@@ -127,7 +127,7 @@ class TestAsyncBatch:
127127
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
128128
)
129129

130-
@pytest.mark.skip()
130+
@pytest.mark.skip(reason="Prism tests are disabled")
131131
@parametrize
132132
async def test_method_create(self, async_client: AsyncAgentex) -> None:
133133
batch = await async_client.messages.batch.create(
@@ -141,7 +141,7 @@ async def test_method_create(self, async_client: AsyncAgentex) -> None:
141141
)
142142
assert_matches_type(BatchCreateResponse, batch, path=["response"])
143143

144-
@pytest.mark.skip()
144+
@pytest.mark.skip(reason="Prism tests are disabled")
145145
@parametrize
146146
async def test_raw_response_create(self, async_client: AsyncAgentex) -> None:
147147
response = await async_client.messages.batch.with_raw_response.create(
@@ -159,7 +159,7 @@ async def test_raw_response_create(self, async_client: AsyncAgentex) -> None:
159159
batch = await response.parse()
160160
assert_matches_type(BatchCreateResponse, batch, path=["response"])
161161

162-
@pytest.mark.skip()
162+
@pytest.mark.skip(reason="Prism tests are disabled")
163163
@parametrize
164164
async def test_streaming_response_create(self, async_client: AsyncAgentex) -> None:
165165
async with async_client.messages.batch.with_streaming_response.create(
@@ -179,7 +179,7 @@ async def test_streaming_response_create(self, async_client: AsyncAgentex) -> No
179179

180180
assert cast(Any, response.is_closed) is True
181181

182-
@pytest.mark.skip()
182+
@pytest.mark.skip(reason="Prism tests are disabled")
183183
@parametrize
184184
async def test_method_update(self, async_client: AsyncAgentex) -> None:
185185
batch = await async_client.messages.batch.update(
@@ -193,7 +193,7 @@ async def test_method_update(self, async_client: AsyncAgentex) -> None:
193193
)
194194
assert_matches_type(BatchUpdateResponse, batch, path=["response"])
195195

196-
@pytest.mark.skip()
196+
@pytest.mark.skip(reason="Prism tests are disabled")
197197
@parametrize
198198
async def test_raw_response_update(self, async_client: AsyncAgentex) -> None:
199199
response = await async_client.messages.batch.with_raw_response.update(
@@ -211,7 +211,7 @@ async def test_raw_response_update(self, async_client: AsyncAgentex) -> None:
211211
batch = await response.parse()
212212
assert_matches_type(BatchUpdateResponse, batch, path=["response"])
213213

214-
@pytest.mark.skip()
214+
@pytest.mark.skip(reason="Prism tests are disabled")
215215
@parametrize
216216
async def test_streaming_response_update(self, async_client: AsyncAgentex) -> None:
217217
async with async_client.messages.batch.with_streaming_response.update(

0 commit comments

Comments
 (0)