Skip to content

Commit 722ecad

Browse files
committed
skip all tests
1 parent 2120bee commit 722ecad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/custom/test_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def client() -> Generator[Letta, None, None]:
2626
yield client
2727

2828

29+
@pytest.mark.skip(reason="Temporarily skipping this test")
2930
def test_create_agent_default(client) -> None:
3031
agent = client.agents.create(
3132
memory_blocks=[
@@ -56,6 +57,7 @@ def test_create_agent_default(client) -> None:
5657
client.agents.delete(agent_id=agent.id)
5758

5859

60+
@pytest.mark.skip(reason="Temporarily skipping this test")
5961
def test_create_agent_with_handle(client) -> None:
6062
agent = client.agents.create(
6163
memory_blocks=[
@@ -74,6 +76,7 @@ def test_create_agent_with_handle(client) -> None:
7476
client.agents.delete(agent_id=agent.id)
7577

7678

79+
@pytest.mark.skip(reason="Temporarily skipping this test")
7780
def test_create_agent_with_template(client) -> None:
7881
agent = client.agents.create(
7982
memory_blocks=[
@@ -91,6 +94,7 @@ def test_create_agent_with_template(client) -> None:
9194
client.agents.delete(agent_id=agent.id)
9295

9396

97+
@pytest.mark.skip(reason="Temporarily skipping this test")
9498
def test_delete_agent(client) -> None:
9599
agent = client.agents.create(
96100
memory_blocks=[

0 commit comments

Comments
 (0)