Test benchmarking #36
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: CI | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| UV_FROZEN: true | |
| COVERAGE_PYTHON: "3.12" | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "true" | |
| - uses: astral-sh/setup-uv@v8.1.0 | |
| - run: uv sync --all-extras | |
| - name: Check quality | |
| run: | | |
| uv run ruff check bids2table tests | |
| uv run ruff format --check bids2table tests | |
| tests: | |
| runs-on: ubuntu-latest | |
| needs: format | |
| strategy: | |
| matrix: | |
| python-version: [ "3.11", "3.12", "3.13", "3.14" ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "true" | |
| - uses: astral-sh/setup-uv@v8.1.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run non-cloud tests | |
| run: | | |
| uv run pytest \ | |
| -m "not cloud and not benchmark" \ | |
| --junitxml=pytest-cloudless.xml \ | |
| --cov-report=xml:coverage.xml \ | |
| --cov=bids2table \ | |
| tests | |
| - name: Run cloud tests | |
| run: | | |
| uv run --extra cloud pytest \ | |
| -m "cloud and not benchmark" \ | |
| --junitxml=pytest-cloud.xml \ | |
| --cov-report=xml:coverage.xml \ | |
| --cov=bids2table \ | |
| --cov-append \ | |
| tests | |
| - name: Merge JUnit XML reports | |
| run: | | |
| uvx junitparser merge \ | |
| pytest-cloudless.xml \ | |
| pytest-cloud.xml \ | |
| pytest.xml | |
| - name: Pytest coverage comment | |
| if: github.event_name == 'pull_request' && matrix.python-version == | |
| env.COVERAGE_PYTHON | |
| uses: MishaKav/pytest-coverage-comment@v1 | |
| with: | |
| pytest-xml-coverage-path: ./coverage.xml | |
| junitxml-path: ./pytest.xml |