Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove non-relevant tests #1004

Merged
merged 2 commits into from
Jan 2, 2025
Merged
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
29 changes: 0 additions & 29 deletions agents-api/tests/test_activities.py
Original file line number Diff line number Diff line change
@@ -1,41 +1,12 @@
# from agents_api.activities.embed_docs import embed_docs
# from agents_api.activities.types import EmbedDocsPayload
from agents_api.clients import temporal
from agents_api.env import temporal_task_queue
from agents_api.workflows.demo import DemoWorkflow
from agents_api.workflows.task_execution.helpers import DEFAULT_RETRY_POLICY
from uuid_extensions import uuid7
from ward import test

# from .fixtures import (
# cozo_client,
# test_developer_id,
# test_doc,
# )
from .utils import patch_testing_temporal

# @test("activity: call direct embed_docs")
# async def _(
# cozo_client=cozo_client,
# developer_id=test_developer_id,
# doc=test_doc,
# ):
# title = "title"
# content = ["content 1"]
# include_title = True

# await embed_docs(
# EmbedDocsPayload(
# developer_id=developer_id,
# doc_id=doc.id,
# title=title,
# content=content,
# include_title=include_title,
# embed_instruction=None,
# ),
# cozo_client,
# )


@test("activity: call demo workflow via temporal client")
async def _():
Expand Down
Loading