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
13 changes: 12 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ jobs:

tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
# TODO: enable this https://github.com/openai/openai-agents-python/pull/1961/
# - "3.14"
env:
OPENAI_API_KEY: fake-for-tests
steps:
Expand All @@ -50,6 +60,7 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make sync
- name: Run tests with coverage
Expand All @@ -71,7 +82,7 @@ jobs:
- name: Build docs
run: make build-docs

old_versions:
old_version_tests:
runs-on: ubuntu-latest
env:
OPENAI_API_KEY: fake-for-tests
Expand Down
268 changes: 0 additions & 268 deletions examples/realtime/cli/ui.py

This file was deleted.

Loading