Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.8"
".": "0.2.9"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.9 (2025-08-12)

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

### Chores

* **internal:** update test skipping reason ([4affc92](https://github.com/scaleapi/agentex-python/commit/4affc925c69ed626d429732b470d4d1535b1be8d))

## 0.2.8 (2025-08-09)

Full Changelog: [v0.2.7...v0.2.8](https://github.com/scaleapi/agentex-python/compare/v0.2.7...v0.2.8)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agentex-sdk"
version = "0.2.8"
version = "0.2.9"
description = "The official Python library for the agentex API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/agentex/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "agentex"
__version__ = "0.2.8" # x-release-please-version
__version__ = "0.2.9" # x-release-please-version
24 changes: 12 additions & 12 deletions tests/api_resources/messages/test_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class TestBatch:
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])

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

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

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

assert cast(Any, response.is_closed) is True

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

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

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

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

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

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

assert cast(Any, response.is_closed) is True

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

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

@pytest.mark.skip()
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_streaming_response_update(self, async_client: AsyncAgentex) -> None:
async with async_client.messages.batch.with_streaming_response.update(
Expand Down
Loading
Loading