fix: Improve Ctrl+C interruption of MCP tool calls #881
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ubuntu Python Tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'cecli/website/**' | |
| - 'README.md' | |
| - 'HISTORY.md' | |
| - '.github/workflows/*' | |
| - '!.github/workflows/ubuntu-tests.yml' | |
| branches: | |
| - main | |
| pull_request: | |
| paths-ignore: | |
| - 'cecli/website/**' | |
| - 'README.md' | |
| - 'HISTORY.md' | |
| - '.github/workflows/*' | |
| - '!.github/workflows/ubuntu-tests.yml' | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libportaudio2 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install uv | |
| uv pip install --system \ | |
| pytest \ | |
| pytest-asyncio \ | |
| pytest-mock \ | |
| -r requirements/requirements.in \ | |
| -r requirements/requirements-help.in \ | |
| -r requirements/requirements-playwright.in \ | |
| ".[help,playwright]" | |
| - name: Configure Git for tests | |
| run: | | |
| git config --global user.name "Test User" | |
| git config --global user.email "test@example.com" | |
| git config --global init.defaultBranch main | |
| - name: Run tests | |
| run: | | |
| pytest | |
| env: | |
| CECLI_TUI: "false" |