TST: add use_arrow to geopandas tests with sql statement #1397
Workflow file for this run
This file contains 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: Docker GDAL Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
# cancel running jobs on new commit to PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
TestLinux: | |
name: GDAL ${{ matrix.container }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- "ghcr.io/osgeo/gdal:ubuntu-small-latest" # >= python 3.10.6 | |
- "ghcr.io/osgeo/gdal:ubuntu-small-3.8.3" # python 3.10.12 | |
- "ghcr.io/osgeo/gdal:ubuntu-small-3.7.3" # python 3.10.12 | |
- "ghcr.io/osgeo/gdal:ubuntu-small-3.6.4" # python 3.10.6 | |
- "osgeo/gdal:ubuntu-small-3.5.3" # python 3.8.10 | |
- "osgeo/gdal:ubuntu-small-3.4.3" # python 3.8.10 | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- name: Install packages | |
run: | | |
apt-get update && apt-get install -y git python3-pip | |
- uses: actions/checkout@v4 | |
- name: Install Python Dependencies | |
run: | | |
python3 -m pip install --no-cache-dir -U pip wheel | |
python3 -m pip install --no-cache-dir -e .[dev,test,geopandas] | |
- name: Install pyarrow | |
# GDAL>=3.6 required to use Arrow API | |
if: matrix.container != 'osgeo/gdal:ubuntu-small-3.5.3' && matrix.container != 'osgeo/gdal:ubuntu-small-3.4.3' | |
run: | | |
python3 -m pip install pyarrow | |
- name: Test with pytest | |
run: | | |
pytest --cov=pyogrio --cov-report term-missing pyogrio/tests |