Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ COPY 10_async/00_base/090_multi_agent_non_temporal/tests /app/090_multi_agent_no
COPY test_utils /app/test_utils

# Install the required Python packages with dev dependencies
RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

# Set environment variables
ENV PYTHONPATH=/app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY 10_async/00_base/130_claude_code/project /app/130_claude_code/project
COPY 10_async/00_base/130_claude_code/tests /app/130_claude_code/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app

Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/10_async/00_base/140_codex/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY 10_async/00_base/140_codex/project /app/140_codex/project
COPY 10_async/00_base/140_codex/tests /app/140_codex/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app
ENV AGENT_NAME=ab140-codex
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY 10_async/10_temporal/060_open_ai_agents_sdk_hello_world/tests /app/060_open
COPY test_utils /app/test_utils

# Install the required Python packages with dev dependencies
RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

WORKDIR /app/060_open_ai_agents_sdk_hello_world

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY 10_async/10_temporal/070_open_ai_agents_sdk_tools/tests /app/070_open_ai_ag
COPY test_utils /app/test_utils

# Install the required Python packages with dev dependencies
RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

WORKDIR /app/070_open_ai_agents_sdk_tools

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY 10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/tests /app/08
COPY test_utils /app/test_utils

# Install the required Python packages with dev dependencies
RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

WORKDIR /app/080_open_ai_agents_sdk_human_in_the_loop

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY 10_async/10_temporal/090_claude_agents_sdk_mvp/tests /app/090_claude_agents
COPY test_utils /app/test_utils

# Install the required Python packages with dev dependencies
RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

WORKDIR /app/090_claude_agents_sdk_mvp

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ WORKDIR /app/100_gemini_litellm
COPY 10_async/10_temporal/100_gemini_litellm/project /app/100_gemini_litellm/project

# Install the required Python packages
RUN uv pip install --system .
RUN uv pip install --system .[dev] pytest-asyncio httpx

WORKDIR /app/100_gemini_litellm

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY 10_async/10_temporal/110_pydantic_ai/project /app/110_pydantic_ai/project
COPY 10_async/10_temporal/110_pydantic_ai/tests /app/110_pydantic_ai/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY 10_async/10_temporal/120_openai_agents/project /app/120_openai_agents/proje
COPY 10_async/10_temporal/120_openai_agents/tests /app/120_openai_agents/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY 10_async/10_temporal/130_langgraph/project /app/130_langgraph/project
COPY 10_async/10_temporal/130_langgraph/tests /app/130_langgraph/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY 10_async/10_temporal/140_claude_code/project /app/140_claude_code/project
COPY 10_async/10_temporal/140_claude_code/tests /app/140_claude_code/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY 10_async/10_temporal/150_codex/project /app/150_codex/project
COPY 10_async/10_temporal/150_codex/tests /app/150_codex/tests
COPY test_utils /app/test_utils

RUN uv pip install --system .[dev]
RUN uv pip install --system .[dev] pytest-asyncio httpx

ENV PYTHONPATH=/app
ENV AGENT_NAME=at150-codex
Expand Down
Loading