Skip to content
Open
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
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
- run: mkdir junit-xml
- run: poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml
- run: poe test -s --workflow-environment time-skipping --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--time-skipping.xml
- run: |
uv sync --group gevent
uv run gevent_async/test/run_combined.py

# This must remain the last step since it downgrades pydantic
- name: Uninstall pydantic
shell: bash
Expand All @@ -56,13 +60,6 @@ jobs:
uv run pip install pydantic==1.10
poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--pydantic-v1.xml tests/pydantic_converter_v1/workflow_test.py

# On latest, run gevent test
- name: Gevent test
if: ${{ matrix.python == '3.12' }}
run: |
uv sync --group gevent
uv run gevent_async/test/run_combined.py

- name: Upload junit-xml artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
if: always()
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ external-storage = [
]
external-storage-redis = ["redis>=5.0.0,<8"]
gevent = ["gevent>=25.4.2 ; python_version >= '3.8'"]
google-adk = ["temporalio[google-adk] >= 1.31.0", "google-adk>=2.2.0,<3"]
google-adk = [
"temporalio[google-adk] >= 1.31.0",
"google-adk>=2.2.0,<3",
"mcp>=1.27.1,<2",
]
google-genai = [
"mcp>=1.0.0",
"mcp>=1.27.1,<2",
"temporalio[google-genai,pydantic]>=1.31.0",
]
langfuse-tracing = [
Expand All @@ -70,6 +74,7 @@ langgraph = [
"temporalio[langgraph,langsmith]>=1.31.0",
]
litellm = ["litellm>=1.85.0,<2"]
llm-stream = ["openai>=1.4.0"]
nexus = ["nexus-rpc>=1.1.0,<2"]
open-telemetry = [
"temporalio[opentelemetry]",
Expand Down
5 changes: 2 additions & 3 deletions tests/google_genai/mcp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
)
from temporalio.worker import Worker

import google_genai.mcp as google_genai_mcp
from google_genai.mcp.workflow import McpWorkflow

ECHO_SERVER = str(
Path(__file__).parents[2] / "google_genai" / "mcp" / "echo_mcp_server.py"
)
ECHO_SERVER = str(Path(google_genai_mcp.__file__).parent / "echo_mcp_server.py")


@asynccontextmanager
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file added tests/polling/__init__.py
Empty file.
Empty file added tests/sentry/__init__.py
Empty file.
Empty file.
22 changes: 14 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading