chore(deps): bump actions/checkout from 4 to 6 #28
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
| # Workflow that runs python tests | |
| name: Run Python Tests | |
| # The jobs in this workflow are required, so they must run at all times | |
| # * Always run on "main" | |
| # * Always run on PRs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # If triggered by a PR, it will be in the same group. However, each commit on main will be in its own unique group | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ (github.head_ref && github.ref) || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Run python tests on Linux | |
| test-on-linux: | |
| name: Python Tests on Linux | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| env: | |
| INSTALL_DOCKER: "0" # Set to '0' to skip Docker installation | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| permissions: | |
| # For coverage comment and python-coverage-comment-action branch | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Install tmux | |
| run: sudo apt-get update && sudo apt-get install -y tmux | |
| - name: Setup Node.js | |
| uses: useblacksmith/setup-node@v5 | |
| with: | |
| node-version: "22.x" | |
| - name: Install poetry via pipx | |
| run: pipx install poetry | |
| - name: Set up Python | |
| uses: useblacksmith/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "poetry" | |
| - name: Install Python dependencies using Poetry | |
| run: poetry install --with dev,test,runtime | |
| - name: Build Environment | |
| run: make build | |
| - name: Run Unit Tests | |
| run: PYTHONPATH=".:$PYTHONPATH" poetry run pytest --forked -n auto -s ./tests/unit --cov=openhands --cov-branch | |
| env: | |
| COVERAGE_FILE: ".coverage.${{ matrix.python_version }}" | |
| - name: Run Runtime Tests with CLIRuntime | |
| run: PYTHONPATH=".:$PYTHONPATH" TEST_RUNTIME=cli poetry run pytest -s tests/runtime/test_bash.py --cov=openhands --cov-branch | |
| env: | |
| COVERAGE_FILE: ".coverage.runtime.${{ matrix.python_version }}" | |
| - name: Store coverage file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-openhands | |
| path: | | |
| .coverage.${{ matrix.python_version }} | |
| .coverage.runtime.${{ matrix.python_version }} | |
| include-hidden-files: true | |
| # Run specific Windows python tests | |
| test-on-windows: | |
| name: Python Tests on Windows | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install pipx | |
| run: pip install pipx | |
| - name: Install poetry via pipx | |
| run: pipx install poetry | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "poetry" | |
| - name: Install Python dependencies using Poetry | |
| run: poetry install --with dev,test,runtime | |
| - name: Run Windows unit tests | |
| run: poetry run pytest -svv tests/unit/runtime/utils/test_windows_bash.py | |
| env: | |
| PYTHONPATH: ".;$env:PYTHONPATH" | |
| DEBUG: "1" | |
| - name: Run Windows runtime tests with LocalRuntime | |
| run: $env:TEST_RUNTIME="local"; poetry run pytest -svv tests/runtime/test_bash.py | |
| env: | |
| PYTHONPATH: ".;$env:PYTHONPATH" | |
| TEST_RUNTIME: local | |
| DEBUG: "1" | |
| test-enterprise: | |
| name: Enterprise Python Unit Tests | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install poetry via pipx | |
| run: pipx install poetry | |
| - name: Set up Python | |
| uses: useblacksmith/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "poetry" | |
| - name: Install Python dependencies using Poetry | |
| working-directory: ./enterprise | |
| run: poetry install --with dev,test | |
| - name: Run Unit Tests | |
| # Use base working directory for coverage paths to line up. | |
| run: PYTHONPATH=".:$PYTHONPATH" poetry run --project=enterprise pytest --forked -n auto -s -p no:ddtrace -p no:ddtrace.pytest_bdd -p no:ddtrace.pytest_benchmark ./enterprise/tests/unit --cov=enterprise --cov-branch | |
| env: | |
| COVERAGE_FILE: ".coverage.enterprise.${{ matrix.python_version }}" | |
| - name: Store coverage file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-enterprise | |
| path: ".coverage.enterprise.${{ matrix.python_version }}" | |
| include-hidden-files: true | |
| # Run CLI unit tests | |
| test-cli-python: | |
| name: CLI Unit Tests | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: useblacksmith/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| version: "latest" | |
| - name: Install dependencies | |
| working-directory: ./openhands-cli | |
| run: | | |
| uv sync --group dev | |
| - name: Run CLI unit tests | |
| working-directory: ./openhands-cli | |
| env: | |
| # write coverage to repo root so the merge step finds it | |
| COVERAGE_FILE: "${{ github.workspace }}/.coverage.openhands-cli.${{ matrix.python-version }}" | |
| run: | | |
| uv run pytest --forked -n auto -s \ | |
| -p no:ddtrace -p no:ddtrace.pytest_bdd -p no:ddtrace.pytest_benchmark \ | |
| tests --cov=openhands_cli --cov-branch | |
| - name: Store coverage file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-openhands-cli | |
| path: ".coverage.openhands-cli.${{ matrix.python-version }}" | |
| include-hidden-files: true | |
| coverage-comment: | |
| name: Coverage Comment | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| needs: [test-on-linux, test-enterprise, test-cli-python] | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/download-artifact@v5 | |
| id: download | |
| with: | |
| pattern: coverage-* | |
| merge-multiple: true | |
| - name: Create symlink for CLI source files | |
| run: ln -sf openhands-cli/openhands_cli openhands_cli | |
| - name: Coverage comment | |
| id: coverage_comment | |
| uses: py-cov-action/python-coverage-comment-action@v3 | |
| with: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| MERGE_COVERAGE_FILES: true |