Materialize diff table for all-mode comparisons (#12) #91
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: python-tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| tests: | |
| name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-22.04 | |
| python-version: "3.7" | |
| pyarrow-constraint: "<10" | |
| duckdb-version: "duckdb==1.1.3" | |
| - os: ubuntu-latest | |
| python-version: "3.11" | |
| pyarrow-constraint: "" | |
| duckdb-version: "" | |
| - os: windows-latest | |
| python-version: "3.7" | |
| pyarrow-constraint: "<10" | |
| duckdb-version: "duckdb==1.1.3" | |
| - os: windows-latest | |
| python-version: "3.11" | |
| pyarrow-constraint: "" | |
| duckdb-version: "" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [ -n "${DUCKDB_PIN}" ]; then | |
| python -m pip install "${DUCKDB_PIN}" | |
| fi | |
| python -m pip install -e . | |
| python -m pip install pytest | |
| env: | |
| DUCKDB_PIN: ${{ matrix.duckdb-version }} | |
| - name: Install pandas/polars | |
| if: matrix.python-version != '3.7' | |
| run: python -m pip install pandas polars | |
| - name: Install ty | |
| if: matrix.python-version != '3.7' | |
| run: python -m pip install ty | |
| - name: Type check | |
| if: matrix.python-version != '3.7' | |
| run: ty check --python "$(python -c 'import sys; print(sys.executable)')" | |
| - name: Install PyArrow (pinned) | |
| if: matrix.pyarrow-constraint != '' | |
| run: python -m pip install "pyarrow${{ matrix.pyarrow-constraint }}" | |
| - name: Install PyArrow (latest) | |
| if: matrix.pyarrow-constraint == '' | |
| run: python -m pip install pyarrow | |
| - name: Run tests | |
| run: pytest |